If you wanted to check online patching is enabled or not from backend, run the below query as apps user.
sqlplus apps/apps
SQL> select decode(editions_enabled, 'Y','Yes','No') "Online Patching Enabled?"
from fnd_oracle_userid au, dba_users du
where au.oracle_username = du.username and au.read_only_flag = 'U';
Onl
---
Yes
No comments:
Post a Comment