I am trying to change the current schema of users using the
ALTER SESSION SET CURRENT_SCHEMA =
This works when executed directly through SQL Plus, however when it is either called from a procedure or trigger it doesn't work.... using the code below
execute immediate
'alter session set current_schema =<a schema>';
Is this a bug or am I doing something wrong?
Thanks
Chumpy
ALTER SESSION SET CURRENT_SCHEMA =
This works when executed directly through SQL Plus, however when it is either called from a procedure or trigger it doesn't work.... using the code below
execute immediate
'alter session set current_schema =<a schema>';
Is this a bug or am I doing something wrong?
Thanks
Chumpy