Task Abends with BGYSC0232E while Registering Objects in DBRC #139
Replies: 3 comments
-
|
Hi @rohan-zos-ansible, thanks for reaching out to us. Since your playbook task calls the In the mean time, re-running your playbook with verbosity might surface what's going wrong, |
Beta Was this translation helpful? Give feedback.
-
|
Thank you, also tried with -vvvv. But, seems same problem. I could see error message changed to "DBRC command(s) could not be processed. Please check input parameters." when I restored ims collection to 1.3.0 and upgraded zos_core to 1.10.0. |
Beta Was this translation helpful? Give feedback.
-
|
I am now able to troubleshoot the problem. DBICRT00 Now things looking good. :-) We can mark this thread resolved. But, it would be good if we can ger some relevant message since my batch job was working properly to do the same purpose. Thank you for this forum. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I get below error while running commands for DBRC - any suggestions
fatal: [imsa]: FAILED! => {"changed": false, "dbrc_output": [], "msg": "BGYSC0232E Child process did not complete correctly for DSPURX00.\n", "rc": 255, "unformatted_output": [""]}
If i run job for DBRC registration then it works.
Ansible code -
hosts: "{{ target_host | default('imsa') }}"
collections:
environment: "{{ environment_vars }}"
vars_files:
tasks:
ibm.ibm_zos_ims.ims_dbrc:
command:
- DELETE.DB DBD(DFSCD000)
- DELETE.DB DBD(DFSCX000)
- INIT.DB DBD(DFSCD000) TYPHALDB SHARELVL(3)
- INIT.PART DBD(DFSCD000) PART(DFSCD01) DSNPREFX({{ DFS_IMS_HLQGROUP }}.DFSCD000) KEYSTRNG(X'FF') GENMAX(3)
- INIT.DB DBD(DFSCX000) TYPHALDB SHARELVL(3)
- INIT.PART DBD(DFSCX000) PART(DFSCX01) DSNPREFX({{ DFS_IMS_HLQGROUP }}.DFSCX000) KEYSTRNG(X'FF') GENMAX(3)
- LIST.DB DBD(DFSCD000) DBDS
- LIST.DB DBD(DFSCX000) DBDS
steplib:
- "{{ DFS_IMS_HLQGROUP2 }}.SDFSRESL"
- BNB.IMSVS.R15.SDFSRESL
dbd_lib: "{{ DFS_IMS_HLQGROUP2 }}.DBDLIB"
recon1: "{{ DFS_AUTH_LIB_HLQ1 }}.{{ DFS_AUTH_LIB_HLQ2 }}.RECON1"
recon2: "{{ DFS_AUTH_LIB_HLQ1 }}.{{ DFS_AUTH_LIB_HLQ2 }}.RECON2"
recon3: "{{ DFS_AUTH_LIB_HLQ1 }}.{{ DFS_AUTH_LIB_HLQ2 }}.RECON3"
Beta Was this translation helpful? Give feedback.
All reactions