Link to home
Start Free TrialLog in
Avatar of barx
barx

asked on

retrieving next identity values

This is not a very practical question, but I thought would be a good theoretical exercise.

What I want to do is retrieve the next available identity value for a given table, BEFORE AN INSERT OCCURS.  I was trying to write a generic stored procedure that you could supply the table name and the rest would be taken care of.

This idea first came to me while I was trying to find a work around, for a bit of code already written.  I have taken a different approach to the problem as this is not practical in a multi-user environment, but I would like to know if it is actually possible...

Looking forward to hearing a correct answer.
Avatar of Victor Spiridonov
Victor Spiridonov
Flag of Russian Federation image

The only way to do it is to insert value into the table, use @@IDENTITY variable to retrive inserted value, then delete inserted record and run DBCC CHECKINDENT to reset identity value to retrieved-1.
Avatar of Guy Hengel [angelIII / a3]
If you do this:

select max(rowid) from LogFile
select autoval from syscolumns where id = object_id('LogFile') and name = 'rowid'
           
-----------
24

(1 row(s) affected)

autoval                                
-----------------------------
0x18000000010000000100000082

(1 row(s) affected)

This leads to the conclusion that autoval contains the necessary information to find out the next value:
0x18 is the hex value for 24,
the following 00001 and 00001 correspond to the Seed and Interval settings. 82 indicates that it is an IDENTITY field.

Hope this helps

Avatar of barx
barx

ASKER

I need to retrieve the value before the insert occurs.

Thanx anyway
That is what my information gives the possibility too:
add 0x18 and 0x1 and this gives the result 0x19 (25)
This solution will need "some" code to do the computations, but it should work
Avatar of barx

ASKER

angelIII, thanx for explaining the autoval field, I had actually looked at that before but I had no idea what it was representing.

The only problem I have with your answer is that it appeared to work the 1st time I tried it, but after I inserted a few more records the '0x18' part of it didn't change.  From what you were saying I thought that the beginning of of that hex field should change as I insert more records but it appears that it doesn't.

Am I missing something you have said in your response, or does this happen to you aswell
Avatar of barx

ASKER

angelIII, thanx for explaining the autoval field, I had actually looked at that before but I had no idea what it was representing.

The only problem I have with your answer is that it appeared to work the 1st time I tried it, but after I inserted a few more records the '0x18' part of it didn't change.  From what you were saying I thought that the beginning of of that hex field should change as I insert more records but it appears that it doesn't.

Am I missing something you have said in your response, or does this happen to you aswell
I am not sure wether I understood your question correctly. Is it not possible for you to use a query like this to find out the next identity value?

select max(identitycol) + 1 from products

Here "1" should be substituted with the value of your identity increment

you can use the ident_incr function to find out the increment value.

crsankar:
unfortunately, your idea will not work in the following situations:
everytime the "last" rows are deleted, their ID's are not released to the Identity Counter!

So adding 3 row, deleting them (even inside a transaction) will increase the identity value of 3!

The proposal of spirinodov (DBCC CheckIdent) will not work neither, because DBCC does not take care of transactions...


Avatar of barx

ASKER

Adjusted points from 50 to 100
Avatar of barx

ASKER

I checked back at the same example I was toying with the other day and the '0x18' part has changed now.....

It appears to change periodically which is quite strange indeed.  Maybe there is another field that tracks the amount of inserts.  

If anyone can solve this mystery I will increase the points to 100.
ASKER CERTIFIED SOLUTION
Avatar of kpkp
kpkp
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of barx

ASKER

Thank you angelIII and kpkp, I would like to split the points 50/50 between you guys, but I am not sure how to do it.

Ask community support to split points, they will guide you
Community Support has reduced points from 100 to 50
Hello everyone,

Reducing points to one half to allow for split.

You can now accept one of the comments in this thread as an answer. To award the other Expert, you can create a new question in this topic area with a title of 'For ExpertName -- 10352216' using that Experts username.

Remember, the Accept Comment as Answer button is in the header of the comment.

For your convenience, you can use this link to create the new question:
https://www.experts-exchange.com/bin/NewQForm?ta=90

darinw
Customer Service
Oops. Made a mistake on the title of the new question - the number should be 10350313

darinw
Customer Service
If while a user is adding a new record, with this autoVal, what if another user adds a new record to the DB?