Skip to content

Commit 08ba0d7

Browse files
authored
WMS ID#11823 - ADB@GCP - Get Started with Oracle Database@Google Cloud (#440)
* First draft * First draft * Update manifest.json * Update intro.md * Update manifest.json * Update intro.md * Update manifest.json * First draft * First draft * First draft * First draft * First draft * First draft * First draft * First draft * First draft * First draft * First draft * Initial Draft * Initial draft * Initial Draft * Initial Draft * Initial Draft * Initial Draft * Initial Draft * ODBG Network * Latest update * Gemini Flash 2.5 * ODBG Network * Update manifest.json * Create adb-provisioning-databases-odbg.md * Update adb-provisioning-databases.md
1 parent 8ec56c7 commit 08ba0d7

File tree

2 files changed

+137
-5
lines changed

2 files changed

+137
-5
lines changed
Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
2+
# Provisioning Autonomous Database
3+
4+
## Introduction
5+
6+
This lab walks you through the steps to provision Autonomous Database.
7+
8+
Estimated Time: 10 minutes
9+
10+
### Objectives
11+
12+
As a database user, DBA or application developer:
13+
14+
1. Provision an ODBG Network
15+
2. Rapidly deploy an Autonomous Transaction Processing databases.
16+
17+
### Required Artifacts
18+
19+
- A Google Cloud account with a pre-configured Virtual Private Cloud (VPC) Network.
20+
21+
## Task 1: Create an ODBG Network
22+
23+
In this section, you will create an ODBG Network. **ODBG networks** provide secure and private connectivity to your Oracle Database resources, giving you control over how they connect and communicate.
24+
25+
1. Login to Google Cloud Console (console.cloud.google.com) and search for **Oracle Database** in the **Search Bar** on the top of the page. Click on **Oracle Database@Google Cloud**.
26+
27+
![Search Bar](./images/adb-search.png " ")
28+
29+
- Click **ODBG network** from the left menu.
30+
31+
![ODBG Network](./images/odbg-network-pane.png " ")
32+
33+
- Click **Create** on the ODBG network page.
34+
35+
![ODBG Network](./images/odbg-network-create.png " ")
36+
37+
- This will bring up the **Create ODBG network** screen where you specify the configuration of the ODBG network.
38+
39+
- Enter the following for **ODBG network**:
40+
41+
* **Associated network** - app-network
42+
* **Region** - us-east4
43+
* **ODBG network name** - odbg-network
44+
45+
Click **Create**.
46+
47+
![ODBG Network](./images/create-odbg-network.png " ")
48+
49+
- On the **ODBG network** page click on the ODBG network that we just created **odbg-network**.
50+
51+
![ODBG Network](./images/odbg-network-main.png " ")
52+
53+
- On the **ODBG network details** page click **Create** to create a Subnet.
54+
55+
![ODBG Network](./images/odbg-network-subnet-create.png " ")
56+
57+
- Enter the following for **ODBG subnet**:
58+
59+
* **Subnet name** - db-subnet
60+
* **Subnet range** - 10.2.0.0/24
61+
* **Subnet type** - Client
62+
63+
Click **Create**.
64+
65+
![ODBG Network](./images/create-odbg-subnet.png " ")
66+
67+
- On the **ODBG network details** page, verify the details of the ODBG Network and confirm the **Status** of subnet **db-subnet** is set to **Available**.
68+
69+
![ODBG Network](./images/odbg-network-details.png " ")
70+
71+
## Task 2: Create Autonomous Database
72+
73+
In this section, you will be provisioning an Autonomous Database using the Google Cloud Console.
74+
75+
1. Login to Google Cloud Console (console.cloud.google.com) and search for **Oracle Database** in the **Search Bar** on the top of the page. Click on **Oracle Database@Google Cloud**.
76+
77+
![Search Bar](./images/adb-search.png " ")
78+
79+
- Click **Autonomous Database** from the left menu.
80+
81+
![ADB Menu](./images/adb-menu.png " ")
82+
83+
- Click **Create** on the Autonomous Database details page.
84+
85+
![Create ADB](./images/adb-create.png " ")
86+
87+
- This will bring up the **Create an Autonomous Database** screen where you specify the configuration of the database.
88+
89+
- Enter the following for **Instance details**:
90+
91+
* **Instance ID** - adb-gcp
92+
* **Database name** - adbgcp
93+
* **Database display name** - Autonomous-Database-GCP
94+
* **Region** - us-east4
95+
96+
![ADB Instance Details](./images/adb-instance-details.png " ")
97+
98+
- Select **Transaction Processing** for **Workload configuration**
99+
100+
![ADB Instance Details](./images/adb-workload.png " ")
101+
102+
- Leave all defaults for **Database configuration**
103+
104+
![ADB Instance Details](./images/adb-database-config.png " ")
105+
106+
- Enter the password for admin user under **Administrator credentials**
107+
108+
![ADB Instance Details](./images/adb-credentials.png " ")
109+
110+
- Under the **Networking** section, select **Private endpoint access only** for **Access type**.
111+
112+
- For **Private endpoint**, enter the following:
113+
114+
* **Network project** - Select the default project name for the VPC network
115+
* **ODBG Network** - odbg-network
116+
* **Client subnet** - db-subnet (10.2.0.0/24)
117+
118+
![ADB Instance Details](./images/adb-network.png " ")
119+
120+
- Leave the rest as defaults and click **CREATE** to create the Autonomous Database.
121+
122+
![ADB Instance Details](./images/adb-default-create.png " ")
123+
124+
- Post creation the Autonomous Database will appear on the **Autonomous Database** page.
125+
126+
![Autonomous Database](./images/adb-post-create.png " ")
127+
128+
You may now **proceed to the next lab**.
129+
130+
## Acknowledgements
131+
132+
*All Done! You have successfully deployed your Autonomous Database instance and is available for use now.*
133+
134+
- **Authors/Contributors** - Vivek Verma, Master Principal Cloud Architect, North America Cloud Engineering
135+
136+
- **Last Updated By/Date** - Vivek Verma, July 2025

adb-gcp/adb-provisioning-databases/adb-provisioning-databases.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
21
# Provisioning Autonomous Database
32

43
## Introduction
54

65
This lab walks you through the steps to provision Autonomous Database.
7-
86
Estimated Time: 10 minutes
97

108
### Objectives
@@ -87,7 +85,6 @@ In this section, you will be provisioning an Autonomous Database using the Googl
8785
- This will bring up the **Create an Autonomous Database** screen where you specify the configuration of the database.
8886

8987
- Enter the following for **Instance details**:
90-
9188
* **Instance ID** - adb-gcp
9289
* **Database name** - adbgcp
9390
* **Database display name** - Autonomous-Database-GCP
@@ -129,8 +126,7 @@ You may now **proceed to the next lab**.
129126

130127
## Acknowledgements
131128

132-
*All Done! You have successfully deployed your Autonomous Database instance and is available for use now.*
129+
*All Done! You have successfully deployed your Autonomous Database instance and is available for use now.*
133130

134131
- **Authors/Contributors** - Vivek Verma, Master Principal Cloud Architect, North America Cloud Engineering
135-
136132
- **Last Updated By/Date** - Vivek Verma, July 2025

0 commit comments

Comments
 (0)