| Author |
Determined identity key value
|
Sub swamy
Ranch Hand
Joined: Oct 02, 2002
Posts: 121
|
|
Is there any way (programmatically or otherwise) to determine the current value of identity key column in DB2 database. I cannot afford to insert new records in the table for this verification.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32830
|
|
|
select max(id) from my_table???
|
 |
Sub swamy
Ranch Hand
Joined: Oct 02, 2002
Posts: 121
|
|
|
When a data load is done - the max value of the identity key column and the identity key may not be the same. So a SELECT MAX() FROM TABLENAME may not always give the correct value.
|
 |
Scott Selikoff
Saloon Keeper
Joined: Oct 23, 2005
Posts: 3666
|
|
Off hand you can't. For example, let's say the ID is 5. Now, you insert a record incrementing it to 6. Immediately after the insert, you delete the record. In this case the current value is 6 but you've deleted the record so max will still return 5. Granted in most database systems its better to disable records by setting some "enable" field to OFF, rather than ever actually deleting data.
|
My Blog: Down Home Country Coding with Scott Selikoff
|
 |
 |
|
|
subject: Determined identity key value
|
|
|