Can SQL Server Compact be used as both a Source and Destination in SSIS? -
I am thinking that the SSL server compressed version can be used as a source and destination in an SSIS dataflow. I know that I can set up a SQLMOBILE Connection Manager, and I have got some information that mentions it to be used as a destination, but nothing to use it as a source.
What I have to do is transfer data from one SQL Server compact file to another.
This OLE DB can be used.
The problem is that SQL Server CE OSE is not supported by the SSIS user interface to create DB connections.
But it is possible for some to make an OLE DB connection, and then manually using the property window changes the connection string. And of course, change the name of the connection.
The connection string may be something like:
data source = "d: \ path \ mydb.sdf"; Provider = Microsoft .SQLSERVER.CE.OLEDB.3.5;
Of course, the provider must match the SQL Server CE version to use the field.
It is possible to make an OLE DB connection for each SDF database file. It is possible to make all the OLE DB source and location are necessary for all transfers.
Hope this helps :)
Comments
Post a Comment