1. 如何快速清除乙個大表
alter table table_name active not logged initally with empty table
2. 如何檢視儲存過程
select * from syscat.procedures
3. 匯出資料
export to c:\user.ixf of ixf select * from user
4. 緩衝區關聯
create bufferpool size [pagesize 4096]
alter bufferpool size
drop bufferpool
如果緩衝區大小設定為-1 表示緩衝池的頁面數目由資料庫配置引數buffpage 決定
注意:資料庫配置引數buffpage僅對緩衝區大小設定為 -1 的緩衝池起作用。
5. 如何快速清除乙個大表
alter table table_name active not logged initally with empty table
6. terminate 退出db2 consol。
7. 檢視表結構:
describe select * from student
8. 檢視外來鍵
select * from syscat.references ;
9. 刪除外來鍵
alter table student
drop constraint sql090115130135660
10.檢視表結構
describe select * from test
11. 檢視索引
describe indexes for table test
12. 所有的表
select * from syscat.tables
13.模式下所有的表
list tables for schema xx;
16.顯示當前活動資料庫
list active databases
DB2常用命令
常用操作 db2 list db directory db2 connect to user using db2ilist 顯示當前例項名 db2 list tables 顯示當前例項下的所有表 db2 list tablespaces 顯示表空間 db2pd db tablespaces 檢視表空...
DB2常用命令
1 db2 list node directory 2 db2 list node directory show detail 3 db2 catalog tcpip node wsii remote 9.181.139.155 server 50000 4 db2 catalog database...
DB2常用命令
例項 clp 命令描述 db2start 啟動資料庫管理器例項。db2stop 停止資料庫管理器例項。get dbm cfg 返回資料庫管理器配置設定。get dbm cfg show detail 顯示資料庫管理器引數的當前值和延遲值 從 v8 起 1update dbm cfg using 將資...