Hi,

I wanted to see if anyone can help me out. I am on SQL server 2012 express. I cannot use OPENROWSET because my system is x64 and my Microsoft office suit is x32 (Microsoft.Jet.OLEDB.4.0). So I used Import wizard and is not working either. 
The only thing that let me import this large file, is:
CREATE TABLE #LOADLARGEFLATFILE
(
Column1 varchar(100), Column2 varchar(100), Column3 varchar(100), Column4 nvarchar(max) Go to the complete details ...