IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How to fine primary key of the table in DB2....


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
venkata.bellala

New User


Joined: 11 Mar 2005
Posts: 4

PostPosted: Wed May 18, 2005 6:21 pm
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
MGIndaco

Active User


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

PostPosted: Wed May 18, 2005 7:36 pm
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
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
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Multiple table unload using INZUTILB DB2 2
No new posts Check data with Exception Table DB2 0
No new posts Dynamically pass table name to a sele... DB2 2
Search our Forums:

Back to Top