Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
How to fine primary key of the table in DB2....

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
venkata.bellala

New User


Joined: 11 Mar 2005
Posts: 4

PostPosted: Wed May 18, 2005 6:21 pm    Post subject: How to fine primary key of the table in DB2....
Reply with quote

Hi,

How to find out the primary key of any table.

Regards
Venkata
Back to top
View user's profile Send private message
References
MGIndaco

Moderator


Joined: 10 Mar 2005
Posts: 478
Location: Milan, Italy

PostPosted: Wed May 18, 2005 7:36 pm    Post subject:
Reply with quote

U can try reading this post:
http://ibmmainframes.com/post-193.html
And with a
Code:

select *
from sysibm.syskeys


to view all the keys.
Back to top
View user's profile Send private message
Girishm

New User


Joined: 09 Mar 2005
Posts: 35
Location: Mysore

PostPosted: Wed May 25, 2005 6:22 pm    Post subject:
Reply with quote

Hi,
1) get the indexes defined over the table first by using the foll query:
SELECT * FROM SYSIBM.SYSINDEXES WHERE TBNAME='TABLE_NAME'
2) by executing the following query you will come to know what are all the keys present in each indexes and the common column in all these indexes will be the primary key.
SELECT * FROM SYSIBM.SYSKEYS WHERE IXNAME='INDEX_NAME'

OR
You can also find the primary keys for any table using the PLATINUM of DB2 sub menu.

__________
GM
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1