You can change these restrictions; but you will use some time in transferring data between the database and the client and, possibly, for display; and this, in turn, will depend on the number of rows pulled by each sample. These things also affect your application, though, so viewing your raw runtime may not tell you the whole story anyway.
To change the sheet limit (F5), go to Tools-> Settings-> Database-> Worksheet and increase the "Maximum lines to print in the script value" (and, possibly, "Max lines in Script output '). To change sample size, go to the "Database"> "Advanced" panel in the settings; perhaps to match your application value.
This is not ideal, but if you do not want to see the actual data, just find the time required to run in the database, you can wrap the query to get one row:
select count(*) from ( <your original query );
Usually it executes the entire original query, and then counts the results, which will not add anything meaningful to the time. (Perhaps he could rewrite the request internally, I suppose, but I think this is unlikely, and you could use hints to avoid it if necessary).
source share