初始化環境
0.啟動 db2start
1.cmd 環境下輸入 db2cmd 新開啟db2 操作視窗
2.連線資料庫 db2 connect to db_name
3.在本地主機備份語句 db2 backup database db_name to d:
備份成功得到備份映像的時間戳
4.在該環境下建立資料庫 db2 create database db_name
db2 create database pb_db using codeset gbk territory zh_cn pagesize 8192 ---建庫;
db2 connect to pb_db ---連線;
db2 create bufferpool testpool size 2000 pagesize 32k --臨時表空間緩衝池;
db2 create temporary tablespace temp(tablespace_name) pagesize 32k managed by database using (file '資料庫所在路徑\檔案所在路徑.file' 5000) extentsize 80 bufferpool testpool --臨時表空間;
------檢視資料庫的表空間
db2 list tablespaces show detail
命令成功完成
5. 連線資料庫
db2 connect to db_name
6. db2 restore database old_name from d:\(只寫到備份檔案所在的根目錄) taken at 201722 into new_name
報錯 sql2542n--未備份表空間,需要重定向表空間備份
db2 備份還原
一 匯入匯出 ixf db2 export to tmp csv of ixf lobs to xml to modified by codepage 1208 select from sysibm.dual db2 import from tablename of ixf insert into ...
db2備份還原常用命令
鏈結資料庫 db2 connect to platform user administrator using a 1 db2 connect to 資料庫名 user db2使用者名稱 using db2密碼 全盤備份表結構 db2look d platform e o tplatform.sql ...
db2備份還原 自動備份指令碼
c documents and settings db2admin db2 create db tt on d db20000i create database命令成功完成。c documents and settings db2admin db2 connect to tt 資料庫連線資訊 資料庫...