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

To know the table details


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

New User


Joined: 15 Jun 2007
Posts: 92
Location: bangalore

PostPosted: Wed Jun 02, 2010 6:28 pm
Reply with quote

I have some group of packages, and i want to know the tables related to that package. Can we write simple query for this ?? I am trying with sysibm.----- tables but i am not getting.
Back to top
View user's profile Send private message
sushanth bobby

Senior Member


Joined: 29 Jul 2008
Posts: 1020
Location: India

PostPosted: Wed Jun 02, 2010 10:44 pm
Reply with quote

Chandracdac,

You should be looking at SYSIBM.SYSPACKDEP table.

Code:
SELECT BQUALIFIER, BNAME,HEX(DCONTOKEN)   
FROM SYSIBM.SYSPACKDEP                     
WHERE DCOLLID='colletion-id' AND DNAME='package-name' 
AND BTYPE='T'                             


Thank You,
Sushanth
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