如何从单个文件编译多个存储过程?

时间:2013-06-08 20:29:10

标签: oracle stored-procedures plsql

使用.sql,您可以使用以下语言从多个.sql文件运行查询:@query.sql

你如何对Oracle做同样的事情?我想使用第六个文件从5个不同的文件中编译5个存储过程来获取5个过程。

谢谢!

1 个答案:

答案 0 :(得分:3)

@/path/main_script.sql:
START script_one.sql
START script_two.sql
START script_three.sql
START script_four.sql
START script_five.sql

OR

@/path/main_script.sql:
@@/path/script_one.sql
@@/path/script_two.sql
@@/path/script_three.sql
@@/path/script_four.sql
@@/path/script_five.sql