以下的文章主要向大家講述的是DB2數據庫部分日常實用操作,前幾天無意間在一網站找到一個關於DB2數據庫部分日常實用操作,所以今天拿出來以供大家分享,以下就是具體方案的描述,希望在你今後的學習中會有所幫助。
1、Load 方法裝入數據:
export to tempfile of del select * from TABLENAME where not 清理條件;
- load from tempfile of del modifIEd by delprioritychar replace into TABLENAME nonrecoverable;
說明:
在不相關的數據表export數據時,可以采取並發的形式,以提高效率;
TABLENAME指待清理table的名稱;
modifIEd by delprioritychar防止數據庫記錄中存在換行符,導致數據無法裝入的情況;
replace into對現DB2數據庫中的內容進行替換,即將現行的數據記錄清理,替換為數據文件內容;
nonrecoverable無日志方式裝入;
2、查找當前的應用:
- db2 list application |grep BTPDBS;
3、刪除當前正在使用的application:
- db2 "force application (Id1,Id2,Id3)"
Id1,Id2,Id3 是List顯示的應用號;
4、查看當前應用號的執行狀態:
- db2 get snapshot for application agentid 299 |grep Row
5、查看數據庫參數:
db2 get db cfg for //當前DB2數據庫可以省略
6、修改數據庫的Log數據:
db2 update db cfg using <參數名> <參數值>