If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Can anyone tell me where the next value for an identity column is held? I can't find it anywhere in the catalog. There are a lot of fields that are related to it but I cannot find where the value is kept.
The next value isnot stored in any catalog. It is in the table definition itself from where you have to decide the last value of the identity column and what would be its next increment.
Like : in the DDL>
"col1" integer generated always as identity (start with 100 increment by 1)