SSIS: How to create and export data to Microsoft Access 2003 database?

8,573

There is an a destination for Access database, as long as the Access database already exist. You would add your SQL Server 2005 and the Access database to the connection manager. Then chose the OLE DB source and destination within your data flow. It will allow you to chose the Access connection as your destination.

Now if you are wanting to create the Access database on the fly, that is something different and would require a bit of scripting to accomplish.

Your Connection Manager properties and OLE DB destination editor for your access database would look similar to this: enter image description here enter image description here

Share:
8,573
dance2die
Author by

dance2die

I like to read, and build(& break?) stuff. Currently helping folks out on r/reactjs & DEV#react. Reach out to me @dance2die & check out my blog on sung.codes

Updated on September 18, 2022

Comments

  • dance2die
    dance2die over 1 year

    Goals - Automate exporting SQL Server 2005 views to Microsoft Access 2003 database (no transformation required) through SQL Server Job (with SSIS package)

    There is no "Access DB Destination" in BI toolbox. So the question is,
    How can I create an Access database (for me to load data to)?

  • dance2die
    dance2die over 14 years
    @Andy: I should have been more thorough in my question that I actually want to automate the process. By creating a SSIS package, I was thinking about creating a sql server job that runs weekly.