复原多个表

本示例中的模式命令文件从 dbspace1 的最近备份中抽取表 test1:tlrtest1:tlr_2,并且将数据放到 test1:tlr_1_desttest1:tlr_2_dest。 这是复原多个表的有效方法,因为它只需要扫描一次归档和逻辑日志文件。
database test1;
create table tlr_1 
  (  columns  ) in dbspace1;
create table tlr_1_dest (  columns  ); 
create table tlr_2 
  (  columns  ) in dbspace1;
create table tlr_2_dest (  columns  );
insert into tlr_1_dest select * from tlr_1;
insert into tlr_2_dest select * from tlr_2;