- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2017 12:22 PM
Is there another way to see the relationships between all tables other than looking at the schema?
In other words, I would like to be able to determine all the referencing tables and referenced by tables of a table from within a script, and then take appropriate action within the script.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2017 12:49 PM
"Dictionary Entries" may help here.
First get list of all field (tables) having type reference.
Then check the reference table and again from Dictionary Entries get the column name of that references table whose Display = true

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2017 12:49 PM
"Dictionary Entries" may help here.
First get list of all field (tables) having type reference.
Then check the reference table and again from Dictionary Entries get the column name of that references table whose Display = true
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2017 12:58 PM
Thank you! I believe you have given me what I need.