If you need to get a list of tables and the IDENTITY field in each one, use the following query.
SELECT OBJECT_NAME(id) as TableName, name as ColumnName
FROM syscolumns
WHERE status = 0x80
An alternative way to find the IDENTITY property is to use the COLUMNPROPERTY.
SELECT OBJECT_NAME(id) as TableName, name as ColumnName
FROM syscolumns
WHERE COLUMNPROPERTY(id, name, 'IsIdentity') = 1