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

How to know the table names used in a particular program


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

New User


Joined: 06 Mar 2006
Posts: 50
Location: PUNE

PostPosted: Mon Mar 06, 2006 6:39 pm
Reply with quote

I want to know what are all tables used in a particular program.

Using TSO DB2LIST , it will not give table names that r used in includes ?


Thanks in advance
ANAND[/b]
Back to top
View user's profile Send private message
amitava
Warnings : 1

Active User


Joined: 30 Oct 2005
Posts: 186
Location: India

PostPosted: Tue Mar 07, 2006 10:03 am
Reply with quote

Hi Anand87,
Look what ur requirement is that can not be solved by a command(I think so). So the way to meet ur requirement is to code a REXX routine which will go through each program and it will find out the tables used in that program.
If you need the code, I can send u.
Back to top
View user's profile Send private message
ragshere

New User


Joined: 20 Dec 2004
Posts: 70

PostPosted: Tue Mar 07, 2006 6:56 pm
Reply with quote

Hi Anand,

use this below query for getting the tables/views/aliases using in a program.

If you are using packages

select bname from sysibm.syspackdep
where dname= <program name>
and bqualifier=<db2 owner of the tables>

Here you can comment out last condition if needed.

If you are not using packages, use SYSIBM.SYSPLANDEP instead of SYSIBM.SYSPACKDEP.

If you get any errors, do let me know.

Thanks
Rags
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 Using API Gateway from CICS program CICS 0
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
Search our Forums:

Back to Top