
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2022 03:33 AM
Hi Guys
Basically, I know sys_db_object has all tables and sys_dictionary has all table columns but is there A overall table that has all table entries? For example it maps the tablee, column and also the entry for that column?
Thanks in Advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2022 04:36 AM
Hi,
Navigate to this module which gives you the info you need in a Single Page view itself:
Module Name: Tables & Columns
So in this view you can view both Table name and their Dictionary as well
Apart from this the table which holds Table details are "sys_db_object" which is nothing but the Table Module which you have already mentioned in your question itself.
Hope this helps. Please mark the answer as correct/helpful based on impact.
Regards,
Shloke
Regards,
Shloke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2022 03:45 AM
Hi,
All the dictionary are stored in sys_dictionary table
Table definitions are storied in sys_db_object only.
When you open the table definition, you see a list of columns, that is just fetched from dictionary based on the table name mapped there.
Now what you want , probably you can just from Dictionary table , if you filter ny the tabe name, as showin the screenshot below
This way i am able to see all the fields on incident table and their types and attributes etc.
Hope this helps.
-Anurag

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2022 04:15 AM
No what I'm looking for is e.g:
Table: sys_user
column Label: User
column Name: user
but then a list of all the users under user. So would be multiple entries of 'user' and a column that had either the reference to or string of the user name for that record / entry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2022 03:49 AM
sys_db_object stores all the table names.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2022 04:27 AM
Hello,
I do not think you can get all the information in one single view in Servicenow.
There are surely database view which we generally create to have multirole table records in one view. but I do not see any way to do it using that as well.
Please mark answer correct/helpful based on impact