“Importar datos de Excel en SQL Server” 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

Exportar datos de Excel a SQL Server

From your SQL Server Management Studio, you open Object Explorer, go to your database where you want to load the data into, right click, then pick Tasks > Import Data. 
This opens the Import Data Wizard, which typically works pretty well for importing from Excel.
dcbert

Respuestas similares a “Importar datos de Excel en SQL Server”

Preguntas similares a “Importar datos de Excel en SQL Server”

Más respuestas relacionadas con “Importar datos de Excel en SQL Server” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código