【发布时间】:2020-03-27 08:16:07
【问题描述】:
如果存在跨不同架构(SYS,用户定义架构)的存储过程,如果我们不提及架构名称,则默认调用哪个架构。
**Schema_1**
Sample_SP
**Schema_2**
Sample_SP
**SYS**
Sample_SP
execute Sample_SP
将执行哪个架构?
【问题讨论】:
-
select sys_context( 'userenv', 'current_schema' ) from dual;
标签: oracle stored-procedures schema