vote up 2 vote down star
1

I want to create a list of columns in SQL Server 2005 that have identity columns and their corresponding table in T-SQL. Any ideas?

Results would be something like:

TableName, ColumnName

flag

6 Answers

vote up 4 vote down check

Another potential way to do this for SQL Server, which has less reliance on the system tables (which are subject to change, version to version) is to use the INFORMATION_SCHEMA views:

select COLUMN_NAME, TABLE_NAME
from INFORMATION_SCHEMA.COLUMNS
where TABLE_SCHEMA = 'dbo'
and COLUMNPROPERTY(object_id(TABLE_NAME), COLUMN_NAME, 'IsIdentity') = 1
order by TABLE_NAME
link|flag
vote up 0 vote down

Another way (for 2000 / 2005):

IF ((SELECT OBJECTPROPERTY( OBJECT_ID(N'table_name_here'), 'TableHasIdentity')) = 1)
    PRINT 'Yes'
ELSE
    PRINT 'No'
link|flag
vote up 0 vote down

This query seems to do the trick:

SELECT 
    sys.objects.name AS table_name, 
    sys.columns.name AS column_name
FROM sys.columns JOIN sys.objects 
    ON sys.columns.object_id=sys.objects.object_id
WHERE 
    sys.columns.is_identity=1
    AND
    sys.objects.type in (N'U')
link|flag
vote up 0 vote down

I think this works for SQL 2000:

SELECT 
    CASE WHEN C.autoval IS NOT NULL THEN
    	'Identity'
    ELSE
    	'Not Identity'
    AND
FROM
    sysobjects O
INNER JOIN
    syscolumns C
ON
    O.id = C.id
WHERE
    O.NAME = @TableName
AND
    C.NAME = @ColumnName
link|flag
I don't know what autoval does, but it's NULL for all my identity fields. The SQL 2000 code I have that works is where colstat & 1 = 1 I'm not sure where that code came from (it's about 5 years old), but my comment says that a bitmask is necessary. But colstat = 1 for my identities. – kcrumley Sep 17 '08 at 21:27
hmm... i used status & 128 = 128 to determine my identities :-P – Brimstedt Nov 17 at 13:17
vote up 1 vote down

In SQL 2005:

select object_name(object_id), name
from sys.columns
where is_identity = 1
link|flag
vote up 1 vote down

sys.columns.is_identity = 1

e.g.,

select o.name, c.name
from sys.objects o inner join sys.columns c on o.object_id = c.object_id
where c.is_identity = 1
link|flag
That's exactly what I was looking for. thanks! – Kevin Dente Sep 17 '08 at 21:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.