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
chrismclarenchrismclaren 

Help

I am a new user to this board. I was looking for some way to do the following:- I want to access salesforce.com data and extract it daily. I would like it saved in an xml format. I do not want to change the data, simply export it. I have Java experience and I'm looking ofr any help to achieve this. The data loader does not have an option to export daily without user interaction.
adamgadamg
Hi Chris:

FWIW, you can script the data loader to run unattended (which may or may not solve your problem). Details are here:

http://blog.sforce.com/sforce/2005/06/sforce_data_loa.html
qmanqman
You can also use the free version of DBAmp (www.forceAmp.com), download the tables into the free version of SQL Server, and then use the XML facilities of SQL (Select * from SALESFORCE...Account FOR XML).

Bill Emerson