- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2017 04:53 AM
Does anyone query the ServiceNow database tables directly, outside of ServiceNow? What tool do you use? What type of db is ServiceNow?
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2017 11:34 AM
Saanvi Sharma wrote:
Does anyone query the ServiceNow database tables directly, outside of ServiceNow?
There's no such thing.
You can query the ServiceNow tables within the platform, or you can query the MySQL database that sits below the ServiceNow instance, outside of the platform.
But if you ever manage the latter (which is highly unlikely), you'll find the names of tables and columns may be mystifying since they're presented as meaningful labels within the platform but abstracted to something else outside of it.
So.. in general, if those tables are used for ServiceNow, stick to interrogating them via the platform.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2017 11:24 AM
Hi Saanvi,
The right way of doing that is through the TABLE API
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2017 11:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2017 11:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2017 02:15 AM
Thank You bernyalvarado