Data Size of Query

Certified Senior Developer

Is there any to find the size of the data that is returned by a query?? The default size limit is 1MB, but we want to understand how much rows we can pull from database without reaching this limit.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Associate Developer

    Hi  

    The default is 1048576 bytes (1 MB). Before changing this value, consider using the query rules paging parameter to return less data (or return data in batches) and therefore avoid the limit. Also, consider whether the entire set of data that is being returned is actually needed. If not, use the query expression functions to select which fields to return.
Reply
  • 0
    Certified Associate Developer

    Hi  

    The default is 1048576 bytes (1 MB). Before changing this value, consider using the query rules paging parameter to return less data (or return data in batches) and therefore avoid the limit. Also, consider whether the entire set of data that is being returned is actually needed. If not, use the query expression functions to select which fields to return.
Children