View previous topic :: View next topic |
Author |
Message |
zefrim Beginner
Joined: 29 Jun 2006 Posts: 22 Topics: 19
|
Posted: Fri Mar 28, 2008 9:10 am Post subject: DB2 Z-os 8.1 - CUrrent Collection |
|
|
Hi All
Is it possible to determine what the environment is just my current PGM / Package Located . I mean the Current COllection
Thanks Zefrim |
|
Back to top |
|
|
RMi Beginner
Joined: 21 Jun 2006 Posts: 8 Topics: 0 Location: India
|
Posted: Wed Apr 02, 2008 5:08 am Post subject: |
|
|
Try this.
Code: |
EXEC SQL
SELECT CURRENT PACKAGESET
FROM SYSIBM.SYSDUMMY1
INTO :WS-PACKAGESET
END-EXEC.
77 WS-PACKAGESET PIC X(18 ).
|
Regards, |
|
Back to top |
|
|
|
|