Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

Commit

Permalink
Add merge patch to fix OLAP ORA-1792 error
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhollenberger committed Feb 9, 2016
1 parent f74e5ed commit 5fc194d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tasks/extract_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
owner: "{{ oracle_user }}"
group: "{{ oracle_group }}"
with_items: "{{ oneoff_patches[oracle_version]|default([]) }}"
when: "{{ oneoff_patches[oracle_version] }} is defined"
when: oneoff_patches[oracle_version] is defined
run_once: true

- name: Unzip oneoff patches (PSU version specific)
Expand Down
4 changes: 2 additions & 2 deletions tasks/pre_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
stat:
path: "{{ oracle_stage_install }}/{{ item.filename }}"
register: patch_st
with_items: "{{ oneoff_patches[oracle_version]|default([]) }}"
when: "{{ oneoff_patches[oracle_version] }} is defined"
with_items: "{{ oneoff_patches[oracle_version] | default([]) }}"
when: oneoff_patches[oracle_version] is defined

- name: Fail if missing one-off patches
fail: msg="Oops! Missing one-off patch {{ item.item.filename }}"
Expand Down
19 changes: 11 additions & 8 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,23 +53,26 @@ oneoff_patches:
12.1.0.2:
- patchid: 21091518
filename: p21091518_121020_Linux-x86-64.zip
# - patchid: 21800251 # only needed up to version 12.1.0.2.4
# filename: p21800251_121020_Linux-x86-64.zip
# from Things to Consider to Avoid Poor Performance or Wrong Results on 12.1.0.2 (Doc ID 2034610.1)
- patchid: 20879889
filename: p20879889_121020_Linux-x86-64.zip
# - patchid: 21821738 #Merge request for bugs 21821738 18485835
# filename: p21821738_121020_Linux-x86-64.zip

#PSU version specific patches
12.1.0.2.4:
- patchid: 13542050 #from MOS Note https://support.oracle.com/epmos/faces/DocContentDisplay?_afrLoop=383616185962642&id=2034610.1
filename: p13542050_121024_Linux-x86-64.zip

12.1.0.2.5:
- patchid: 13542050 #from MOS Note https://support.oracle.com/epmos/faces/DocContentDisplay?_afrLoop=383616185962642&id=2034610.1
filename: p13542050_121024_Linux-x86-64.zip
- patchid: 20807398
filename: p20807398_121025_Linux-x86-64.zip
- patchid: 21869620 #Merge request for bugs 19509982 20807398
filename: p21869620_121025_Linux-x86-64.zip

12.1.0.2.4:
- patchid: 13542050 #from MOS Note https://support.oracle.com/epmos/faces/DocContentDisplay?_afrLoop=383616185962642&id=2034610.1
filename: p13542050_121024_Linux-x86-64.zip
- patchid: 21800251 # only needed up to version 12.1.0.2.4
filename: p21800251_121020_Linux-x86-64.zip
- patchid: 21821738 #Merge request for bugs 21821738 18485835
filename: p21821738_121020_Linux-x86-64.zip

11.2.0.4.8:
- patchid: 17890099 # ORA-2072 AND ORA-2063 ON QUERY VIA DBLINK
Expand Down

0 comments on commit 5fc194d

Please sign in to comment.