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/multitenant/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,14 +88,14 @@ Before you want to manage the life cycle of a PDB in a CDB using the Oracle DB O
88
88
89
89
Pluggable Database management operation is performed in the Container Database (CDB) and it includes create, clone, plug, unplug, delete, modify and map operations.
90
90
91
-
You cannot have an ORDS enabled schema in the container database. To perform the PDB lifecycle management operations, the default CDB administrator credentials must be defined by performing the below steps on the target CDB(s):
91
+
You cannot have an ORDS enabled schema in the container database. To perform the PDB lifecycle management operations, the default CDB administrator credentials must be defined by performing following steps on the target CDB(s):
92
92
93
93
Create the CDB administrator user and grant the required privileges. In this example, the user is `C##DBAPI_CDB_ADMIN`. However, any suitable common user name can be used.
94
94
95
95
```SQL
96
96
SQL> conn /as sysdba
97
97
98
-
-- Create the below users at the database level:
98
+
-- Create following users at the database level:
99
99
100
100
ALTER SESSION SET"_oracle_script"=true;
101
101
DROPUSER C##DBAPI_CDB_ADMIN cascade;
@@ -105,7 +105,7 @@ GRANT SYSDBA TO C##DBAPI_CDB_ADMIN CONTAINER = ALL;
105
105
GRANT CREATE SESSION TO C##DBAPI_CDB_ADMIN CONTAINER = ALL;
106
106
107
107
108
-
-- Verify the account status of the below usernames. They should not be in locked status:
108
+
-- Verify the account status of the following usernames. They should not be in locked status:
109
109
110
110
col username for a30
111
111
col account_status for a30
@@ -138,7 +138,7 @@ Please refer [here](./provisioning/ords_image.md) for the steps to build ORDS Do
138
138
kubectl apply -f cdb_secret.yaml
139
139
```
140
140
141
-
**Note:** In order to get the base64 encoded value for a password, please use the below command like below at the command prompt. The value you get is the base64 encoded value for that password string.
141
+
**Note:** In order to get the base64 encoded value for a password, please use the following command like below at the command prompt. The value you get is the base64 encoded value for that password string.
142
142
143
143
```bash
144
144
echo -n "<password to be encoded using base64>"| base64
0 commit comments