Data Definition Language (DDL) Reference Manual
DDL Compiler Commands
Data Definition Language (DDL) Reference Manual—529431-004
9-114
TIMESTAMP
NOTIMESTAMP
excludes date and time comments from source code listings.
The DDL compiler produces a number of starred timestamp comments on the listings
of DDL or host-language source code. A comment at the beginning of the listing tells
the date and time the schema was produced; individual comment lines preceding each
section tell when each DDL object was created.
You can suppress these timestamp comments with NOTIMESTAMP and then include
them with a subsequent TIMESTAMP.
Example 9-60 on page 9-114 shows selective listing or suppression of the timestamp
comments in a COBOL source code file.
Example 9-60. TIMESTAMP Command
DDL Input
?COBOL cobsrc
DEF aa PIC X(8).
?NOTIMESTAMP
DEF bb PIC 9(5).
.
.
.
?TIMESTAMP
RECORD rec1. FILE IS $data.sales.rec1 KEY-SEQUENCED.
02 aa TYPE *.
02 bb TYPE *.
END
DDL Output (COBOL Code)
*SCHEMA PRODUCED DATE - TIME : 4/30/1991 12:29:35
?SECTION AA, TANDEM
Timestamp
*Definition AA created on 4/30/1991 12:29
01 AA PIC X(8).
?SECTION BB, TANDEM
Timestamp
01 BB PIC 9(5).
...
?SECTION REC1, TANDEM
No timestamp
*Definition REC1 created on 4/30/1991 12:29
01 REC1.
02 AA PIC X(8).
02 BB PIC 9(5).
Timestamp