Oracle Core DBA vs Cloud Ops DBA
Oracle Core DBA
A Core DBA traditionally manages on-premises databases. Their toolset revolves around direct database administration, storage, networking, and operating system integration.
Common Tools Used by Core DBAs
- SQL*Plus / SQL Developer
- Running queries, PL/SQL scripts, schema management.
- Oracle Enterprise Manager (OEM / Cloud Control)
- Centralized monitoring and administration for multiple databases.
- RMAN (Recovery Manager)
- Backup and recovery operations.
- Data Pump (expdp/impdp)
- Data migration and export/import.
- Operating System Tools (Linux/Unix utilities)
top,vmstat,iostat,sarfor performance monitoring.- Shell scripts for automation.
- Grid Infrastructure / ASM tools
- For RAC, ASM, and clustering management.
- Listener Control (lsnrctl)
- Network listener configuration and troubleshooting.
- Performance Views and Reports
- AWR, ASH, ADDM,
v$views for tuning and monitoring.
- AWR, ASH, ADDM,
Cloud Ops DBA
A Cloud Ops DBA works in cloud-native or hybrid environments. They still use Oracle database tools, but the scope expands to cloud provider services, automation frameworks, and monitoring platforms.
Common Tools Used by Cloud Ops DBAs
- Cloud Provider Portals
- OCI Console (Oracle Cloud Infrastructure)
- AWS RDS Console
- Azure Portal
- Used for provisioning, scaling, patching, and monitoring cloud databases.
- Cloud CLI and SDKs
- OCI CLI (
oci db system list,oci db backup list) - AWS CLI (
aws rds describe-db-instances) - Azure CLI (
az sql db list)
- OCI CLI (
- Cloud-native Monitoring & Logging
- OCI Monitoring & Logging
- AWS CloudWatch
- Azure Monitor
- To track metrics like CPU, IOPS, storage, latency.
- Terraform / Ansible
- Infrastructure as Code (IaC) for automating database provisioning and configuration.
- Database-native Tools (Still relevant)
- SQL*Plus, SQL Developer, RMAN, Data Pump, OEM are still used inside cloud-hosted databases.
- Third-party Monitoring Tools
- Datadog, New Relic, Prometheus, Grafana (to integrate with cloud DB metrics).
- Networking and Security Tools
- Cloud IAM (Identity & Access Management)
- Cloud security groups, firewalls, encryption services.
- Automation & Scripting
- Shell/Python scripts interacting with cloud APIs and CLIs.
In Short
- Core DBA → Focuses on Oracle-native tools and OS-level monitoring.
- Cloud Ops DBA → Uses cloud-native tools (OCI, AWS, Azure) along with traditional Oracle tools, and relies heavily on automation and monitoring platforms.
No Comments