I want to get all the Tags from the data explorer (http://odata.stackexchange.com/meta/query/new) but my query results get truncated to 2000 records. How can I get the whole thing?
Thanks!
|
I want to get all the Tags from the data explorer (http://odata.stackexchange.com/meta/query/new) but my query results get truncated to 2000 records. How can I get the whole thing? Thanks! |
||||
|
|
|
You can't make it return more than 2000 rows, it's a hard limit to stop queries from overloading the system. You can do piecemeal queries like:
but that would take a while (we're on id 29239 right now). It's probably easier to download the latest data dump yourself so you can load up the whole database and operate on it locally |
|||
|
|
|
There are almost 30,000 tags in the Stack Overflow data set, but the Data Explorer is limited to returning 2,000 results at a time. EDIT: Here is the best solution. Output the results of this to text so you can copy/paste. This generates the entire set of tags as an XML document, which you can parse:
Since you're free to use any SQL you want, there are a bunch of ways of doing this, not all of which work.
|
|||||
|
|
|
Its truncated to 2000 rows due to performance and to prevent possible abuse. To get everything requires using the full data dump in XML or using another database port |
|||
|
|