Universal Installer   «Prev  Next»

Introduction to Oracle 23c & 23ai: What’s New for Admins

Oracle 23c and 23ai modernize database operations with cloud-first automation, AI-assisted administration, and a secure multitenant core. This lesson orients DBAs who are transitioning from on-prem/legacy toolsets (Universal Installer, DBCA-only thinking, Software Packager) to today’s OCI-centric workflows: automated provisioning, lifecycle management, upgrades, and observability.

Learning Objectives

Modern Deployment Models

Provisioning & Configuration: From “Install” to “Automate”

Replace manual installers with repeatable automation:

  1. OCI Console — fast, guided provisioning (networking, storage, backups).
  2. OCI CLI & REST APIs — scriptable provisioning and day-2 ops.
  3. Terraform & OCI Resource Manager — infrastructure as code for idempotent, versioned deployments.

Examples

Provision via OCI CLI (illustrative):

# Create a DB system (parameters abbreviated)
oci db system launch \
  --compartment-id ocid1.compartment.oc1..aaaa... \
  --availability-domain AD-1 \
  --shape "VM.Standard3.Flex" \
  --db-system-options "{ \"storageManagement\":\"LVM\" }" \
  --display-name "prod-db23c"

Terraform skeleton (illustrative):

provider "oci" {}

module "db_system" {
  source = "oracle-terraform-modules/db-system/oci"
  compartment_ocid = var.compartment_ocid
  db_edition       = "ENTERPRISE_EDITION_EXTREME_PERFORMANCE"
  shape            = "VM.Standard3.Flex"
  cpu_core_count   = 8
}

23c/23ai Platform Themes That Matter to DBAs

Parameter Management in 23c (Preview)

Static “init.ora” mindsets give way to policy-driven, dynamic configuration. Use CDB-level ALTER SYSTEM SET with inheritance to PDBs where appropriate, and override at PDB for workload needs. Gather stats with DBMS_STATS; let the CBO and adaptive features pick plans. (Deep-dive in Lesson 3.)

Upgrades & Migrations

Backup & Recovery (High Level)

Admin Checklist (Sanity Check)

Next lesson: Understanding Oracle Cloud Provisioning (Console, CLI, Terraform/Resource Manager) and how it replaces legacy installers.


SEMrush Software 1 SEMrush Banner 1