學(xué)習(xí)啦 > 學(xué)習(xí)電腦 > 操作系統(tǒng) > Linux教程 > linux關(guān)閉db2數(shù)據(jù)庫命令

linux關(guān)閉db2數(shù)據(jù)庫命令

時(shí)間: 佳洲1085 分享

linux關(guān)閉db2數(shù)據(jù)庫命令

  DB2數(shù)據(jù)庫在linux操作系統(tǒng)下可以通過相關(guān)命令啟動(dòng)關(guān)閉,下面由學(xué)習(xí)啦小編為大家整理了linux關(guān)閉db2數(shù)據(jù)庫的相關(guān)命令,希望對(duì)大家有所幫助。

  linux關(guān)閉db2數(shù)據(jù)庫命令

  1.停止數(shù)據(jù)庫

  DB2stop

  linux下關(guān)于DB2數(shù)據(jù)庫的其他命令

  2.啟動(dòng)數(shù)據(jù)庫

  DB2start

  3.連接數(shù)據(jù)庫

  DB2 connect to o_yd user DB2 using pwd

  4.讀數(shù)據(jù)庫管理程序配置

  DB2 get dbm cfg

  5.寫數(shù)據(jù)庫管理程序配置

  DB2 update dbm cfg using 參數(shù)名 參數(shù)值

  6.讀數(shù)據(jù)庫的配置

  DB2 connect to o_yd user DB2 using pwd

  DB2 get db cfg for o_yd

  7.寫數(shù)據(jù)庫的配置

  DB2 connect to o_yd user DB2 using pwd

  DB2 update db cfg for o_yd using 參數(shù)名 參數(shù)值

  8.關(guān)閉所有應(yīng)用連接

  DB2 force application all

  DB2 force application ID1,ID2,,,Idn MODE ASYNC

  (DB2 list application for db o_yd show detail)

  9.備份數(shù)據(jù)庫

  DB2 force application all

  DB2 backup db o_yd to d:

  (DB2 initialize tape on \.tape0)

  (DB2 rewind tape on \.tape0)

  DB2 backup db o_yd to \.tape0

  10.恢復(fù)數(shù)據(jù)庫

  DB2 restore db o_yd from d: to d:

  DB2 restore db o_yd from \.tape0 to d:

  DB2數(shù)據(jù)庫在linux相關(guān)指令之11.綁定存儲(chǔ)過程

  DB2 connect to o_yd user DB2 using pwd

  DB2 bind c:dfplus.bnd

  拷貝存儲(chǔ)過程到服務(wù)器上的C:sqllibfunction目錄中

  12.整理表

  DB2 connect to o_yd user DB2 using pwd

  DB2 reorg table ydd

  DB2 runstats on table ydd with distribution and indexes all

  13.導(dǎo)出表數(shù)據(jù)

  DB2 export to c:dftz.txt of del select * from dftz

  DB2 export to c:dftz.ixf of ixf select * from dftz

  14.導(dǎo)入表數(shù)據(jù)

  import from c:123.txt of del insert into ylbx.czyxx

  DB2 import to c:dftz.txt of del commitcount 5000 messages c:dftz.msg insert into dftz

  DB2 import to c:dftz.ixf of ixf commitcount 5000 messages c:dftz.msg insert into dftz

  DB2 import to c:dftz.ixf of ixf commitcount 5000 insert into dftz

  DB2 import to c:dftz.ixf of ixf commitcount 5000 insert_update into dftz

  DB2 import to c:dftz.ixf of ixf commitcount 5000 replace into dftz

  DB2 import to c:dftz.ixf of ixf commitcount 5000 create into dftz (僅IXF)

  DB2 import to c:dftz.ixf of ixf commitcount 5000 replace_create into dftz (僅IXF)

  15.執(zhí)行一個(gè)批處理文件

  DB2 -tf 批處理文件名

  (文件中每一條命令用 ;結(jié)束)

  16.自動(dòng)生成批處理文件

  建文本文件:temp.sql

  select 'runstats on table DB2.' || tabname || '

  with distribution and detailed indexes all;'

  from syscat.tables where tabschema='DB2' and type='T';

  DB2 -tf temp.sql>runstats.sql

  17.自動(dòng)生成建表(視圖)語句

  在服務(wù)器上:C:sqllibmisc目錄中

  DB2 connect to o_yd user DB2 using pwd

  DB2look -d o_yd -u DB2 -e -p -c c:o_yd.txt

  18.其他命令

  grant dbadm on database to user bb

  19select * from czyxx fetch first 1 rows only

  20DB2look -d ylbx -u DB2admin -w -asd -a -e -o a.txt

  21. 顯示當(dāng)前用戶所有表

  list tables

  22.列出所有的系統(tǒng)表

  list tables for system

  23.查看表結(jié)構(gòu)

  DB2 describe select * from user.tables

3596983