I use RedGate SQL data compare and generated a .sql file, so I could run it on my local machine. But the problem is that the file is over 300mb, which means I can't do copy and paste because the clipboard won't be able to handle it, and when I try to open the file in SQL Server Management Studio I get an error about the file being too large.
Is there a way to run a large .sql file? The file basically contains data for two new tables.
INSERT INTO table_name (text) VALUES ('some text bla bla 'bla' text')
. I have error with quotes. SO What do i have to use (which parameter) to handle this error? Thanks – Pietism