Skip to main content

Question

My query is returning many rows but I’m only interested in the query processing time. How do I omit the query output and check for query processing time?

Answer

Append FORMAT Null to your query to configure the output format to Null. This prevents data from being transmitted to the client. For example:
The response will return the number of rows processed and the elapsed time, but 0 rows will be returned:
Last modified on July 2, 2026