Unable to Apply AD/TXK Delta 14 Patch: adgrants.sql Does Not Create EBS_SYSTEM Schema
Error:
While applying AD/TXK Delta 14 Patch on Oracle E-Business Suite 12.2.7, the script adgrants.sql
fails to create the required EBS_SYSTEM
schema. This leads to the following error:
Reason
The issue occurs because the Oracle profile in use has PASSWORD_VERIFY_FUNCTION
enabled, which prevents the creation of the EBS_SYSTEM
user when adgrants.sql
is executed.
Symptoms
@adgrants.sql APPS
fails with ORA-01917
adgrants.out
log does not include any mention of EBS_SYSTEM
creation- Execution appears to proceed, but silently skips the schema creation step
Example log (partial):
Solution
Step 1: Disable Password Verify Function
Connect to the PDB as SYS and run:
Replace
<your_profile_name>
with the profile assigned to the default users. This is oftenDEFAULT
orTESTPWD
.
Step 2: Re-run adgrants.sql
After successful execution, your adgrants.out
should now show:
Step 3: Re-enable Password Policy (if required)
If you need to enforce password verification again, reapply the policy:
ALTER PROFILE <your_profile_name> LIMIT PASSWORD_VERIFY_FUNCTION <function_name>;
Post a Comment
Post a Comment