Help

Airtable to SQL Server via CDATA JSON ODBC Driver

2419 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Suman_Chintakun
4 - Data Explorer
4 - Data Explorer

Hi,

I am SQL developer and I got request to pull data from Airtable. For that I am using Cdata JSON ODBC driver which uses Airtable API to fetch data from Airtable. I have setup everything and it is working as expected.

But the thing is it is only fetching 100 records. When I checked in Airtable it has 140 records. I changed the ODBC configuration which has default 100 rows max to 10000 rows. But it is still fetching only 100 records.

Can anyone please help me with the issue.

Thanks,

1 Reply 1

If you have a look at the API documentation you will see that the pageSize (number of records returned in each request) is a max of 100. You will have to do multiple requests using the offset from the response to get the next set of 100 records:

Screenshot 2019-04-19 at 20.50.48.png

JB