How can we get the highest ID number in an empty SQL table ?
e.g:
Assume we have a table with ten rows, but all of rows were deleted , now we wanna get the highest row's ID !!!

The below code throw an Exception because the table is empty :

var maxID = db.TableNames.Select(q => q.Id).Max();
link|improve this question

2  
You want the next automatically incrementing primary key, where there are no records currently existing in your dataset, correct? – George Oct 12 '11 at 13:06
Absolutely yes. – Mohammad Oct 12 '11 at 13:11
1  
It's a trap.... – RoboLover Oct 12 '11 at 13:11
I don't think you can implement with LINQ, but you can create a function and call that through LINQ. – AD.Net Oct 12 '11 at 13:18
@AD.Net : Could you please describe it more ? – Mohammad Oct 12 '11 at 13:21
show 1 more comment
feedback

5 Answers

up vote 4 down vote accepted

For SQL Server try the IDENT_CURRENT function.

Note that there can be gaps in identity value sequences because of failed transactions etc, so there is no guarantee that a row was ever committed with this value.

link|improve this answer
I'm not sure this functionality is exposed in any other manner. However, I would assume this would be a good time to set up a stored proc which could be exposed via your LINQ to SQL ERM. – George Oct 12 '11 at 13:09
I wanna implement it with LINQ – Mohammad Oct 12 '11 at 13:09
I have a question, isn't the automatically incremented primary key for an empty table 1?If it isn't, how does the system decide the next auto incremented id(for int type)? – RoboLover Oct 12 '11 at 13:20
@Ateş GÜRAL :By adding IDENT_SEED to IDENT_CURRENT/0 – sll Oct 12 '11 at 13:27
@sll Thanks sll. – RoboLover Oct 12 '11 at 13:28
show 2 more comments
feedback
 IList<int> values = new List<int> { 1, 2, 3, 4, 5 };
 IList<int> emptyValues = new List<int> { };

 int max = values.DefaultIfEmpty(Int32.MinValue)
                                    .Max();

 // do not throw exception
 int maxEmpty = emptyValues.DefaultIfEmpty(Int32.MinValue)
                           .Max();

// max == 5
// maxEmpty == Int32.MinValue

EDIT:

My answer can help you get rid of exception in case of empty table but not the next auto increment value. You can follow Joe's answer and wrap IDENT_CURRENT function into a new stored procedure GetIdentity than call it using LINQ

var nextIdent = (from a in db.GetIdentity("TableName")) + 1;
link|improve this answer
Should note that this approach is ONLY valid if you're not using an auto-incrementing column of some kind. – Tim Coker Oct 12 '11 at 13:12
Well, I wanna next automatically incrementing primary key, where there are no records currently existing in a dataset. Not Int32.MinValue – Mohammad Oct 12 '11 at 13:13
@Mohammad : you can not do this on client side, see Joe's answer for server side solution. My answer can help you get rid of exception in case of empty table but not next auto increment value – sll Oct 12 '11 at 13:14
May I ask why you're using "IList<T>" as type for values and emptyValues? (I'm new to C# and I'd simply use "List<T>") – wullxz Oct 12 '11 at 15:13
1  
@wullxz : in this aprticular example this does not give us any prefferences, this is already as a common practice for me. This called Interface-based programming, interfaces gives more flexibility in terms of abstraction, you can substitute one class by another when refferencing it by an interface (both should implement a common interface). See visualstudiomagazine.com/articles/2010/01/01/… – sll Oct 12 '11 at 15:36
show 1 more comment
feedback

If ID is an identity column, the following SQL will return what you're looking for. LINQ may not give you direct access to this function, in which case you'll need to run a simple DataReader.

USE DATABASENAME;
GO
DBCC CHECKIDENT ("TABLENAME", NORESEED);
GO
link|improve this answer
feedback

I don't know why you need to do that as it sound like you are trying to do something hacky Anyway if the table is empty why don't you reset the Identity counter(If the Integrity reference allows you to do that) :

ALTER TABLE MyTable ALTER COLUMN MyColumn INT IDENTITY (0, 1)
link|improve this answer
I wanna it to name an uploaded image according it's ID number in DB. – Mohammad Oct 12 '11 at 13:16
@Mohammad Insert it, read the value and then rename the file. You should probably mention that's what you are trying to do in your question. – Richard Dalton Oct 12 '11 at 13:20
I agree @Richard – Massimiliano Peluso Oct 12 '11 at 13:26
If you want to reset the identity counter in a table in SQL Server, it's better to use DBCC CHECKIDENT with the RESEED argument. msdn.microsoft.com/en-us/library/aa258817(v=sql.80).aspx – Joe Oct 12 '11 at 16:20
feedback

I don't know whether or not you are locked into your DB schema but this is a reason why people use GUIDs. You may consider looking into that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.