Close SQLCL window off after executing 2 scripts in parallel from a .bat file

88 Views Asked by At

I have the following .bat file that calls 2 sql scripts.

start C:\sqlcl-latest\sqlcl\bin\sql javi/pwd@tnsname @"mypath1"
start C:\sqlcl-latest\sqlcl\bin\sql javi/pwd@tnsname @"mypath2"

However, when I execute this, the SQLCL windows that are opened in parallel are not closed when the execution ends. What can I add to close them off if no error is raised during the executions?

0

There are 0 best solutions below