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
You cannot get exact row limit, but you can try exporting the table values in an excel sheet. Then try removing the rows and check the size of the excel sheet. When the size of excel is around 1 MB, you can take the number of rows, verify the same by marginally changing the number and passing it as batch size in the query.
Thanks Soma , will try it