Dictionary Manipulation Statements
Data Definition Language (DDL) Reference Manual — 426798-002
8- 10
OUTPUT UPDATE Statement
The resulting source code from MYFILE follows:
Note. The order in which the objects are deleted and added is important. Any other order can
cause DDL to issue an error message.
?Section ZIP-CD-DELETES
Delete Record SUPPLIER.
Delete Record CUSTOMER.
Delete Definition SUPPINFO.
Delete Definition CUSTINFO.
Delete Definition ADDR.
?Section ZIP-CD
Definition ZIP-CD PIC "9(9)".
?Section ADDR
Definition ADDR.
02 ADDRESS PIC "X(22)".
02 CITY PIC "X(14)".
02 STATE PIC "X(12)".
02 ZIP TYPE ZIP-CD.
End
?Section CUSTINFO
Definition CU STINFO.
02 CUSTNUM TYPE *.
02 CUSTNAME TYPE NAME.
02 ADDR TYPE *.
End
?Section SUPPINFO.
Definition SUPPINFO.
02 SUPPNUM TYPE *.
02 SUPPNAME TYPE NAME.
02 ADDR TYPE *.
End
?Section CUSTOMER
Record CUSTOMER.
File is "$data.sales.customer" Key-sequenced
Audit.
Definition is CUSTINFO.
• Key is CUSTNUM duplicates not allowed.
Key "cn" is CUSTNAME.
End
?Section SUPPLIER
Record SUPPLIER.
File is "$data.sales.supplier" Key-sequenced
Audit.
Definition is SUPPINFO.
Key is SUPPNUM Duplicates not allowed.
Key "su" is SUPPNAME.
End
Second section defines
new ZIP-CD with new
length of 9 digits
Subsequent sections
contain definitions to
rebuild deleted objects
First section deletes all
objects that refer to ZIP-
CD
VST808.vsd
Содержание DDL D40
Страница 36: ...Introduction to DDL Data Definition Language DDL Reference Manual 426798 002 1 14 Examining a Dictionary ...
Страница 66: ...Named Constants Data Definition Language DDL Reference Manual 426798 002 4 10 Standard SPI Constants ...
Страница 230: ...Dictionary Manipulation Statements Data Definition Language DDL Reference Manual 426798 002 8 14 SHOW USE OF Statement ...
Страница 370: ...Dictionary Maintenance Data Definition Language DDL Reference Manual 426798 002 10 24 Converting a Dictionary ...
Страница 456: ...Sample Schemas Data Definition Language DDL Reference Manual 426798 002 B 12 ASSNDDL Statements ...
Страница 470: ...DDL Data Translation Data Definition Language DDL Reference Manual 426798 002 C 14 ...
Страница 528: ...Dictionary Reports Data Definition Language DDL Reference Manual 426798 002 E 8 Requesting Reports ...
Страница 552: ...DDL Alignment Rules Data Definition Language DDL Reference Manual 426798 002 H 4 FIELDALIGN_SHARED8 Alignment Rules ...
Страница 576: ...Index Data Definition Language DDL Reference Manual 426798 002 Index 22 Special Characters ...