APEX 与 SQL 开发人员的查询结果不同
Query result different in APEX vs SQL Developer
我的情况很奇怪,我真的不知道是什么问题。
我在 apex 和 sql 开发人员之间有不同的查询结果。
架构在 12c 数据库上是相同的。
有什么建议吗?
谢谢
已解决。
在一个调用函数中,我们使用 USER 进行审计,用户名的审计列为 6 个字符。
> So in :
> - SQL DEV : USER WAS returning the schema name with 6 digits, which is correct
> - IN Apex : USER Was ANONYMOUS , an exception was catch so we did not know where the problem is.
I just changed this with nvl(v('APP_USER'),USER) to solve the issue.
感谢您的帮助。
我的情况很奇怪,我真的不知道是什么问题。 我在 apex 和 sql 开发人员之间有不同的查询结果。 架构在 12c 数据库上是相同的。
有什么建议吗?
谢谢
已解决。
在一个调用函数中,我们使用 USER 进行审计,用户名的审计列为 6 个字符。
> So in :
> - SQL DEV : USER WAS returning the schema name with 6 digits, which is correct
> - IN Apex : USER Was ANONYMOUS , an exception was catch so we did not know where the problem is.
I just changed this with nvl(v('APP_USER'),USER) to solve the issue.
感谢您的帮助。