Consultor Eletrônico



Kbase P107167: How to determine what fields in a database have extents?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   8/3/2005
Status: Unverified

GOAL:

How to determine what fields in a database have extents?

GOAL:

How to determine what fields in a database are array fields?

FIX:

The following code will display what fields are defined with an extent (i.e. are array fields):
FOR EACH _File NO-LOCK WHERE _Tbl-Type = 'T':
FOR EACH _Field OF _File NO-LOCK WHERE _Extent > 0:
DISPLAY _File._File-Name _Field._Field-Name _Field._Extent.
END.
END.