April 15, 2010 at 10:37 am
We recently purchased a third party tool to run in side by side with our SQL based product. In strategizing the best way to deliver this product to our existing base, we deemed having templates be provided that map the tables in Excel would be the easier procedure to proceed with.
One limitation I'm running into is the Insert statement I typically use with other Excel to SQL imports:
INSERT INTO MAPPINGTABLE
SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel 8.0;Database=C:\Documents and Settings\user\My Documents\Length Adjustments\Mapping\Mapping Table.xls', 'SELECT * FROM [Sheet1$]')
Using this statement requires that I have all of the columns in Excel in the same order as the tables I am inserting into. Is there an easy way to tie the SQL column titles to the column titles I'd use in Excel so that I can move the columns in Excel around to make my Excel workflow easier for data entry versus the way that the programmer has the SQL tables aligned?
April 15, 2010 at 10:42 am
Jayded (4/15/2010)
INSERT INTO MAPPINGTABLESELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel 8.0;Database=C:\Documents and Settings\user\My Documents\Length Adjustments\Mapping\Mapping Table.xls', 'SELECT * FROM [Sheet1$]')
Try:
INSERT INTO MAPPINGTABLE (Col1, Col2, Col3)
SELECT Col1, Col2, Col3
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:\Documents and Settings\user\My Documents\Length
Adjustments\Mapping\Mapping Table.xls', 'SELECT * FROM [Sheet1$]')
This way you can grab whatever columns you want from the spreadsheet, and put them into specific column in the table.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
April 15, 2010 at 1:25 pm
Thanks Wayne! In this instance when I'm making the lists do I have to have a consistency that SQL column 2 points to Excel column 3 such that if someone were to re-sort the Excel spreadsheet and move that column to column 4 that it would no longer work?
Would there be a way to tie the two via the column ID in SQL?
Ex. Column sCodeID in SQL is currently in Excel column 2 and row 1 is labled as sCodeID but should someone move that to column 8 it would still be ok as the system realizes that the column headed sCodeID belongs with SQL sCodeID regardless of where it is.
April 15, 2010 at 2:42 pm
Jayded (4/15/2010)
Thanks Wayne! In this instance when I'm making the lists do I have to have a consistency that SQL column 2 points to Excel column 3 such that if someone were to re-sort the Excel spreadsheet and move that column to column 4 that it would no longer work?Would there be a way to tie the two via the column ID in SQL?
Ex. Column sCodeID in SQL is currently in Excel column 2 and row 1 is labled as sCodeID but should someone move that to column 8 it would still be ok as the system realizes that the column headed sCodeID belongs with SQL sCodeID regardless of where it is.
If you are using a Header row in Excel, that becomes the column name. In this case, it will follow.
If you don't have a Header row, the columns get names like F1...F255. In this case, you will need to know what column it has been changed to.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply