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

Query to list packages bound under a plan


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

Active Member


Joined: 31 Jul 2009
Posts: 565
Location: Bangalore

PostPosted: Wed Jul 03, 2013 2:06 pm
Reply with quote

Hi,

Can you please help me with the query to list the packages bound under a particular plan?

Input should be plan name and it should list all the packages dependent on that plan with version number also.

Thanks in advance.
Back to top
View user's profile Send private message
xknight

Active User


Joined: 22 Jan 2008
Posts: 117
Location: Liberty city

PostPosted: Wed Jul 03, 2013 4:06 pm
Reply with quote

Hello,

Have you tried this

Code:
SELECT * FROM SYSIBM.SYSPACKAGE     
WHERE NAME = 'PGMNAME' WITH UR;;;;
Back to top
View user's profile Send private message
gylbharat

Active Member


Joined: 31 Jul 2009
Posts: 565
Location: Bangalore

PostPosted: Wed Jul 03, 2013 4:30 pm
Reply with quote

I want to get list by Plan name.

I tried the below query but its giving me -132 sqlcode, as I am not able to append '%' sign correctly.

Code:

  SELECT A.PLANNAME,
         B.COLLID,
         B.NAME,
         B.VERSION,
         B.CONTOKEN,
         B.TIMESTAMP,
         B.BINDTIME,
         B.VALID,
         B.OPERATIVE
  FROM SYSIBM.SYSPACKLIST A,SYSIBM.SYSPACKAGE B, (SELECT '%%' as col1 from sysibm.sysdummy1) C
  where A.PLANNAME = 'PLAN01'
  and B.COLLID LIKE CASE WHEN A.COLLID = '*' THEN c.col1 ELSE A.COLLID END
  and B.NAME   LIKE CASE WHEN A.NAME   = '*' THEN c.col1 ELSE A.NAME   END
   WITH UR;
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Wed Jul 03, 2013 4:30 pm
Reply with quote

SYSPACKLIST should give you the list of collections under a particular plan and with that you can search in the SYSPACKAGE.
Back to top
View user's profile Send private message
gylbharat

Active Member


Joined: 31 Jul 2009
Posts: 565
Location: Bangalore

PostPosted: Thu Jul 04, 2013 1:53 pm
Reply with quote

Did any one got a chance to review my post?
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10872
Location: italy

PostPosted: Thu Jul 04, 2013 2:38 pm
Reply with quote

DO NOT SOLICIT FOR ANSWERS ...

people replying do it on their own time and free of charge
In Other Words when and if they feel like
Back to top
View user's profile Send private message
sushanth bobby

Senior Member


Joined: 29 Jul 2008
Posts: 1020
Location: India

PostPosted: Thu Jul 04, 2013 3:26 pm
Reply with quote

Gylbharat 183 views and going, meaning 183+ people have reviewed your post so far.

Check the below query
Code:
SELECT A.NAME, B.COLLID, C.NAME,C.VERSION                       
FROM SYSIBM.SYSPLAN A, SYSIBM.SYSPACKLIST B, SYSIBM.SYSPACKAGE C
WHERE A.NAME='GQIBAT'                                           
AND A.NAME = B.PLANNAME                                         
AND B.COLLID = C.COLLID                                         


Thanks,
Sushanth
Back to top
View user's profile Send private message
gylbharat

Active Member


Joined: 31 Jul 2009
Posts: 565
Location: Bangalore

PostPosted: Thu Jul 04, 2013 5:58 pm
Reply with quote

Thanks Sushanth icon_smile.gif works very well...

I was trying the complicated way icon_sad.gif
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 RC query -Time column CA Products 3
No new posts How to create a list of SAR jobs with... CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
Search our Forums:

Back to Top