在一个 SQL 文件中创建多个过程?
我想在一个 SQL 文件中创建多个过程,即:
create or replace procedure pro1 as
begin
null;
end pro1;
create or replace procedure pro2 as
begin
null;
end pro2;
create or replace procedure pro3 as
begin
null;
end pro3;
这样做会引发错误:
错误(10,1):PLS-00103:遇到符号“CREATE”
我该怎么做?由于某些限制,无法选择创建包。
I want to create more than one procedure in a SQL file, ie:
create or replace procedure pro1 as
begin
null;
end pro1;
create or replace procedure pro2 as
begin
null;
end pro2;
create or replace procedure pro3 as
begin
null;
end pro3;
Doing this throws an error:
Error(10,1): PLS-00103: Encountered the symbol "CREATE"
How can I do this? Creating a package ins't an option due to some limitations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加 /
Add /