SELECT AUTOINC_SEED FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='TableName' AND COLUMN_NAME='ColumnName'
from Hamid's answer is fine if what you are looking for is the value of the seed identifier of the column (that is, what the first value of the identity column was or will be), but if you are looking for what the next value of the inserted row will be, this is the query you want to use :
SELECT AUTOINC_NEXT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='TableName' AND COLUMN_NAME='ColumnName'
source share