Respostas:
Isenção de responsabilidade: Eu não conheço o DB2.
Eu simplesmente os pesquisei com "definição de tabela db2".
SELECT *
FROM SYSIBM.SYSTABLES TAB,SYSIBM.SYSCOLUMNS COL
WHERE TAB.CREATOR = COL.TBCREATOR
AND TAB.CREATOR = 'xxxx'
AND TAB.NAME = 'xxxxxxxxxxxxx'
AND TAB.NAME = COL.TBNAME
AND TAB.TYPE = 'V' ( OR 'T' )
ORDER BY 1,2;
SELECT * FROM syscat.tabconst WHERE type = 'P';
você pode fazer um db2look
, que fornecerá os ddls para a tabela.
db2look -d db_name -e -x -z schema_name -t table_name
Essa é provavelmente a opção mais fácil, pois uma chave primária é suportada por um índice correspondente:
select COLNAMES from SYSIBM.SYSINDEXES where tbname = 'TABLE' and uniquerule = 'P';
Você também pode consultar a tabela de catálogo de colunas:
select NAME from SYSIBM.SYSCOLUMNS where tbname = 'TABLE' and keyseq > 0 order by keyseq;