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
Kay DarrKay Darr 

Replicating security

Hi

 

I have developed a Java application that reads data from salesforce and stores it in Oracle. Now I also need to read all security (data access) related information associated with the data. While reading the docs I found that I would need to replicate the Profile, permission sets and Share objects.

 

Replicating share objects seems very difficult as they could run into millions. (my data size is around 500,000)

 

Is there an easier way to replicate security instead of the above.

 

Thanks

 

Best Answer chosen by Admin (Salesforce Developers) 
Jia HuJia Hu
Not sure about the meaning of replicating security, but if you use Soap API by Java, the limit is 50 million records for a transaction. I guess this is enough for your case.

All Answers

Jia HuJia Hu
Not sure about the meaning of replicating security, but if you use Soap API by Java, the limit is 50 million records for a transaction. I guess this is enough for your case.
This was selected as the best answer
Kay DarrKay Darr

Thanks