韌館-LearnHouse

DB2資料庫常用指令大全

網路轉載

*命令列窗口*

#打開命令列視窗
db2cmd
#打開控制中心
db2cmd db2cc
#打開命令編輯器
db2cmd db2ce
*操作資料庫命令*

#啟動資料庫實例
db2start
#停止資料庫實例
db2stop
如果你不能停止資料庫由於啟動的連接,在運行db2stop前執行db2 force
application all就可以了
#創建資料庫
db2 create db [dbname]
#連接到資料庫
db2 connect to [dbname]  user [username] using [password]
#斷開資料庫連接
db2 connect reset
#列出所有資料庫
db2 list db directory
#列出所有啟動的資料庫
db2 list active databases
#列出所有資料庫配置
db2 get db cfg
#刪除資料庫
db2 drop database [dbname]

*操作資料表命令*

#列出所有用戶表
db2 list tables
#列出所有系統表
db2 list tables for system
#列出所有表
db2 list tables for all
#列出系統表
db2 list tables for system
#列出用戶表
db2 list tables for user
#列出特定用戶表
db2 list tables for schema [user]

#創建一個與資料庫中某個表(t2)結構相同的新表(t1)
db2 create table t1 like t2

#將一個表t1的資料導入到另一個表t2

db2 “insert into t1 select * from t2″

#查詢表
db2 “select * from table name where …”
#顯示表結構
db2 describe table tablename
#修改列
db2 alter table [tablename] alter column [columname] set data type
varchar(24)

*指令檔操作命令*

#執行指令檔
db2 -tvf scripts.sql

*幫助命令*

#查看命令幫助
db2 ? db2start
#查看錯誤碼資訊
db2 ? 22001

******************************************************************************

啟動DB2服務:db2start
關閉DB2服務: db2stop

一、載入數據:
1、 以默認分隔符號載入,默認為“,”號
db2 “import from btpoper.ixf of ixf insert into btpoper”
2、 以指定分隔符號“|”載入
db2 “import from btpoper.ixf of ixf modified by coldel| insert into btpoper”
二、卸載數據:
1、 卸載一個表中全部資料
db2 “export to btpoper.ixf of ixf select * from btpoper”
db2 “export to btpoper.ixf of ixf modified by coldel| select * from btpoper”
2、 帶條件卸載一個表中資料
db2 “export to btpoper.txt of del select * from btpoper where
brhid=’907020000′”
db2 “export to cmmcode.ixf of ixf select * from cmmcode where codtp=’01′”
db2 “export to cmmcode.ixf of ixf modified by coldel| select * from
cmmcode where codtp=’01′”
三、查詢資料結構及資料:
db2 “select * from btpoper”
db2 “select * from btpoper where brhid=’907020000′ and oprid=’0001′”
db2 “select oprid,oprnm,brhid,passwd from btpoper”
四、刪除表中資料:
db2 “delete from btpoper”
db2 “delete from btpoper where brhid=’907020000′ or brhid=’907010000′”
五、修改表中資料:
db2 “update svmmst set prtlines=0 where brhid=’907010000′ and jobtp=’02′”
db2 “update svmmst set prtlines=0 where jobtp=’02′ or jobtp=’03′”
六、聯接資料庫
db2 connect to btpdbs
七、清除資料庫聯接
db2 connect reset    斷開資料庫連接
db2 terminate        斷開資料庫連接
db2 force applications all    斷開所有資料庫連接
八、備份資料庫
1、 db2 backup db btpdbs
2、 db2move btpdbs export
db2look -d btpdbs -e -x [-a] -o crttbl.sql
九、恢復資料庫
1、 db2 restore db btpdbs without rolling forward
2、 db2 -tvf crtdb.sql
crtdb.sql檔內容:create db btpdbs on /db2catalog
db2 -stvf crttbl.sql
db2move btpdbs import
十、DB2幫助命令:
db2 ?
db2 ? restroe
db2 ? sqlcode (例:db2 ? sql0803) 注:code必須為4位數,不夠4位,前面補0

