可以从sql plus运行oracle包而不将其编译到数据库中吗?
我有一个特定的oracle包文件(pbk和pks)。我想执行 sqlplus 包中的方法之一。我想这样做而不将包编译到 oracle 数据库中。
这可能吗?如果是这样怎么办?
I have a certain oracle package file (pbk with pks). I want to execute one of the methods in the package from sqlplus. I want to do so without compiling the package into the oracle database.
Is this possible ? if so how ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用匿名 PLSQL 块来运行某些内容而无需编译到数据库,但不编译到数据库的对象数据库中存在的内容(包、函数、存储过程、类型等)需要在 PLSQL 匿名块内声明。
这意味着您必须从包/等中复制要测试的方法,并将它们粘贴到 PLSQL 块中:
You can use an anonymous PLSQL block to run something without compiling to the database, but objects that don't exist in the database (package, function, stored procedure, type, etc) need to be declared within the PLSQL anonymous block.
That means you'll have to copy the method(s) you want to test from the package/etc, pasting them within the PLSQL block: