-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
T3 nomis release upgrade to db v11.2.1.1.230 (#363)
* Added releases until DB_V11.2.1.1.230 * ssm fix * fix * remove debug * fix * fix * fix * fix * fix * revert * fix * fix * fix * fix * fix * revert test --------- Co-authored-by: Dominic Robinson <[email protected]>
- Loading branch information
1 parent
227ce01
commit 98188f7
Showing
8 changed files
with
74 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
ssm_parameters_prefix: database | ||
stage: /u02/stage | ||
oracle_install_user: oracle | ||
oracle_install_group: oinstall | ||
db_ssm_passwords: | ||
db: | ||
parameter: "/oracle/database/{{ db_name }}/passwords" | ||
users: | ||
- sys: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
ansible/roles/oracle-restore-point/templates/create_restore_point.sql.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
spool {{ stage }}/{{ item }}_restore_point.log | ||
spool {{ stage }}/{{ db_name }}_restore_point.log | ||
create restore point {{ restore_point_name }} guarantee flashback database; | ||
exit | ||
exit |
4 changes: 2 additions & 2 deletions
4
ansible/roles/oracle-restore-point/templates/drop_restore_point.sql.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
spool {{ stage }}/{{ item }}_restore_point.log | ||
spool {{ stage }}/{{ db_name }}_restore_point.log | ||
drop restore point {{ restore_point_name }}; | ||
exit | ||
exit |