You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-source/spring/content/infrastructure/database/_index.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ The Oracle Backend for Spring Boot and Microservices uses the Oracle Database as
8
8
9
9
> **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).
10
10
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).
12
12
13
13
The following chart presents the options for the Metadata Database, based on the installation type:
14
14
@@ -55,6 +55,12 @@ GRANT UPDATE ANY TABLE TO OBAAS;
55
55
GRANT CREATE ANY SEQUENCE TO OBAAS;
56
56
GRANTSELECT ANY SEQUENCE TO OBAAS;
57
57
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;
58
64
-- Additional for PARSE
59
65
GRANT SODA_APP TO OBAAS WITH ADMIN OPTION;
60
66
GRANT CREATE TABLE TO OBAAS WITH ADMIN OPTION;
@@ -70,7 +76,7 @@ GRANT CREATE TABLE TO OBAAS WITH ADMIN OPTION;
70
76
71
77
1. Tick the "Bring Your Own Database" checkbox and, depending on the *Bring Your Own Database - Type*, provide the appropriate values.
72
78
73
-
### Autonomous Database - Shared (ADB-S)
79
+
### Autonomous Database - Serverless (ADB-S)
74
80
75
81
-`BYO ADB-S Compartment` : The compartment of the existing ADB-S.
76
82
-`Bring Your Own Database - Autonomous Database` : The ADB-S name (this will automatically translate the name to an OCID).
0 commit comments