“Importowanie danych Excel do SQL Server” Kod odpowiedzi

Importuj Excel do 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

Importowanie danych Excel do 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

Eksportuj dane z programu Excel do 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

Odpowiedzi podobne do “Importowanie danych Excel do SQL Server”

Pytania podobne do “Importowanie danych Excel do SQL Server”

Więcej pokrewnych odpowiedzi na “Importowanie danych Excel do SQL Server” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu