Skip to content

Commit ef4b6c9

Browse files
committed
Addn'l AQ options
1 parent ead5194 commit ef4b6c9

File tree

1 file changed

+8
-2
lines changed
  • docs-source/spring/content/infrastructure/database

1 file changed

+8
-2
lines changed

docs-source/spring/content/infrastructure/database/_index.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Oracle Backend for Spring Boot and Microservices uses the Oracle Database as
88

99
> **NOTE:** Oracle recommends that you install an addition Container Database (CDB) and Pluggable Databases (PDBs) for your production applications inline with the Database-Per-Service pattern. This document will refer to these databases as the [**Application Database**](#application-databases).
1010
11-
By default, the Oracle Autonomous Database - Shared (ADB-S) is used for the **Metadata Database**, however, there are other options including Bring Your Own (BYO).
11+
By default, the Oracle Autonomous Database - Serverless (ADB-S) is used for the **Metadata Database**, however, there are other options including Bring Your Own (BYO).
1212

1313
The following chart presents the options for the Metadata Database, based on the installation type:
1414

@@ -55,6 +55,12 @@ GRANT UPDATE ANY TABLE TO OBAAS;
5555
GRANT CREATE ANY SEQUENCE TO OBAAS;
5656
GRANT SELECT ANY SEQUENCE TO OBAAS;
5757
GRANT CREATE ANY TRIGGER TO OBAAS;
58+
-- Additional Application
59+
GRANT AQ_USER_ROLE TO OBAAS WITH ADMIN OPTION;
60+
GRANT EXECUTE ON DBMS_AQ TO OBAAS WITH GRANT OPTION;
61+
GRANT EXECUTE ON DBMS_AQADM TO OBAAS WITH GRANT OPTION;
62+
GRANT EXECUTE ON DBMS_AQIN TO OBAAS WITH GRANT OPTION;
63+
GRANT EXECUTE ON DBMS_AQJMS_INTERNAL TO OBAAS WITH GRANT OPTION;
5864
-- Additional for PARSE
5965
GRANT SODA_APP TO OBAAS WITH ADMIN OPTION;
6066
GRANT CREATE TABLE TO OBAAS WITH ADMIN OPTION;
@@ -70,7 +76,7 @@ GRANT CREATE TABLE TO OBAAS WITH ADMIN OPTION;
7076

7177
1. Tick the "Bring Your Own Database" checkbox and, depending on the *Bring Your Own Database - Type*, provide the appropriate values.
7278

73-
### Autonomous Database - Shared (ADB-S)
79+
### Autonomous Database - Serverless (ADB-S)
7480

7581
- `BYO ADB-S Compartment` : The compartment of the existing ADB-S.
7682
- `Bring Your Own Database - Autonomous Database` : The ADB-S name (this will automatically translate the name to an OCID).

0 commit comments

Comments
 (0)