简体   繁体   中英

SQL plus running multiple queries

I have 12 queries to run, but can not run at the same time. I would like to start the first query, then as soon as it completes the next query begins, when it completes the third query starts and so on. Want this to be automatic. Each query writes a txt file. Thanks

Seems to me like you just have to create a script and call that script:

@query1.sql
@query2.sql
...

Or am I missing something?

将它们全部粘贴在1个文件中,并在GO语句之间进行操作。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM