Skip to Main Content

Endeca Experience Management

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.

How to insert only unique records in Apex

PS SPJun 3 2021

Hi All,
I am having following table in Oracle :
CREATE TABLE T_REDL_USECASE_TABLE_ITSP(
PKGID VARCHAR2(20), --SEQ
UCNO VARCHAR2(20), --SEQ
USERID VARCHAR2(10),
SELECTED_TABLE VARCHAR2(20),
SOURCE_SYSTEM VARCHAR2(20),
DOMAIN_NAME VARCHAR2(20),
STATUS VARCHAR2(20),
NAME VARCHAR2(20)
)

UCNO, PKGID together are primary composite key.
every time for the given UCNO, PKGID user can enter multiple tables, and these should be stored against given UCNO, PKGID.
I created sequenceno for PKGID and UCNO, it's inserting every time new records.
Can you please tell me how to achieve this? (Ex; shooping cart application)

Comments

Processing

Post Details

Added on Jun 3 2021
0 comments
290 views