I generated a SQL Server data-only .SQL
file with SQL Server Management Studio.
The file is looks like this:
Insert Into .....
Insert Into .....
Insert Into .....
I have about 950000 rows like that in my file. But when I tried to split the file to 5000 rows part and run it over my local SQL Server, it takes 4 to 5 min for each part.
How can I Insert this file faster? Any ideas?
Thanks