I'm looking for any suggestion for the workaround of 1000 lines per insert limit in SQL Server.
I have MySQL dump script which has few 100 lines, each line is an insert statement which contains approx 7000 rows.
I cannot insert that directly to SQL Server because of the limit of 1000 rows per insert.
Is there any "easy" workaround or only one way is to programmatically identify rows and create insert per each row?