Risposte:
Disclaimer: non conosco DB2.
Ho semplicemente cercato su Google con "definizione tabella 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';
puoi fare un db2look
, che ti darà i ddls per la tabella.
db2look -d db_name -e -x -z schema_name -t table_name
Questa è probabilmente l'opzione più semplice, poiché una chiave primaria è supportata da un indice corrispondente:
select COLNAMES from SYSIBM.SYSINDEXES where tbname = 'TABLE' and uniquerule = 'P';
Puoi anche eseguire una query sulla tabella del catalogo delle colonne:
select NAME from SYSIBM.SYSCOLUMNS where tbname = 'TABLE' and keyseq > 0 order by keyseq;