View previous topic :: View next topic |
Author |
Message |
Mukunda Beginner
Joined: 11 Dec 2002 Posts: 46 Topics: 15
|
Posted: Wed Oct 08, 2003 1:40 pm Post subject: DB2 Query through syncsort |
|
|
I'm trying the experiment Syncsort's DB2 Query support (Z/OS rel 1.1) through this jcl
Code: | //SORT01 EXEC PGM=SORT,PARM='DB2=DBB0' *SUBSYSTEM
//STEPLIB DD DSN=DBB.W.DSNLOAD,DISP=SHR
//SORTDBIN DD *
SELECT CURRENT DATE FROM SYSIBM.SYSDUMMY1
/*
//SYSOUT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//* |
I'm getting this error (Abend U016)
Code: | WER468A DB2 QUERY SUPPORT ERROR: CANNOT OPEN PLAN |
Manual says
Insufficient resources were available for DB2 to process the open
request.
I'm not able to understand this message. How can I correct this? |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Wed Oct 08, 2003 4:17 pm Post subject: |
|
|
Mukunda,
Using syncsort along with DB2 unload utility is a new feature of Z/OS syncsort. Even though it is rolled out, Your DBA must bind the plan for syncsort. I guess your shop hasn't done that part. so co-ordinate with your sysprog and DBA to bind the plan for syncsort.
Hope this helps...
cheers
kolusu |
|
Back to top |
|
|
Mukunda Beginner
Joined: 11 Dec 2002 Posts: 46 Topics: 15
|
Posted: Thu Oct 09, 2003 1:08 pm Post subject: |
|
|
Thanks Kolusu. I'll do that. |
|
Back to top |
|
|
|
|