IDENT_CURRENT function

IDENT_CURRENT 


This function returns the last identity value generated for a specified table or view. The last identity value generated can be for any session and any scope.



Syntax

IDENT_CURRENT( 'table_name' )


Arguments

table_name
Is the name of the table whose identity value is returned.   table_name is varchar, with no default.

Return Types

numeric(38,0)


Exceptions



  • Returns NULL on error or if a caller does not have permission to view the object.
  • In SQL Server, a user can only view the metadata of securables that the user owns or on which the user has been granted permission. This means that metadata-emitting, built-in functions such as IDENT_CURRENT may return NULL if the user does not have any permission on the object. For more information, see Metadata Visibility Configuration.



Remarks

IDENT_CURRENT is similar to the SQL Server 2000 identity functions SCOPE_IDENTITY and @@IDENTITY. All three functions return last-generated identity values. However, the scope and session on which last is defined in each of these functions differ:


  • IDENT_CURRENT returns the last identity value generated for a specific table in any session and any scope.
  • @@IDENTITY returns the last identity value generated for any table in the current session, across all scopes.
  • SCOPE_IDENTITY returns the last identity value generated for any table in the current session and the current scope.


When the IDENT_CURRENT value is NULL (because the table has never contained rows or has been truncated), the IDENT_CURRENT function returns the seed value.


Failed statements and transactions can change the current identity for a table and create gaps in the identity column values. The identity value is never rolled back even though the transaction that tried to insert the value into the table is not committed. For example, if an INSERT statement fails because of an IGNORE_DUP_KEY violation, the current identity value for the table is still incremented.


Be cautious about using IDENT_CURRENT to predict the next generated identity value. The actual generated value may be different from IDENT_CURRENT plus IDENT_INCR because of insertions performed by other sessions.


Examples:

A. Returning the last identity value generated for a specified table:
Following example returns the last identity value generated for the Person.Address table in the AdventureWorks2012 database.
USE AdventureWorks2012;
GO
SELECT IDENT_CURRENT ('Person.Address') AS Current_Identity;
GO

OR

Following example returns the last identity value generated for the College:
USE College;
GO
SELECT IDENT_CURRENT ('Student') AS Current_Identity;
GO
B. Comparing identity values returned by IDENT_CURRENT, @@IDENTITY and SCOPE_IDENTITY
The following example shows the different identity values that are returned by IDENT_CURRENT, @@IDENTITY, and SCOPE_IDENTITY.