Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Excel spreadsheet that I want to import select columns into my SQL Server 2008 database table. The wiz didn't offer that option.

Any easy code options?

share|improve this question

14 Answers

Once connected to Sql Server 2005 Database, From Object Explorer Window, right click on the database which you want to import table into. Select Tasks -> Import Data. This is a simple tool and allows you to 'map' the incoming data into appropriate table. You can save the scripts to run again when needed.

share|improve this answer
Use SQL Server Management Studio to establish a connection to your database. Then this answer makes sense. This task starts the SQL Server Import and Export Wizard that includes Microsoft Excel as a data source. This is in contrast to running the native Import and Export SSIS application that does not have this option }:-(. – Suncat2000 Jan 19 '12 at 19:43
Tasks -> Import Data does not exist in that menu on 2008. – Brian Knoblauch Dec 19 '12 at 18:44

Microsoft suggest several methods:

  • SQL Server Data Transformation Services (DTS)
  • Microsoft SQL Server 2005 Integration Services (SSIS)
  • SQL Server linked servers
  • SQL Server distributed queries
  • ActiveX Data Objects (ADO) and the Microsoft OLE DB Provider for SQL Server
  • ADO and the Microsoft OLE DB Provider for Jet 4.0

If the wizard (DTS) isn't working (and I think it should) you could try something like this http://www.devasp.net/net/articles/display/771.html which basically suggests doing something like

INSERT INTO [tblTemp] ([Column1], [Column2], [Column3], [Column4])

SELECT A.[Column1], A.[Column2], A.[Column3], A.[Column4]
FROM OPENROWSET 
('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=D:\Excel.xls;HDR=YES', 'select * from [Sheet1$]') AS A;
share|improve this answer
Hmm. this indicates that I have to have excel on a server instead of my pc. is there a way to direct it to my pc? I haven't found that answer yet. – user47206 Dec 18 '08 at 16:04
When I try this, I get the error 'Syntax error in FROM clause. (Microsoft JET Database Engine)' – Techboy Dec 11 '11 at 16:48
Unfortunately, this doesn't seem to work on 64-bit windows – Zidad Oct 25 '12 at 20:00
You can try this download file microsoft.com/en-us/download/details.aspx?id=13255 for 64x I haven't tested but look promise.. – nahum Feb 19 at 17:54

This may sound like the long way around, but you may want to look at using Excel to generate INSERT SQL code that you can past into Query Analyzer to create your table.

Works well if you cant use the wizards because the excel file isn't on the server

share|improve this answer
This always seems to be the easiest way for me... – Nathan DeWitt Mar 10 '10 at 14:21
This (link) is a similar method I use for inserting data into MySQL (same method can be used here) – VenerableAgents Apr 6 '12 at 20:41

You could use OPENROWSET, something like:

SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0', 
  'Excel 8.0;IMEX=1;HDR=NO;DATABASE=C:\FILE.xls', 'Select * from [Sheet1$]'

Just make sure the path is a path on the server, not your local machine.

share|improve this answer
nO WAY TO ACCESS MY LOCAL MACHINE? – user47206 Dec 18 '08 at 16:05
Well, you could probably create a share on your local machine and map a network drive from your SQL Server machine to that share, and access your file that way.... – marc_s Feb 18 '09 at 16:58
go
sp_configure 'show advanced options',1  
reconfigure with override  
go  
sp_configure 'Ad Hoc Distributed Queries',1  
reconfigure with override  
go
SELECT * into temptable
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
                'Excel 8.0;Database=C:\Documents and Settings\abhisharma\Desktop\exl\ImportExcel2SQLServer\ImportExcel2SQLServer\example.xls;IMEX=1',
                'SELECT * FROM [Sheet1$]')

select * from temptable
share|improve this answer
please format your code appropriately. Thanks! – Trufa Jun 14 '11 at 16:11

Microsoft Access is another option. You could have a Access database locally on your machine that you import the excel spreadsheets into (wizards available) and link to the the SQL Server database tables via ODBC.

You could then design a query in access that appends data from the Excel spreadsheet to the SQL Server Tables.

share|improve this answer

Another option is to use VBA in Excel, and write a macro to parse the spreadsheet data and writes it into SQL.

One example is here: http://www.ozgrid.com/forum/showthread.php?t=26621&page=1

Sub InsertARecord() 
Dim cnt As ADODB.Connection 
Dim rst As ADODB.Recordset 
Dim stCon As String, stSQL As String 
Set cnt = New ADODB.Connection 
Set rst = New ADODB.Recordset 

stCon = "Provider=MSDASQL.1;Persist Security Info=False;Data Source=JOEY" 
cnt.ConnectionString = stCon 
stSQL = "INSERT INTO MyTable (Price)" 
stSQL = stSQL & "VALUES (500)" 

cnt.Open 
rst.Open stSQL, cnt, adOpenStatic, adLockReadOnly, adCmdText 

If CBool(rst.State And adStateOpen) = True Then rst.Close 
Set rst = Nothing 
If CBool(cnt.State And adStateOpen) = True Then cnt.Close 
Set cnt = Nothing 

End Sub
share|improve this answer

The import wizard does offer that option. You can either use the option to write your own query for the data to import, or you can use the copy data option and use the "Edit Mappings" button to ignore columns you do not want to import.

share|improve this answer
It didn't give me an option to import into an existing table, just the database and it would create a new table. (SQLServer 2008) – user47206 Dec 17 '08 at 21:04
Found how that works. thanks. Now I found a bigger proplem. I'm using Management studio 2008 and the data base is 2000. I assumed wrong that it was 2005. – user47206 Dec 18 '08 at 16:09
I haven't used management studio 2008 yet (we're running 2005). Management studio 2005 is backward compatible with 2000. – NYSystemsAnalyst Dec 18 '08 at 21:37

By 'the wiz' I'm assuming you're talking about the 'SQL Server Import and Export Wizard'. (I'm also pretty new so I don't understand most questions, much less most answers, but I think I get this one). If so couldn't you take the spreadsheet, or a copy of it, delete the columns you don't want imported and then use the wizard?

I've always found the ability to do what I need with it and I'm only on SQL Server 2000 (not sure how other versions differ).

Edit: In fact I'm looking at it now and I seem to be able to choose which columns I want to map to which rows in an existing table. On the 'Select Source Tables and Views' screen I check the datasheet I'm using, select the 'Destination' then click the 'Edit...' button. From there you can choose the Excel column and the table column to map it to.

share|improve this answer

Excel + SQLCMD + Perl = exceltomssqlinsert

and you can use your Excel as frond-end to MSSQL db ... Note the truncate table at the beginning of each generated sql insert file ...

share|improve this answer

I have used DTS (now known as SQL server Import and Export Wizard). I used the this tutorial which worked great for me even in Sql 2008 and excel 2010 (14.0)

I hope this helps

-D

share|improve this answer

The best tool i've ever used is http://tools.perceptus.ca/text-wiz.php?ops=7 Did you try it?

share|improve this answer

This link will definitely help you to do it quicker.The query to fetch excel data for export to be done for the required columns only.

Export excel data to sql table effectively and quickly

share|improve this answer

protected by Community Oct 8 '12 at 9:57

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.