I have the following sql statements (1K plus)
insert into sodeny values('ABC',123,'USER')
insert into sodeny values('XYZ',123,'USER')
insert into sodeny values('EFG',123,'USER')
I am trying to insert "GO" as a new line using Notepad++ but can't seem to get it...is it possible? I need the result to look like this
insert into sodeny values('ABC',123,'USER')
GO
insert into sodeny values('XYZ',123,'USER')
GO
insert into sodeny values('EFG',123,'USER')
GO
I am trying to create a script to be executed against a legacy DB.