Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

calling a package function from another schema

kcjimAug 22 2007 — edited Aug 22 2007
I've created a pl/sql package containing a procedure in the sys schema. What do i need to do to be able to call that procedure from within another schema, one called kcapps? Currently, from sql plus, i'm trying something like this:

execute row_level_security_pkg.set_app_operdefn('steve');

i've even tried to reference the schema name before the package, like this:
execute sys.row_level_security_pkg.set_app_operdefn('steve');

what do i need to do to be able to call this procedure which belongs to a package that lives in another schema? Thanks.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 19 2007
Added on Aug 22 2007
3 comments
2,430 views