Due to popular demand, I decided to test each of these queries. I used a .xlsx file with 215,337 rows, and 15 columns.
SELECT * INTO dbo.ImportTest
FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
'Database=\\plaus42\Sample\SampleRepository\j3688810_Cycle 13.xlsx;
Excel 12.0 XML;HDR=YES;IMEX=1', [sample$])
Ran for 2:24
SELECT * INTO dbo.ImportTest
FROM OPENDATASOURCE('Microsoft.ACE.OLEDB.12.0',
'Data Source=\\plaus42\Sample\SampleRepository\j3688810_Cycle 13.xlsx;
Extended Properties="Excel 12.0 XML;HDR=YES;IMEX=1"')...[sample$]
Ran for 2:20
The results mostly make me think my server kind of stinks :angry: