I have been reading a lot of forums and tutorials where other users ask the same but the answer is almost the same always: use BCP.EXE (BULK INSERT) instead to import, and also export with BCP.EXE using native format.
But in some post I read that there is a (complicated) way to do it with SQLCMD, and my need now is strongly requesting me to to it through SQLCMD as the target is an Azure SQL DB. Does anyone know the steplist to follow? Or any useful resource that can share with me?
Thank you very much in advance.
I'm expecting to use only SQLCMD to insert the CSV data into an Azure SQL DB.
No, you can use SQLCMD to convert data:
Or BCP to import data:
Why don't you use SSMS to import the CSV?