You need to sign in to do that
Don't have an account?
Migrating the data from SQL server or Apache server to the salesforce server
Hii,
can anyone tell me how to migrate the data from SQL server and Apache server to the salesforce.
I want to move my data from the web server to the salesforce on daily basis.
please suggest me all possible and best way to do this task.
Rishav
can anyone tell me how to migrate the data from SQL server and Apache server to the salesforce.
I want to move my data from the web server to the salesforce on daily basis.
please suggest me all possible and best way to do this task.
Rishav
I am not sure when you said migrating data from a Web Server. Do you mean migrating data from local Database like SQL Server? Either ways there are many integration tools that do that for you like JitterBit, Informatica OnCloud, Dell Boomi, etc.
For low cost SQL Server data replication you can use DBAmp.
If you want to do it one time or write your own scripts you can use Dataloader, or write your own process using Bulk API in Salesforce.
Hope this will give you some direction.
Thank you
thanks for reply.
Suppose i have one ASP.NET web application and my data is on SQL server.I need to extract the data from SQL server in regular interval and then upload it to the salesforce server. Now tell me which will be the best way to do this.
is Possible to fetch the data from SQL server using Bulk API.
Thanks
Rishav
You will fetch data from SQL Server using your normal methodology (LINQ or any other way you do today). The data that is fetched is pushed to Salesforce via API.
For your reference
https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/asynch_api_intro.htm
https://developer.salesforce.com/page/Integrating_Force.com_with_Microsoft_.NET
Thank you.