Is there any way I get all column names and assoicated table names which has identity column set as generated always?

For I dentity columns I can simply use syscat.columns but how to fitler identity columns which has generated always vallue?

select identity, substr(tabname,1,30), substr(colname, 1, 30) from syscat.columns where tabschema='MYSCHEMA'"

From the above select list I wanted to filter only columns which uses generated values...

link|improve this question

40% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The online documentation for SYSCAT.COLUMNS. The two columns you're interested in are IDENTITY and GENERATED.

Your query will probably be something like:

SELECT TABNAME,COLNAME FROM SYSCAT.COLUMNS WHERE
IDENTITY='Y' AND GENERATED = 'A' AND TABSCHEMA='MYSCHEMA'
link|improve this answer
Shoot for got to describe sycat.columns. Thanks it worked like a charm. – Satesh Sep 19 '11 at 17:33
feedback

Your Answer

 
or
required, but never shown

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