21.察看本地節點
db2 list node direcotry
22.節點反編目
db2 uncatalog node node_name
www.2cto.com
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.生成數據庫的定義
www.2cto.com
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
39.列出容器的信息
db2 list tablespace containers for tbs_id show detail
www.2cto.com
40.創建表:
db2 ceate table tb1(id integer not null,name char(10))
create table tb1 like tb2
in 表空間
partitioning key(kpi_id) using hashing;
查看快照
select * from tb1 with ur;
作者 manULinux