Reputation: 1954
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
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:
Upvotes: 3