Inserting a table into a dbschema output file

You can insert CREATE TABLE statements into the dbschema output file and use this output as input.

The following example copies the CREATE TABLE statements for the customer table into the dbschema output file, tab.sql:
dbschema -d db -t customer > tab.sql
Remove the header information about dbschema from the output file, tab.sql, and then use to re-create the table in another database, as follows:
dbaccess db1 tab.sql