Database Administrators can now create database deployments that use Oracle Database 12c Release 2 (12.2) to host an Oracle Real Application Clusters (RAC) database.
Showing posts with label DBCS. Show all posts
Showing posts with label DBCS. Show all posts
Friday, January 13, 2017
Monday, December 12, 2016
Cloud Stack Manager Console
See this tutorial
Sunday, December 11, 2016
Saturday, November 5, 2016
Saturday, July 30, 2016
Database Deployment Using a Cloud Backup
DBAs can now create an Oracle Database Cloud deployment whose database is taken from a cloud backup.
More information:
More information:
Friday, July 29, 2016
DBCS Snapshot
These snapshots can be used to create database deployments quickly because their storage is linked to the snapshot’s storage using “copy on write” technology provided by Oracle Compute Cloud Service.
Wednesday, June 15, 2016
Oracle Data Guard configuration
With June release, two options for Oracle Data Guard configuration are now available!
High Availability
The primary and standby database are automatically placed in different availability domains to provide isolation at the infrastructure level.
Disaster Recovery
The primary and standby database are automatically placed in different data centers to provide isolation at the infrastructure level and geographical separation to provide availability in the event of catastrophic events.
High Availability
The primary and standby database are automatically placed in different availability domains to provide isolation at the infrastructure level.
Disaster Recovery
The primary and standby database are automatically placed in different data centers to provide isolation at the infrastructure level and geographical separation to provide availability in the event of catastrophic events.
Tuesday, June 7, 2016
Create DBCS Instance using REST API
Since my previous post, REST API changed !
The following shows how to create an Oracle Database Cloud Service instance 12g using the REST API:
Documentation:
https://docs.oracle.com/cloud/latest/dbcs_dbaas/CSDBR/op-paas-service-dbcs-api-v1.1-instances-%7BidentityDomainId%7D-post.html#examples
Command:
curl --include --request POST --cacert "D:\Distribs\cacert.pem" --user "user:my_password" --header "X-ID-TENANT-NAME:my_identity_domain" --header "Content-Type:application/json" --data "@D:\OPC_Demo\createMyDB.json" https://dbcs.emea.oraclecloud.com/paas/service/dbcs/api/v1.1/instances/my_identity_domain
Result
createMyDB.json file :
{
"serviceName": "DB12RESTDemo",
"version": "12.1.0.2",
"level": "PAAS",
"edition": "EE",
"subscriptionType": "MONTHLY",
"description": "VM Created using REST API",
"shape": "oc3",
"vmPublicKeyText": "ssh-rsa AAAAB3NzaKvGXmw== rsa-key-20150105",
"parameters": [
{
"type": "db",
"usableStorage": "15",
"adminPassword": "Manager12#",
"sid": "ORCL",
"pdb": "PDB1",
"failoverDatabase": "no",
"backupDestination": "NONE"
}
]
}
}}
The following shows how to create an Oracle Database Cloud Service instance 12g using the REST API:
Documentation:
https://docs.oracle.com/cloud/latest/dbcs_dbaas/CSDBR/op-paas-service-dbcs-api-v1.1-instances-%7BidentityDomainId%7D-post.html#examples
Command:
curl --include --request POST --cacert "D:\Distribs\cacert.pem" --user "user:my_password" --header "X-ID-TENANT-NAME:my_identity_domain" --header "Content-Type:application/json" --data "@D:\OPC_Demo\createMyDB.json" https://dbcs.emea.oraclecloud.com/paas/service/dbcs/api/v1.1/instances/my_identity_domain
Result
createMyDB.json file :
{
"serviceName": "DB12RESTDemo",
"version": "12.1.0.2",
"level": "PAAS",
"edition": "EE",
"subscriptionType": "MONTHLY",
"description": "VM Created using REST API",
"shape": "oc3",
"vmPublicKeyText": "ssh-rsa AAAAB3NzaKvGXmw== rsa-key-20150105",
"parameters": [
{
"type": "db",
"usableStorage": "15",
"adminPassword": "Manager12#",
"sid": "ORCL",
"pdb": "PDB1",
"failoverDatabase": "no",
"backupDestination": "NONE"
}
]
}
}}
Friday, May 20, 2016
Wednesday, May 11, 2016
Database Backup & Recovery Configuration
In the Backup and Recovery Configuration section, DBAs choose a backup option for the database deployment.
A new backup destination is now available : Cloud Storage Only
With this option, backups are configured to be created automatically and stored on an Oracle Storage Cloud Service container only.
A new backup destination is now available : Cloud Storage Only
With this option, backups are configured to be created automatically and stored on an Oracle Storage Cloud Service container only.
Tuesday, May 10, 2016
Sunday, May 8, 2016
PaaS Command Line Interface
Check the documentation to install this tool.
Tuesday, May 3, 2016
Wednesday, March 30, 2016
VPN for Multitenant
More information :
- Oracle Website
- Documentation
Wednesday, March 9, 2016
Monday, January 25, 2016
Backup to Oracle Cloud using Enterprise Manager 13c
Wednesday, January 20, 2016
Monday, January 4, 2016
Sunday, January 3, 2016
Saturday, January 2, 2016
Subscribe to:
Posts (Atom)
provides option to add an SSH public key to the service instances.