I want to get current identity value of a specific table Like IDENT_CURRENT('table') in sql server
If you want to get a last identity inserted value for a particular table use the following statement:
select IDENT_CURRENT('tablename')
For example:
select IDENT_CURRENT('Employee')