Please help. This is the Bulk insert code to insert Employee data into SQL server 2019.The data is being inserted. but still with quotes. How to insert data without quotes? Please let me know what wrong AM' I doing?
BULK INSERT dbo.tblActiveDirData FROM 'E:\EmployeeData\ATadUserlistDB.csv' WITH ( DATAFILETYPE = 'char', FIRSTROW = 2, FIELDTERMINATOR= ',', ROWTERMINATOR = '\n' )