If we want to compare records from a source system to data that is just added to SFDC how do we do that?


2 Answer(s)


@Parshant :- If I got ur question correctly, you want to check data for all records in SFDC. This can achieved as u said by firing a SOQL in SFDC or extract data using dataloader in a csv and then compare with source system.

Yes Prashant to count number of records you have to fire SOQL not SQL and query will be executed in developer console, query will be something like this Integer count = [select count() from object_name];