EdHayes3
EdHayes3

Reputation: 1954

Oracle APEX - Stop Primary Key Default Value 't1000' on Page

I'm using Oracle APEX Page Designer. I have a master detail page. For both the master and the detail sections, the page defaults the value of the primary key to 't1000' every time I insert a new record. If I insert more that one new record, it increments the number.

I want the new records to be blank.

Upvotes: 3

Views: 6071

Answers (1)

Mónica Godoy
Mónica Godoy

Reputation: 381

To avoid t1000 in your Master Detail Page or Interactive Grid, you can use ROWID as primary key.

Take a look at this example:

ROWID as Primary Key

Upvotes: 3

Related Questions