db2 常用命令

2021-06-02 13:36:58 字數 906 閱讀 7247

db2 backup db cydb to d:\電子檔案備份

db2stop force

db2start

還原:db2 restore database cydb from c:\ taken at 20111107132725

into  cysdb

匯入匯出表資料前必須先連線相應的資料庫

匯出表資料db2export to c:\aaa.del of del select * from tablename

匯入表資料:db2import from filename.del of del insert into tablename

如果需要匯入表中存在自增列按如下方法匯入:

import from /data/test.del of del modified by identityignore  insert into "db2inst1"."testdb";

可以忽略自增字段的,加入modified by identityignore 修飾符

1、db2 connect to 《資料庫名》    --連線到本地資料庫名

db2 connect to 《資料庫名》 user 《使用者名稱》 using 《密碼》 --連線到遠端資料庫

--強迫所有應用斷開資料庫連線

-----修改埠

獲取資料庫配置:db2 get dbm cfg

db2 update dbm cfg using svcename 60000

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 將資...