function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
krishnagkrishnag 

test exception while deployment

hi when i tried to deploy my class its throwing an error  saying too many query rows 10001.What is that mean.

Vanessa BarrosVanessa Barros

hi! u have to bulk your trigger because of the goverment limits SF.

Jeremy_nJeremy_n

This may or may not be an issue with bulkifying your trigger. Most likely you just have a lot of data in production, and you didn't account for the fact that you can only query 10000 rows in a session. Look at your query and determine if you really need all that data. Most likely you can be more specific in the query, and that will reduce the amount of data you get back.

 

Post your trigger code if this doesn't make sense.

 

Jeremy