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
lakshmi25lakshmi25 

mass delete custom object records in Professional

mass delete custom object records in Professional

MagulanDuraipandianMagulanDuraipandian

Use Apex Data loader

 

Regards,

Magulan D

Salesforce.com certified Force.com Developer.

 

SFDC Blog

 

If this post is your solution, kindly mark this as the solution.

chiranthchiranth

Query all the records of the custom object in develeoper console 

 

Example :

 List<Custom object> c = new List<custom object>();

c=[select Id, name ....... from custom object ];

delete c;

 

 

Execute the above code in the developer console.  If u need to query record based on condition give it in where clause in the above query.          

       

Maximilien Drigeard Desgarnier 13Maximilien Drigeard Desgarnier 13
You are not able to execute script with console in Professional