Here is a simple bit of T-SQL that will display the names of all the IDENTITY columns in a database:
SCHEMA_NAME,
nbsp; OBJECT_NAME( OBJECT_ID ) AS TABLE_NAME,
NAME AS COLUMN_NAME
FROM SYS.COLUMNS
WHERE COLUMNPROPERTY(OBJECT_ID, NAME, ‘IsIdentity’) = 1