I am trying to perform an unload using the hpunload utility. Since there is an option ZIIP 100 to enable ziip processing I was trying the same
Sysin dd *
Unload tablespace
Db2 force parallelism(,32,) ZIIP=100
Select * from table name
But I get the error
Unload tablestatement : unexpected keyword
Fatal syntax error before line 2 column 39
Please help in fixing this error . The job runs fine without the Ziip keyword but I want to know how to enable ziip
Thankyou in advance
Enable ziip processing for hpunload
-
- Posts: 3
- Joined: Mon Oct 05, 2020 7:42 pm
- Skillset: Db2,cobol ,jcl
- Referer: Google search
-
- Global moderator
- Posts: 3720
- Joined: Sat Dec 19, 2009 8:32 pm
- Skillset: Systems programming, SAS, COBOL, CICS, JCL, SMS, VSAM, etc.
- Referer: other forum
- Location: Dubuque, Iowa, USA
Re: Enable ziip processing for hpunload
Read the manual. Try what it says -- such as first use a GLOBAL OPTIONS and get your job working with ZIIP=100 in there; only once you've gotten that running should you try anything else. I found the manual online and from what I read (I've never used the product and we don't even have DB2 installed on our mainframe), you have placed ZIIP=100 in the wrong place (which is what the syntax error tells you).
Furthermore, have you contacted the vendor for support? If not, why not -- they should be your FIRST line of contact for any product issues!
Furthermore, have you contacted the vendor for support? If not, why not -- they should be your FIRST line of contact for any product issues!
-
- Posts: 3
- Joined: Mon Oct 05, 2020 7:42 pm
- Skillset: Db2,cobol ,jcl
- Referer: Google search
Re: Enable ziip processing for hpunload
Thankyou for your reply.
The problem is manual doesn’t give us the exact syntax. It just says place ZIIP=100 in sysin. I work as a contractor so I do not know how to contact the vendor directly.
Only think I am expecting from this group is help with the syntax
The problem is manual doesn’t give us the exact syntax. It just says place ZIIP=100 in sysin. I work as a contractor so I do not know how to contact the vendor directly.
Only think I am expecting from this group is help with the syntax
-
- Global moderator
- Posts: 3720
- Joined: Sat Dec 19, 2009 8:32 pm
- Skillset: Systems programming, SAS, COBOL, CICS, JCL, SMS, VSAM, etc.
- Referer: other forum
- Location: Dubuque, Iowa, USA
Re: Enable ziip processing for hpunload
The manual isn't as clear as it could be, that's for sure. However, try this:although it might be ZIIP 100 (without the equals sign) -- if the program complains about the equals sign, take it out.
Code: Select all
GLOBAL ZIIP=100 ;
Unload tablespace
Db2 force parallelism(,32,)
Select * from table name
-
- Posts: 3
- Joined: Mon Oct 05, 2020 7:42 pm
- Skillset: Db2,cobol ,jcl
- Referer: Google search
Re: Enable ziip processing for hpunload
Thankyou Robert
Global ziip 100; worked
Though it continued using the Core CPU and very less was offloaded to ziip. Looks like ziip 100 doesn’t actually mean 100% offload to ziip processors
Global ziip 100; worked
Though it continued using the Core CPU and very less was offloaded to ziip. Looks like ziip 100 doesn’t actually mean 100% offload to ziip processors
-
- Global moderator
- Posts: 3720
- Joined: Sat Dec 19, 2009 8:32 pm
- Skillset: Systems programming, SAS, COBOL, CICS, JCL, SMS, VSAM, etc.
- Referer: other forum
- Location: Dubuque, Iowa, USA
Re: Enable ziip processing for hpunload
No, the manual specifically states that ZIIP 100 means to offload 100% of the eligible workload to the zIIP processor. If the eligible workload is 5% of the total unload time, then you'll be dropping the CPU by 5% only.Looks like ziip 100 doesn’t actually mean 100% offload to ziip processors
-
- Similar Topics
- Replies
- Views
- Last post
-
- 2
- 2461
-
by brown7
View the latest post
Sun Nov 07, 2021 1:11 pm
-
- 10
- 4187
-
by chillmo
View the latest post
Thu Mar 13, 2025 12:01 am
-
-
Array processing and Table handling with packed decimal
by rogerstrycova » Tue Oct 26, 2021 3:55 pm » in IBM Cobol - 2
- 1704
-
by Robert Sample
View the latest post
Wed Oct 27, 2021 1:12 am
-