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
shephalishephali 

Insertion and deletion using dataloader

hello friends,
I am trying to delete data on custom object and even after successful deletion i am getting those records in that object.
how to rectify that??
Vishal_GuptaVishal_Gupta
Hi Shephali,

Please use query like this :

Select id,Name from Account where IsDeleted=FALSE

Please let me know if it will work for you.

Thanks,
Vishal
shephalishephali
Hi Vishal,
       Actually i want to delete as well as insert the records using Apexdataloader.In Dataloader i am getting successful deletion of number of records.but when i check my custom object data its not deleted there.