What is the record limit for a remote table in servicenow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2020 02:17 AM
HI all,
We have created a remote table to pull the data from an external source dynamically. However, only 1000 records are being created on the remote table, where as when we check the response from the REST message the data is more than 2000 records.
Please let me know if there is a record limit of 1000 on the remote tables?
- Labels:
-
Instance Configuration
-
Integrations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2020 04:07 AM
So is it a configuration set up from ServiceNow not to add more than 1000 records?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2020 06:16 PM
Hi
I hope this answer your question.
- Pradeep Sharma

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2020 09:36 PM
I hope this answers your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2020 09:33 PM
As already mentioned in my earlier response and also from Pradeep it is not configuration but recommendation.
Also you cannot increase or decrease the value for it
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2020 06:40 PM
Hi Sanga,
Refer below details:
sysparm_offset and sysparm_limit parameters
If you want to retrieve 10 records (sysparm_limit=10) in the record set starting from the beginning (sysparm_offset=0) of the record set.
/api/now/table/<tablename>?sysparm_limit=10&sysparm_offset=0
Then for next 10 records, you would simply increment the value of sysparm_offset by the value of your sysparm_limit
/api/now/table/tablename?sysparm_limit=10&sysparm_offset=10
/api/now/table/tablename?sysparm_limit=10&sysparm_offset=20
/api/now/table/tablename?sysparm_limit=10&sysparm_offset=30
.
.
/api/now/table/tablename?sysparm_limit=10&sysparm_offset=n
Regards,
Abhijit