Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI,
is there any way to find number and name of all resident tables?
Regards,
Saurabh
In script,
NoOfTables() returns the number of tables.
TableName(n) returns the name of Table n.
-Rob
The system fields will give these details.
$Table Displays all internal tables loaded by the script.
$Field Displays the fields that are in the table.
$Fields The count of fields in the table
$FieldNo This shows the position of the fields in the table.
$Rows This shows the number of rows in the table.
You will need to enable Show System Fields to see these values.
In script,
NoOfTables() returns the number of tables.
TableName(n) returns the name of Table n.
-Rob