jharding08
Programmer
I am converting some sql statements that were designed for an Access database connection to make them work with SQL Server. Most of the time this has meant to use OPENROWSET for the external SQL Server connection while using a local Access table connection. Can anyone tell me why this statement says it has a problem with the IN Clause?
SELECT * INTO [BarcodeMasks] FROM [BarcodeMasks] IN OPENROWSET('MSDASQL','DRIVER={SQL Server};SERVER=JEFF;UID=dbo;PWD=',[BarcodeMasks])
SELECT * INTO [BarcodeMasks] FROM [BarcodeMasks] IN OPENROWSET('MSDASQL','DRIVER={SQL Server};SERVER=JEFF;UID=dbo;PWD=',[BarcodeMasks])