Column Datatype Comment
--------------- --------- ----------------------------
Table_Name Char(30) 30 bytes-max tablename size
Sequence_Number Int Four bytes for Int
Pad1 - Pad7 Char(255) 255*7+34 = 1785 bytes so far
Pad8 Char(141) 1962 bytes = one page
INSERT INTO SEQUENCE_NUMBER
(Table_Name, Sequence_Number, Pad1,...)
VALUES ('Customer',005,SPACE(255)...)
|