十一、bind命令:將應用程式與資料庫作一捆綁,每次恢復資料庫後,建議都要做
一次bind
(1) db2 bind br8200.bnd
(2) /btp/bin/bndall /btp/bnd
/btp/bin/bndall /btp/tran/bnd
十二、查看資料庫參數:
db2 get dbm cfg
db2 get db cfg for btpdbs
十三、修改資料庫參數:
db2 update db cfg for btpdbs using LOGBUFSZ 20
db2 update db cfg for btpdbs using LOGFILSIZ 5120
改完後,應執行以下命令使其生效:
db2 stop
db2 start

補充:
db2 set schema btp    修改當前模式為”btp”
db2 list tablespaces show detail     查看當前資料庫表空間分配狀況
db2 list tablespace containers for 2  show detail 查看tablespace id=2使
用容器所在目錄
db2 list application 列出目前連結到資料庫的所有應用程式
db2 list db directory               列出所有資料庫
db2 list active databases           列出所有活動的資料庫
db2 list tables for all             列出當前資料庫下所有的表
db2 list tables for schema btp      列出當前資料庫中schema為btp的表
db2 list tablespaces show detail    顯示資料庫空間使用情況
db2 list packages for all

db2 get authorizations 用來獲取當前用戶的許可權

db2 “import from tab76.ixf of ixf commitcount 5000 insert into achact”
db2 “create table achact_t like achact”

db2 “rename table achact_t to achact”

db2 “insert into achact_t select * from achact where txndt>=(select
lstpgdt from
acmact where actno=achact.actno)”

db2 get snapshot for dynaimic sql on jining
刪除一個實例:
# cd /usr/lpp/db2_07_01/instance
# ./db2idrop InstName
列出所有DB2實例:
# cd /usr/lpp/db2_07_01/bin
# ./db2ilist
為資料庫建立編目
$ db2 catalog db btpdbs on /db2catalog
取消已編目的資料庫btpdbs
$ db2 uncatalog db btpdbs

查看版本
# db2level
顯示當前資料庫管理實例
$ db2 get instance
設置實例系統啟動時是否自動啟動。
$ db2iauto -on     自動啟動
$ db2iauto -off    不自動啟動
資料庫優化命令:
reorg、runstats
當資料庫經過一段時間使用,資料空間會變得越來越龐大。一些delete掉
的資料仍存放在資料庫中,佔用資料空間,影響系統性能。因此需要定期
運行reorg、runstats命令,清除已delete的資料,優化資料結構。
db2 reorg table 表名
db2 runstats on table 表名 with distribution and indexes all
因為要優化的表比較多,所以在/btp/bin目錄下提供了一個sh程式runsall,
可在當天業務結束後,運行runsall,對資料庫進行優化

*************************************************************************

list node directory;

list db directory;

catalog tcpip node dbxx remote serverA server 3800;
catalog database dbxx at node dbxx;

***********************************************************

Backup Command:

db2 BACKUP DATABASE dbxxx TO /dev/null WITHOUT PROMPTING;

************************************************************

常用SQL語法

INSERT INTO table (store_name, Sales, Date) VALUES ('Los Angeles', 900, 'Jan-10-1999')

UPDATE table SET Sales = 500 WHERE Number = 6000 AND Date = "Jan-08-1999"

Export SQL Schema(匯出db2 資料表結構)

db2look  -d dbname -a -e -x -c -o  filename.sql

Import SQL Schema(匯入db2資料表結構)

db2 -tvf filename.sql

當drop database dbName出現SQL1035N The database is currently in use. SQLSTATE=57019
可嘗試用db2 connect reset或deactivate database dbName

2012年3 月 posted by admin in Linux and have No Comments

Place your comment

Please fill your data and comment below.
名稱:
信箱:
網站:
您的評論: