I have a table which has a primary key that get its value from a sequence in Oracle Database. Is there a way to say this to uniquery getting this sequence value? I searched for forum but I couldnt find any answer. for ex:
Code: Select all
Create Table Dummy
(
Field1 Number Primary Key,
Field2 Varchar2(10)
);
As I see, in options menu of uniquery, there are some options called, "Key Sequence" and "Sequence Mode" but there is no field info which will has the seq value.
ps: I also have to set roAfterInsert to true in refresh options. because of there is no value of primary key value, I got refresh failed X record found...
thanks.