I'm trying to use next code to import data from CSV file:
select * FROM OPENROWSET(
'Microsoft.ACE.OLEDB.12.0',
'Text;Database=C:\Users\Evgeny\Desktop;HDR=Yes;FORMAT=Delimited(;)',
'SELECT * FROM [test.csv]'
);
And my data have next structure, where 1st string has column names:
"Name1";"Name2";"Name3"
"Value1";"Value2";"Value3"
But after the query is executed, the result is only one column, like this:
Name1
Value1
What can be a problem? How can I solve it not usung other drivers, becouse on my job place I can't do that.