“Importando dados do Excel para o SQL Server” Respostas de código

Importar Excel para 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

Importando dados do Excel para o 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 dados do Excel para 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

Respostas semelhantes a “Importando dados do Excel para o SQL Server”

Perguntas semelhantes a “Importando dados do Excel para o SQL Server”

Mais respostas relacionadas para “Importando dados do Excel para o SQL Server” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código