Exadata Exascale Storage Vault

To create an Exascale Storage Vault, follow these steps.

  • Exascale Storage Vault creation is only available through the gcloud CLI.

  • Exascale Storage Vault creation is only available through the gcloud CLI.

  • You can create an Exascale Storage Vault in Google Cloud using the gcloud CLI.

    Prerequisites

    • Install gcloud CLI.
    • Configure gcloud CLI.
    • Create an Exadata Infrastructure using gcloud CLI.
    • You must have an Exadata Infrastructure running system software with Database Server version 25.2.3.0.0.250213.1 or later.
    • You must use Storage Server version 25.2.3.0.0.250213.1 or later.
    • You must use Oracle Grid Infrastructure version 26ai and Oracle AI Database version 26ai.

    Sample gcloud CLI Command

    
    gcloud auth login
    
    export PROJECT_NUMBER=<project-number>
    export REGION_ID=<region-id>
    export GCP_ORACLE_ZONE=<gcp-oracle-zone>
    export EXADATA_INFRASTRUCTURE_ID=<exadata-infrastructure-id>
    export EXASCALE_DB_STORAGE_VAULT_ID=<exascale-db-storage-vault-id>
    export DISPLAY_NAME=<display-name>
    export TOTAL_SIZE_GBS=<total-size-gbs>
    
    gcloud --project=$PROJECT_NUMBER oracle-database exascale-db-storage-vaults create \
      $EXASCALE_DB_STORAGE_VAULT_ID \
      --location=$REGION_ID \
      --gcp-oracle-zone=$GCP_ORACLE_ZONE \
      --exadata-infrastructure=projects/$PROJECT_NUMBER/locations/$REGION_ID/cloudExadataInfrastructures/$EXADATA_INFRASTRUCTURE_ID \
      --display-name=$DISPLAY_NAME \
      --exascale-db-storage-details-total-size-gbs=$TOTAL_SIZE_GBS

    Replace the following:

    • PROJECT_NUMBER: The number of your Google Cloud project where the Exascale Storage Vault will be created.
    • REGION_ID: The Google Cloud region where the Exascale Storage Vault will be created. For example, us-east4.
    • GCP_ORACLE_ZONE: The Oracle AI Database@Google Cloud zone where the resource will be created. For example, us-east4-a-r2.
    • EXADATA_INFRASTRUCTURE_ID: The ID of the Exadata Infrastructure associated with the Exascale Storage Vault.
    • EXASCALE_DB_STORAGE_VAULT_ID: The unique ID for the Exascale Storage Vault.
    • DISPLAY_NAME: A user-friendly display name for the Exascale Storage Vault.
    • TOTAL_SIZE_GBS: The total storage size, in GB, to allocate for the Exascale Storage Vault. For example, 4096.
  • Exascale Storage Vault creation is only available through the gcloud CLI.

  • Exascale Storage Vault creation is only available through the gcloud CLI.