I'm trying to use sed to update some SQL commands, but getting unterminated
s' command`
Command:
sed -i -f commands.sed mySql.sql
commands.sed
s; if @ARI is not NULL
begin
exec spRun @Name='Txn', @NextValue=@Txn output
; if @ARI is not NULL
begin
select @Txn= @Txn+ 1
;g
Do you know why?
Thanks for your time!