If the LIST=ALL parameter is used when invoking the Parser, a listing of the each of the datastore descriptions are written to the report in addition to the source script file shown above. A sample datastore description listing as it appears in the Parser report is provided below.
--------------------------------------------------
-- Processing /home/sqdata/ORADDL/customer.ddl
--------------------------------------------------
SQD00001 CREATE TABLE CUSTOMER
SQD00002 (
SQD00003 NAME CHAR(255),
SQD00004 LNAME CHAR(25),
SQD00005 FNAME CHAR(25),
SQD00006 PHONE CHAR(15),
SQD00007 FAX CHAR(15),
SQD00008 EMAIL CHAR(30),
SQD00009 SHIPADDR1 CHAR(30),
SQD00010 SHIPADDR2 CHAR(30),
SQD00011 SHIPCITY CHAR(15),
SQD00012 SHIPSTATE CHAR(02),
SQD00013 SHIPZIP CHAR(10),
SQD00014 BILLADDR1 CHAR(30),
SQD00015 BILLADDR2 CHAR(30),
SQD00016 BILLCITY CHAR(15),
SQD00017 BILLSTATE CHAR(02),
SQD00018 BILLZIP CHAR(10)
SQD00019 );