DB2数据库备份实验准备工作
(1)创建测试数据库testdb
db2 create db testdb on E:/db2back using codeset gbk territory cn
(2)创建表tbtest 并插入数据
db2 create table tbtest (in int not null,name varchar(20),primary key(id))
--------插入数据--------
db2 insert into tbtest values(1,'jia'),(2,'yi'),(3,'bing')
数据库脱机备份和恢复实验
完全离线备份
db2 backup db testdb to E:/db2back
模拟灾难,强制删除数据库
db2 drop db testdb
根据备份时间戳的备份还原数据库
db2 restore db testdb from E:/db2back taken at 20100509165938