In Access, you can perform the following:
INSERT INTO 'c:\mynewdatabase.mdb'
SELECT * FROM MyTable
In SQL Server, it falls over, not allowing the data to be transferred from teh SQL Server database into my MDB file.
I know you can do it via a DBO.mydatabase within another SQL database inside SQL Server, but how to you provide a provider to connect to an external database?
This would relieve a BIG headache for me. Thanks!
Carl Harrison.
INSERT INTO 'c:\mynewdatabase.mdb'
SELECT * FROM MyTable
In SQL Server, it falls over, not allowing the data to be transferred from teh SQL Server database into my MDB file.
I know you can do it via a DBO.mydatabase within another SQL database inside SQL Server, but how to you provide a provider to connect to an external database?
This would relieve a BIG headache for me. Thanks!
Carl Harrison.