从先前备份中复原表

本示例中的模式命令文件从 dbspace1 的 0 级备份中抽取一个表。 使用了逻辑日志将表的时间变为“2003-01-01 01:01:01”。 数据放在表 test1:tlr 中。
database test1;
create table tlr    (
   a_serial   serial,
   b_integer  integer,
   c_char char,
   d_decimal  decimal
   ) in dbspace1;
insert into tlr select * from tlr;
restore to '2003-01-01 01:01:01';