Simple schema command file

The schema command file in this example extracts a table from the most recent level-0 backup of dbspace1. The data is placed in the table test1:tlr and the logs are applied to bring the table tlr to the current point in time.
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;