Can anyone advise how to bulk insert from .xlsx file?
.xlsx
I tried the below query already:
BULK INSERT #EVB FROM \'C:\\Users\\summer\\Deskto
you can save the xlsx file as a tab-delimited text file and do
BULK INSERT TableName FROM 'C:\SomeDirectory\my table.txt' WITH ( FIELDTERMINATOR = '\t', ROWTERMINATOR = '\n' ) GO