简单模式命令文件

本示例中的模式命令文件从 dbspace1 的最近一次 0 级备份中抽取一个表。 数据放置在表 test1:tlr 中,并且应用了日志,以使表 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;