I'm new to DTS and wwas wondering if there was anyone who have had some experience with SQL on a server. I'm having an issue with the SQL Server Import and Export Wizard. I've messed with the syntax and I've messed with it and I keep getting the same error. Here is what I'm working with as it stands right now:
INSERT INTO stores
SELECT *
FROM OPENROWSET(
'Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;IMEX=1;HDR=NO;DATABASE=L:\ITS\storedata.xls',
'Select * FROM [storedata$]'
);
Does anybody have any idea? I can give more information if needed....