使用数据过滤

本示例中的模式命令文件从 dbspace1 的最近备份中抽取表 test1:tlr,并且只将数据放到表 test1:tlr 中列出条件为真的地方。
重要: 过滤器只能应用于物理复原。
database test1;
create table tlr    (
   a_serial   serial,
   b_integer  integer,
   c_char     char(20),
   d_decimal  decimal,
   ) in dbspace1;
insert into tlr 
  select * from tlr
  where c_char matches ‘john*'
  and d_decimal is NOT NULL
  and b_integer > 100;
restore to current with no log;