“Importar Excel a SQL” Código de respuesta

Importar Excel a SQL

You can also use OPENROWSET to import excel file in sql server.

SELECT * INTO Your_Table FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
                        'Excel 12.0;Database=C:\temp\MySpreadsheet.xlsx',
                        'SELECT * FROM [Data$]')
Santino

Importar datos de Excel en SQL Server

# For file excel 2007 version (*.xlsx)
INSERT INTO MyTable
SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
'Excel 12.0;Database=D:\test.xlsx', [Customer$])

# For file excel 97-2003 version (*.xls)
INSERT INTO MyTable
SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=D:\test.xls', [Customer$])
Mappy Show

Respuestas similares a “Importar Excel a SQL”

Preguntas similares a “Importar Excel a SQL”

Más respuestas relacionadas con “Importar Excel a SQL” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código