1. 啟動實例(db2inst1):db2start
2. 停止實例(db2inst1):db2stop
3. 列出所有實例(db2inst1):db2ilist
4. 列出當前實例:db2 get instance?
5. 更新數據庫管理器參數信息:db2 update dbm cfg using para_name para_value
6. 創建數據庫:db2 create db test
7. 察看數據庫配置參數信息db2 get db cfg for test|more
8. 更新數據庫參數配置信息db2 update db cfg for test using para_name para_value
9. 察看示例配置文件:db2 get dbm cfg|more
10.刪除數據庫:db2 drop db test
11.連接數據庫db2 connect to test
12.列出所有表空間的詳細信息。db2 list tablespaces show detail
13.查詢數據:db2 select * from tb1
14.數據:db2 delete from tb1 where id=1
15.創建索引:db2 create index idx1 on tb1(id);
16.創建視圖:db2 create view view1 as select id from tb1
17.查詢視圖:db2 select * from view1
18.節點編目db2 catalog tcpip node node_name remote server_ip server server_port
19.察看端口號db2 get dbm cfg|grep SVCENAME
20.測試節點的附接db2 attach to node_name
21.察看本地節點db2 list node directory
22.節點反編目db2 uncatalog node node_name
23.數據庫編目db2 catalog db db_name as db_alias at node node_name
24.察看數據庫的編目db2 list db directory
25.連接數據庫db2 connect to db_alias user user_name using user_password
26.數據庫反編目db2 uncatalog db db_alias
27.導出數據db2 export to myfile of ixf messages msg select * from tb1
28.導入數據(ixf)??import from myfile of ixf messages msg replace into tb1
28.導入數據(del) import from myfile?of del insert into tb1
29.導出數據庫的所有表數據db2move test export
30.生成數據庫的定義db2look -d db_alias -a -e -m -l -x -f -o db2look.sql
31.創建數據庫db2 create db test1
32.生成定義db2 -tvf db2look.sql
33.導入數據庫所有的數據db2move db_alias import
34.重組檢查db2 reorgchk
35.重組表tb1db2 reorg table tb1
36.更新統計信息db2 runstats on table tb1
37.備份數據庫testdb2 backup db test
38.恢復數據庫testdb2 restore db test
39.列出容器的信息db2 list tablespace containers for tbs_id show detail
40.創建表:db2 ceate table tb1(id integer not null,name char(10))
41.列出所有表db2 list tables
42.插入數據:db2 insert into tb1 values(1,’sam’);db2 insert into tb2 values(2,’smitty’);