What are the GOV Limits in the Salesforce.com?

Asked 09-Feb-2018
Viewed 863 times

1 Answer


1

Salesforce provides a multitenant environment for running the Apex coding, so the runtime of Apex engine strictly enforces a number of limits for ensuring the runaway scripts and scripts don’t monopolize shared resources.

The Governors limits the track and enforce the statistics to be displayed in the below table.:


TriggerClass Test 
Total number of SOQL's20100100
Total number of SOQL's02020
Total number of records Retrieved by single SOQL Query100010000500
Total number of records Retrieved by single SOSL Query0200200
Total Number Of Call out Methods101010
Total number of send email methods allowed101010
Total Heap Size 300000 Bytes 3MB300000 Bytes3 MB1.5 MB


Note that,

the Governor limits can be enlarged from release to release.
And if scripts exceeds over limit then the associated governor issues a runtime exception that cannot be handled.