Skip to main content

Export history

SQL Export Jobs let you export the results of read-only SQL queries (only SELECT, UNION, UNION ALL) from the SQL Editor into a downloadable CSV or JSON file.

Exports run asynchronously, so you can continue working without waiting for the job to finish. You can track progress via job status in the SQL Editor’s Export history.

Exporting SQL results as a CSV

Track and download exports

From SQL Export History, you can:

  • Track the export status
  • Review the query used for exporting data
  • Download the exported file
SQL export history

Export options and row behavior

The export behavior depends on the export option you choose and whether the query contains LIMIT or NOLIMIT.

Export OptionQuery has...BehaviorRows exported
Export visible recordsLIMIT 50Keeps LIMIT 50Up to 50
Export visible recordsLIMIT 100000Caps to LIMIT 100Up to 100
Export visible recordsNOLIMITStrips NOLIMIT, adds LIMIT 100Up to 100
Export visible recordsNo LIMIT / no NOLIMITAdds LIMIT 100Up to 100
Export allLIMIT 2500Respects user limit, paginates up to 2500 rowsUp to 2500
Export allNOLIMITStrips NOLIMITAll rows (until data exhausted )
Export allNo LIMIT / no NOLIMITSame as NOLIMITAll rows (until data exhausted)