Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Oracle Database 19c Installer [INS-20802] DB Configuration Assistant failed.

mamimaralAug 2 2022 — edited Aug 2 2022

On the 8th step of Oracle installation, I'm receiving the following 2 errors which I'll support with screenshots:
Oracle Database configuration - Failed
Oracle Database Configuration Assistant - Failed
If you know the knowledge to resolve this issue, please leave a comment down below, and If there is any further information needed, please let me know.
error.jpeg
Thanks.
Muhammed M.

Comments

fac586

APEX$ROW_STATUS is only relevant to rows in interactive grids and (historically) tabular forms. It is not supported on DML Form regions and so is returning null on the form page.
The form page process would need to use PK and/or :request values to determine which DML operation is to be performed.

Ceci Loveland

Thanks!
I changed my PK to be the app_id. For now, just to test, I removed all conditions and made it simply an update. I even tried setting the page number of the values, but the code basically never touches the table (with or without the page number). There's no error, nothing is updated though.
update PLP_PLUSLOANPROC_X
set PLP_USER_ID = :P3_PLP_USER_ID,
PLP_COMMENTS = :P3_PLP_COMMENTS,
PLP_COMPLETED_STATUS = :P3_PLP_COMPLETED_STATUS
where PLP_APP_ID = :P3_PLP_APP_ID;

I'm obviously misunderstanding something.

fac586

What is logged when the page is submitted in debug mode?

Ceci Loveland

I figured it out. It was a dumb mistake. I hadn't set the execution options to be "once per page visit" instead of per session.
Thank you!

1 - 4

Post Details

Added on Aug 2 2022
3 comments
1,172 views