In my current project i have to transfer data EVERY DAY from MS Access to Sql Server 2008 standard edition. of course i can use SQL Migration tool to transform Access database into Sql Server database, but problem is i have to do this again and again every day to keep updating my sql server database.

SO is there any way i can write C# program that transfer data from MS ACCESS file to SQL SERVER?

Any help would be highly appreciated.

Many Thankx

Vijay Shiyani

link|improve this question

60% accept rate
2  
What about SQL Server Integration Services? – Serkan Hekimoglu Sep 29 '10 at 6:06
Just to get accurate information out there, the SSMA for Access is at version 4.2 now (microsoft.com/downloads/en/…). – David-W-Fenton Sep 30 '10 at 3:15
feedback

4 Answers

As suggested by Serkan in his comment, I would go with using SSIS (SQL Server Integration Services) for this task especially as you are already using SQL Server and SSIS is build exactly to support this kind of task.

SSIS is very flexible (like most ETL packages) and you can add custom logic for transformation of data (if any)

Additionally, if you create a job in SQL server, then you can schedule this task and this job will execute the SSIS package that connects to the MS Access database and use it as a data source automatically.

Moreover, you do have the option to call an SSIS package directly from C# code (if for some reason you have a requirement to not use scheduled jobs but need to provide some kind of interface for users to kick off the task) using DTExec.exe or by using the classes exposed via Microsoft.SQLServer.ManagedDTS.dll.

Refer this link for how you can invoke an SSIS package directly from C# code

link|improve this answer
thank you for suggestion, i will try and see how it goes. Thankx again – vijay shiyani Sep 29 '10 at 7:25
feedback

I would suggest an ETL (see Talend Open Studio for example). You design a transfer job (with appropriate transform if necessary) and then use your OS task scheduler to run the job every day.

Note: Talend Open Studio generates java or perl code.

link|improve this answer
feedback

Why not just migrate the data permanently to SQL Server and use your Access application as the front end to a SQL Server database instead of a Jet/ACE database?

link|improve this answer
feedback

You could also run update/delete/append queries inside C#. With varous IN clauses pointing to the databses in question. How exactly you'd do this in C# I don't know but these would be easy to do in Access.

[SELECT | INSERT] INTO destination IN
    {path | ["path" "type"] | ["" [type; DATABASE = path]]}

To identify a source table:

FROM tableexpression IN 
    {path | ["path" "type"] | ["" [type; DATABASE = path]]}

from Access 97 help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.