Click here to Skip to main content
15,886,519 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to insert more than 255 columns into oledb sql server destination using excel source version 2007.

What I have tried:

how to insert more than 255 columns into oledb sql server destination using excel source version 2007..
Posted
Updated 16-Dec-17 7:45am
Comments
CHill60 15-Dec-17 8:46am    
What have you tried and what went wrong?

1 solution

There is a 255 column limitation in the JET driver for Excel.
Try adding the range to the query.
SQL
SELECT  *
FROM    [Sheet1$A1:EH65535]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900