Kbase P89407: What are _StorageObject records?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  30/07/2004 |
|
Status: Unverified
GOAL:
What are _StorageObject records?
FACT(s) (Environment):
Progress 9.1D
FIX:
The _storageObject table is a Progress schema table. As such, it is frozen and can't be modified. The records it contains are what are known as the "mapping schema".The table maps objects to their appropriate areas whenever a language makes a request of the storage manager involving objects. Valid V9 values for object type are as follows:
#define DSMOBJECT_TABLE 1 /* table object */
#define DSMOBJECT_INDEX 2 /* index object */
#define DSMOBJECT_BLOB 3 /* blob object */
The following 4GL returns the records for this table -
FOR EACH _StorageObject:
DISP _StorageObject.
END.