If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > Table dependecies

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-30-10, 02:54
conrad@ao.co.za conrad@ao.co.za is offline
Registered User
 
Join Date: Jul 2010
Posts: 4
Table dependecies

Hi

I want to see what is the dependencies on some tables in a DB2 database.
I specificaly want to see which stored procedures are dependent on a table.

thanks
Reply With Quote
  #2 (permalink)  
Old 07-30-10, 08:16
ARWinner ARWinner is offline
Registered User
 
Join Date: Jan 2003
Posts: 3,575
Look in syscat.routinedep.

Andy
Reply With Quote
  #3 (permalink)  
Old 07-30-10, 08:18
conrad@ao.co.za conrad@ao.co.za is offline
Registered User
 
Join Date: Jul 2010
Posts: 4
Table dependecies

Select r.ROUTINESCHEMA, r.ROUTINENAME,r.routinetype,r.specificname,D.BName ,D.BType,pgd.bname
from syscat.routineDEP D,SYSCAT.ROUTINES R, syscat.PACKAGEDEP pgd
where d.SPECIFICNAME = R.specificname and ROUTINETYPE = 'P'
and d.BNAME = pgd.PKGNAME and pgd.BTYPE = 'T'
fetch first 20000 rows only

can anybody tell me if I GOT it
Reply With Quote
  #4 (permalink)  
Old 07-30-10, 08:20
conrad@ao.co.za conrad@ao.co.za is offline
Registered User
 
Join Date: Jul 2010
Posts: 4
Table dependecies

Thanks Winner, is that why your are called Winner,
I have just posted what I think the solution is, maybe you can check if I am a winner as well
Reply With Quote
  #5 (permalink)  
Old 07-30-10, 08:26
ARWinner ARWinner is offline
Registered User
 
Join Date: Jan 2003
Posts: 3,575
I am a Winner because that is my actual name. To see what Stored Procedures are dependent on a table, you only need syscat.routinedep and syscat.routines.

Andy
Reply With Quote
  #6 (permalink)  
Old 07-30-10, 08:28
conrad@ao.co.za conrad@ao.co.za is offline
Registered User
 
Join Date: Jul 2010
Posts: 4
Table dependecies

Thanks for your help
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On