INSERT into Developer VALUES (1000, 'Google', '[email protected]') INSERT into Developer VALUES (1001, 'Meta', '[email protected]' ) INSERT into Developer VALUES (1002 ...
Provide table data as a CSV (comma-separated values) file and output a SQL insert statement for a table with the same name as the file.
I have a daily generated csv file that I'm going to have its contents inserted into tables in our SQL Server database. I can open the csv as a recordset in ADO, but I'm not sure how I open a second ...