Hello,
I have got one sql command which has got several "go" commands. I wan to
1. Remove go commands
2. And create separate array elements whereever go was found.
For. e.g.
SQL1
SQL2
go
SQL3
go
SQL 4
SQL 5
SQL 6
go
then the output would be
@arrray = { "sql1 sql2", "sql3", "sql 4 sql5 sql6"};
Start Free Trial