Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Ottieni il foglio Excel nella tabella temporanea usando uno script

Per i file xlsx (Excel 2007-2010) puoi utilizzare il provider ACE oledb invece del JET

SELECT * 
FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
    'Excel 12.0;HDR=YES;Database=C:\PB.xlsx',
    'SELECT * FROM [Sheet1$]');