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
Oracle Database@Azure brings Oracle's best databases - Exadata and Autonomous Database - to Microsoft Azure as a native Azure services. Modernize and deliver powerful new apps that leverage Oracle Database 23ai and Azure services:
7
+
* Build new cloud native apps using Azure services, such as Azure Kubernetes and Azure OpenAI, with Oracle Autonomous Database.
8
+
* Enhance existing apps with natural language and other generative AI capabilities.
9
+
* Quickly react to business demands using one converged, fully automated database that’s optimized for all workloads and data formats.
10
10
11
11
## Getting Started
12
+
*[Install the Azure CLI](https://learn.microsoft.com/en-us/cli/azure/)
13
+
*[Deploy a new Oracle Autonomous Database using the Azure CLI](azure-cli/deploy-adb.md)
14
+
* Get started with Select AI ([enable access](sql/select-ai-admin-enable.sql) | [samples](sql/select-ai-get-started.sql))
12
15
13
-
MISSING
16
+
<!--
14
17
15
18
### Prerequisites
16
-
17
19
MISSING
18
20
19
21
## Notes/Issues
20
-
21
22
MISSING
22
23
23
24
## URLs
24
-
25
25
* Nothing at this time
26
26
27
-
## Contributing
27
+
-->
28
28
29
+
## Contributing
29
30
<!-- If your project has specific contribution requirements, update the
30
31
CONTRIBUTING.md file to ensure those requirements are clearly explained. -->
31
32
@@ -38,11 +39,10 @@ Please consult the [security guide](./SECURITY.md) for our responsible security
38
39
vulnerability disclosure process.
39
40
40
41
## License
41
-
42
42
Copyright (c) 2024 Oracle and/or its affiliates.
43
43
44
44
Licensed under the Universal Permissive License (UPL), Version 1.0.
45
45
46
46
See [LICENSE](LICENSE.txt) for more details.
47
47
48
-
ORACLE AND ITS AFFILIATES DO NOT PROVIDE ANY WARRANTY WHATSOEVER, EXPRESS OR IMPLIED, FOR ANY SOFTWARE, MATERIAL OR CONTENT OF ANY KIND CONTAINED OR PRODUCED WITHIN THIS REPOSITORY, AND IN PARTICULAR SPECIFICALLY DISCLAIM ANY AND ALL IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. FURTHERMORE, ORACLE AND ITS AFFILIATES DO NOT REPRESENT THAT ANY CUSTOMARY SECURITY REVIEW HAS BEEN PERFORMED WITH RESPECT TO ANY SOFTWARE, MATERIAL OR CONTENT CONTAINED OR PRODUCED WITHIN THIS REPOSITORY. IN ADDITION, AND WITHOUT LIMITING THE FOREGOING, THIRD PARTIES MAY HAVE POSTED SOFTWARE, MATERIAL OR CONTENT TO THIS REPOSITORY WITHOUT ANY REVIEW. USE AT YOUR OWN RISK.
48
+
ORACLE AND ITS AFFILIATES DO NOT PROVIDE ANY WARRANTY WHATSOEVER, EXPRESS OR IMPLIED, FOR ANY SOFTWARE, MATERIAL OR CONTENT OF ANY KIND CONTAINED OR PRODUCED WITHIN THIS REPOSITORY, AND IN PARTICULAR SPECIFICALLY DISCLAIM ANY AND ALL IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. FURTHERMORE, ORACLE AND ITS AFFILIATES DO NOT REPRESENT THAT ANY CUSTOMARY SECURITY REVIEW HAS BEEN PERFORMED WITH RESPECT TO ANY SOFTWARE, MATERIAL OR CONTENT CONTAINED OR PRODUCED WITHIN THIS REPOSITORY. IN ADDITION, AND WITHOUT LIMITING THE FOREGOING, THIRD PARTIES MAY HAVE POSTED SOFTWARE, MATERIAL OR CONTENT TO THIS REPOSITORY WITHOUT ANY REVIEW. USE AT YOUR OWN RISK.
# Oracle Database@Azure: Create an Autonomous Database
2
+
The steps below show how to create an Autonomous Database using the Azure CLI. You will need to [install the Azure CLI](https://learn.microsoft.com/en-us/cli/azure/) prior to running thru this example.
3
+
4
+
Run the examples below at a command prompt.
5
+
6
+
> [!NOTE]
7
+
> See the [details for onboarding Autonomous Database](https://learn.microsoft.com/en-us/azure/oracle/oracle-db/onboard-oracle-database)
8
+
9
+
## Deploy your Autonomous Database
10
+
Start by logging into Azure:
11
+
```bash
12
+
az login
13
+
```
14
+
15
+
Edit the [config file](./config) based on your deployment. These variables will be used by the Azure CLI.
16
+
```bash
17
+
LOCATION="eastus"
18
+
RESOURCE_GROUP="resource-group-name-goes-here"
19
+
VNET_ID="vnet-resource-name-goes-here"
20
+
SUBNET_ID="subnet-resource-name-goes-here"
21
+
ADB_NAME="adb-name-goes-here"
22
+
```
23
+
The VNET and SUBNET IDs must be fully qualified IDs. For example:
After updating the config file, create a new Autonomous Database by running [`./deploy-adb.sh`](./deploy-adb.sh) from the command line. You can also modify other database properties by editing the deployment script.
28
+
29
+
The script will prompte you for the Autonomous Database **ADMIN** user password. Enter a complex password.
30
+
31
+
After a few minutes, review your newly created database:
32
+
```bash
33
+
az oracle-database autonomous-database show \
34
+
--autonomousdatabasename $ADB_NAME \
35
+
--resource-group $RESOURCE_GROUP
36
+
```
37
+
38
+
## Delete an Autonomous Database
39
+
You can run the following command to an Autonomous Database:
40
+
41
+
```bash
42
+
az oracle-database autonomous-database delete \
43
+
--autonomousdatabasename $ADB_NAME \
44
+
--resource-group $RESOURCE_GROUP \
45
+
--no-wait false
46
+
```
47
+
48
+
49
+
50
+
<hr>
51
+
Copyright (c) 2024 Oracle and/or its affiliates.<br>
52
+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
0 commit comments