1. 啟動執行個體(db2inst1):
db2start
2. 停止執行個體(db2inst1):
db2stop
3. 列出所有執行個體(db2inst1)
db2ilist
5.列出當前執行個體:
db2 get instance
4. 察看樣本設定檔:
db2 get dbm cfg|more
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
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 tcp 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 direcotry
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.匯入資料
db2 import from myfile of ixf messages msg replace 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.重組表tb1
db2 reorg table tb1
36.更新統計資料
db2 runstats on table tb1
37.備份資料庫test
db2 backup db test
38.恢複資料庫test
db2 restore db test
399\.列出容器的資訊
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’);
(