Senior Oracle & Cloud DBA Real-World Databases • Cloud • Reliability • Careers LevelUp Careers Initiative
Monday, June 8, 2026
Oracle High CPU Usage: Causes and Fix in 19c
Monday, May 25, 2026
Standby Redo Logs Not Applying Oracle Data Guard Fix
Standby Redo Logs Not Applying in Oracle Data Guard: Complete Fix Guide
MRP process troubleshooting, SRL configuration, apply lag resolution, and parallel apply tuning from 15 years of production Oracle environments.
It was 2:41 AM. PagerDuty fires. The on-call message reads: "Data Guard apply lag 38 minutes and climbing." I SSH into the standby. ORA-16766 stares back at me from the alert log. A quick check of V$MANAGED_STANDBY confirms it -- MRP0 is gone. No standby redo logs are applying. The business had a 4-hour RPO commitment. We had maybe 90 minutes before the DBA team had a very uncomfortable conversation with the CTO.
Standby redo logs not applying in Oracle Data Guard is one of the highest-stress incidents a production DBA faces. It is also one of the most fixable -- if you know the exact diagnostic tree. In this post I am going to walk through every root cause I have encountered across 15 years of Oracle production work, the precise SQL to diagnose each one, and the fix you run to get apply moving again.
Monday, May 11, 2026
MRP Process Not Running in Data Guard: Fix in Oracle 19c
MRP Process Not Running in Data Guard? Fix It Step-by-Step (Oracle 19c)
Oracle Database: 19.18.0.0.0 Enterprise Edition • Primary: 2-Node RAC, 4.8 TB OLTP, 2,800 TPS
Standby: Physical Standby with Active Data Guard enabled
Protection Mode: Maximum Availability (SYNC/AFFIRM) • Broker: Data Guard Broker enabled
The monitoring alert arrived at 2:48 AM: "Standby apply lag crossing 90 minutes." I connected to DGMGRL immediately. SHOW CONFIGURATION confirmed it: the MRP process was not running on the standby. Every transaction committed on the primary for the past 90 minutes was sitting unprocessed in Standby Redo Logs, and the gap was growing by the second.
In my 15 years managing Oracle production environments, a stopped MRP process is one of the most common Data Guard incidents I have resolved. It is not complicated once you know which of the five root causes you are dealing with. The problem is that each cause has a completely different fix, and applying the wrong one wastes critical time.
This guide gives you the exact decision path, the diagnostic commands to identify your specific cause, and the precise fix for each scenario. In most cases the MRP process not running in Data Guard is resolved in under 5 minutes.
Monday, March 9, 2026
Oracle RAC Internals Explained: Cache Fusion and Cluster Design Lessons
Oracle RAC Internals Explained: Cache Fusion and Cluster Design Lessons
Oracle Database: 19.18.0.0.0 Enterprise Edition • Cluster: 4-Node Oracle RAC on Oracle Linux 8.7
Storage: Oracle ASM, 12 TB shared (Normal Redundancy) • DB Size: 8.2 TB (6.8 TB data + 1.4 TB indexes)
Workload: Mixed OLTP/Batch • Peak Load: 3,200 concurrent sessions, 2,400 TPS
Interconnect: Dual 10GbE bonded private network • Application: Financial transaction processing system
3:47 AM. Pager alert: "RAC Node 2 evicted — cluster performance degraded." I logged into the surviving node running Oracle Database 19.18.0.0.0. The cluster had automatically failed over, but performance had collapsed. What should have been 2,400 transactions per second was now limping at 900 TPS.
I checked interconnect statistics immediately. The gc cr block receive time averaged 247 milliseconds — it should be under 1 millisecond. This wasn't a failed-node problem; this was network infrastructure failure. The private interconnect switch had undergone a firmware upgrade during the maintenance window. The new firmware version had a packet forwarding bug causing random 200ms+ delays in Cache Fusion block transfers. Applications were technically connected, but every cross-node block request was timing out and retrying. We initiated emergency failover to the DR site while network engineering rolled back the switch firmware.
Oracle RAC is not just "multiple databases sharing storage." It's a distributed cache coherency system where every node maintains its own buffer cache, but all nodes must coordinate which version of each data block is current. Cache Fusion is the mechanism that makes this work — transferring blocks between nodes over the private interconnect instead of forcing disk writes. Understanding this is the difference between an operational RAC cluster and a ticking time bomb.
This guide covers real Oracle RAC internals: how Cache Fusion actually works, why interconnect design matters more than CPU, what causes split-brain scenarios, and the production lessons learned from managing RAC clusters that can't afford downtime.
- RAC Architecture Fundamentals: Beyond the Marketing
- Cache Fusion Explained: How Blocks Move Between Nodes
- Global Cache Services (GCS) and Global Enqueue Services (GES)
- Cluster Interconnect: The Most Critical Component
- Split-Brain Scenarios and Voting Disk Protection
- RAC Performance Tuning: What Actually Matters
- Real Production Failures and Lessons Learned
- When RAC Makes Sense (And When It Doesn't)
- FAQ
- Related Reading from Real Production Systems
1. RAC Architecture Fundamentals: Beyond the Marketing
Oracle RAC is sold as "high availability and scalability." Reality is more nuanced.
What RAC Actually Provides
| Capability | Reality | Common Misconception |
|---|---|---|
| High Availability | Survives single node failure | "Zero downtime" — not true during network failures |
| Scalability | Read scaling works well | "Linear scaling" — write workloads don't scale linearly |
| Load Balancing | Distributes connections | "Automatic query routing" — application must handle |
| Maintenance | Rolling patches possible | "No downtime patches" — some still require outage |
Core RAC Components
Every RAC cluster requires:
- Shared Storage: ASM or certified cluster filesystem — all nodes access the same datafiles
- Private Interconnect: Dedicated network for Cache Fusion messages (1 GB minimum, 10 GB+ recommended)
- Voting Disks: Quorum mechanism to prevent split-brain (typically 3 or 5)
- OCR (Oracle Cluster Registry): Cluster configuration database
- Clusterware: Grid Infrastructure managing node membership and resources
The queries in this article use dynamic performance views (
v$ and gv$ views) which are available in all Oracle Database editions without additional licensing. When analyzing historical performance data, AWR and ASH queries require the Oracle Diagnostics Pack license. For unlicensed environments, use Statspack (free) or real-time v$ views as shown above.
Single Instance vs RAC: Architectural Differences
Single Instance:
- One SGA, one buffer cache
- No coordination overhead
- Simple lock management
- Straightforward troubleshooting
RAC Cluster:
- Multiple SGAs — one per node
- Cache Fusion coordination required
- Global lock management via GES
- Complex distributed troubleshooting
2. Cache Fusion Explained: How Blocks Move Between Nodes
Cache Fusion is Oracle's distributed shared cache architecture used in Oracle Real Application Clusters (RAC). It was fully introduced with Oracle RAC in Oracle 9i, replacing the disk-based block pinging architecture used in earlier Oracle Parallel Server (OPS) environments.
Instead of forcing modified blocks to be written to disk before another instance reads them, RAC transfers blocks directly between instance buffer caches over the private interconnect. This memory-to-memory block transfer dramatically reduces latency compared with disk-based synchronization.
The Problem Cache Fusion Solves
Without Cache Fusion (Oracle Parallel Server 8i architecture):
- Node 1 modifies block 1234567 in its buffer cache (8 KB block size)
- Node 2 requests the same block for a SELECT query
- Node 1 must write the dirty block to shared storage via LGWR and DBWR
- Node 2 reads the block from disk via
db file sequential readwait event - Result: Forced disk I/O averaging 8–15 ms latency (ping-pong effect)
- Scalability ceiling: 2–3 nodes maximum due to I/O contention
With Cache Fusion (Oracle 19.18.0.0.0 RAC):
- Node 1 holds dirty block 1234567 in buffer cache (current mode)
- Node 2 requests the block via Global Cache Services message
- GCS coordinates transfer — Node 1 identified as master for this resource
- Node 1 ships the block directly over the private interconnect (10 GbE)
- Transfer completes in 0.5–2.0 milliseconds (10x faster than disk)
- Node 2 receives the block in its buffer cache without disk I/O
- Result: Memory-to-memory transfer; disk write deferred until checkpoint
- Scalability: Proven deployments up to 16+ nodes in production
Cache Fusion Block Transfer Modes
Current Mode Block Transfer (gc current): When a session requests the most recent version of a block for UPDATE or DELETE operations, Oracle transfers the current mode block. In our 19.18.0.0.0 production RAC environment with 10 GbE interconnect, current mode transfers average 1.2 ms during peak load. If the block is dirty, the owning instance retains a past image (PI) for instance crash recovery purposes.
Consistent Read Mode Block Transfer (gc cr): For SELECT queries requiring read consistency, Oracle may construct consistent read (CR) versions of blocks using undo data. In our testing on Oracle 19.18.0.0.0, CR block transfers show slightly higher latency (1.5–2.0 ms average) because they may require block reconstruction from multiple undo records before transfer. The gc cr block receive time metric in v$system_event directly measures this latency.
Cache Fusion Wait Events in Oracle 19.18.0.0.0
| Wait Event | Description | Typical Latency | Production Impact |
|---|---|---|---|
gc current block 2-way |
Current block transfer between 2 instances | 0.5–2.0 ms (10 GbE) 3–8 ms (1 GbE) |
Most common; acceptable if under 2 ms average |
gc current block 3-way |
Block transfer requiring 3-instance coordination | 1.5–4.0 ms (10 GbE) | Higher cost; occurs when block has past images on multiple nodes |
gc cr block 2-way |
Consistent read block constructed and transferred | 1.0–2.5 ms | Read-heavy workloads; check undo contention if high |
gc current block busy |
Waiting for in-flight block transfer to complete | Variable | Hot block contention; redesign needed if persistent |
gc buffer busy acquire |
Multiple sessions contending for the same buffer | Variable | Severe: indicates same block being modified by multiple nodes simultaneously |
During peak batch processing at 11 PM, we observed
gc current block 2-way latency spike to 12 ms (baseline 1.2 ms). Analysis revealed the batch job was performing mass updates on a single table with a right-growing index (order_id sequence). All four RAC instances were contending for the rightmost leaf block of the index.Solution: We partitioned the index by range and implemented four separate sequences with
CACHE 1000 and ORDER settings. Post-change, gc current latency returned to baseline 1.3 ms and batch completion time reduced from 4.2 hours to 2.8 hours.
3. Global Cache Services (GCS) and Global Enqueue Services (GES)
GCS and GES are the coordination layers that make RAC work.
Global Cache Services (GCS)
Responsibilities:
- Tracks which node holds which blocks
- Maintains block ownership information
- Coordinates block transfers between nodes
- Manages cache coherency across the cluster
Global Enqueue Services (GES)
Responsibilities:
- Manages global enqueues across the RAC cluster
- Coordinates locking for shared database resources
- Ensures consistent lock state across all instances
- Maintains global enqueue structures for cluster coordination
Resource Mastering
Each resource (block, lock) has a master node responsible for coordinating access.
Master node responsibilities:
- Tracks current owner of the resource
- Grants access to requesting nodes
- Maintains resource state information
Remastering occurs when:
- A node joins or leaves the cluster
- Resource access patterns change significantly
- Manual remastering is triggered by DBA
4. Cluster Interconnect: The Most Critical Component
The interconnect is the most important part of RAC. If the interconnect fails, the cluster fails.
Interconnect Requirements
| Metric | Minimum | Recommended | Why It Matters |
|---|---|---|---|
| Bandwidth | 1 Gbps | 10+ Gbps | Cache Fusion throughput |
| Latency | < 5 ms | < 1 ms | Block transfer speed |
| Packet Loss | < 1% | < 0.1% | Message reliability |
| Redundancy | Single path | Bonded NICs | Failover capability |
Common Interconnect Problems
- Risk Shared switches: Interconnect traffic mixed with public traffic
- Risk Insufficient bandwidth: 1 Gbps not enough for high-transaction workloads
- Risk High latency: Geographic distance between nodes (>1 ms)
- Risk Single point of failure: One switch, one cable
Interconnect Design Best Practices
- Best Dedicated network: Separate from public and backup networks
- Best 10 Gbps minimum: For all production workloads
- Best Low-latency switches: Purpose-built for interconnect
- Best NIC bonding: Redundant paths for automatic failover
- Best Jumbo frames: MTU 9000 for better throughput
5. Split-Brain Scenarios and Voting Disk Protection
Split-brain is the nightmare scenario where a cluster partitions and both sides believe they are primary.
What is Split-Brain?
Consider a 3-node RAC cluster running normally. If a network partition occurs (interconnect fails), Node 1 can no longer reach Nodes 2 and 3. Both sides believe the other side has failed. Both sides attempt to become primary. If both sides write to shared storage simultaneously the result is data corruption.
How Voting Disks Prevent Split-Brain
Voting disks implement a quorum mechanism:
- Typically 3 or 5 voting disks are configured
- A node must access a majority of voting disks to survive
- With 3 voting disks, a node needs access to at least 2
- With 5 voting disks, a node needs access to at least 3
- The losing side evicts itself automatically — no manual intervention required
Node Eviction Process
When a node is evicted the following sequence occurs:
- Cluster detects node unresponsiveness (missed heartbeats)
- Voting disk quorum check fails for that node
- Clusterware initiates an immediate node reboot
- The instance crashes (immediate termination — no graceful shutdown)
- Surviving nodes perform instance recovery from redo logs
- Applications reconnect automatically to surviving nodes
6. RAC Performance Tuning: What Actually Matters
RAC tuning is different from single-instance tuning. The metrics that matter most are cluster-specific.
Key RAC-Specific Metrics
| Metric | Good Value | Problem Threshold | Action |
|---|---|---|---|
| GC CR block receive time | < 1 ms | > 5 ms | Check interconnect hardware |
| GC current block busy | < 1% of waits | > 5% of waits | Reduce hot blocks |
| Blocks received (per node) | Balanced across nodes | Skewed to one node | Fix application routing |
| Cache transfers | < 10% of reads | > 30% of reads | Partition data or workload |
Common RAC Performance Problems
1. Hot Blocks
A single block being accessed by multiple nodes simultaneously causes excessive Cache Fusion traffic. Solution: partition data, use sequences wisely, avoid right-growing indexes.
2. Unbalanced Load
One node handling 80% of the workload while others are underutilized. Solution: fix application-level connection distribution and service definitions.
3. Interconnect Saturation
Cache Fusion messages exceeding available bandwidth causes latency to increase dramatically. Solution: upgrade interconnect to 10 GbE or 25 GbE; reduce unnecessary block transfers through workload partitioning.
7. Real Production Failures and Lessons Learned
These are actual RAC incidents from production environments.
Network team upgraded switch firmware during the maintenance window. The new firmware had a bug causing random packet drops. The cluster detected node unresponsiveness, and all 4 nodes evicted themselves simultaneously — complete cluster failure.
Lesson: Never trust network changes without extended interconnect testing. Always run
ping and traceroute across the private interconnect for at least 30 minutes post-change before closing the maintenance window.
AWR showed high
gc cr block receive time. Initial assumption was an interconnect problem. Deep investigation revealed storage latency of 50 ms — nodes were waiting for disk I/O, not Cache Fusion.Lesson: Always check storage I/O latency before blaming RAC or the interconnect. Check
v$filestat and storage-level metrics first.
The application used a single global sequence for order IDs. Every insert required global coordination across all nodes. This caused
enq: SQ contention cluster-wide. Throughput was capped at 200 TPS against a target of 2,000+ TPS.Lesson: RAC exposes bad application design immediately. Partition sequences per node, or use local sequences with offsets to eliminate global coordination overhead.
8. When RAC Makes Sense (And When It Doesn't)
RAC is not a universal solution. It has specific use cases where it excels and others where it makes things worse.
Good Use Cases for RAC
- Good Read-heavy workloads: Reporting, analytics, read scaling
- Good High availability requirement: Cannot tolerate planned downtime for patches
- Good Partitioned workloads: Each node handles a different data subset
- Good Connection scaling: Need to support 10,000+ concurrent connections
Bad Use Cases for RAC
- Avoid Write-intensive OLTP: Cache Fusion overhead degrades write performance
- Avoid Single global sequences: Become cluster-wide bottlenecks immediately
- Avoid Budget-constrained environments: RAC requires expensive hardware and licensing
- Avoid Teams without RAC expertise: Troubleshooting requires deep knowledge
RAC Alternatives to Consider
| Requirement | RAC Solution | Alternative Solution |
|---|---|---|
| High Availability | RAC cluster | Data Guard with fast failover |
| Read Scaling | RAC nodes | Active Data Guard read replicas |
| Zero Downtime Patching | RAC rolling patch | Data Guard rolling upgrade |
| Connection Pooling | RAC load balancing | Application-level connection pool |
9. FAQ
10. Related Reading from Real Production Systems
If you want to deepen your understanding of Oracle high availability and clustering, the following articles from real production experience may also be useful:
- Oracle Database 23ai: Revolutionizing Data Distribution Across the Globe Why it matters: Understanding modern Oracle distributed architecture complements RAC clustering knowledge for building globally distributed high-availability systems.
- Oracle Performance Engineering Guide: AWR, ASH and SQL Monitor in 19c and 23ai Why it matters: RAC performance troubleshooting requires AWR and ASH analysis across multiple instances. This guide shows diagnostic techniques for identifying Cache Fusion bottlenecks and interconnect issues.
- Automating Backup and Restore in Oracle 19c and 23ai: Complete DBA Guide Why it matters: RAC backup strategies differ from single-instance databases. Understanding RMAN in clustered environments with shared storage is critical for disaster recovery planning.
- N8N Oracle Telegram Alerts: Automating Database Monitoring Why it matters: RAC clusters require monitoring across all nodes for interconnect health, node evictions, and Cache Fusion metrics. This guide shows automated cluster-wide alerting.
- Oracle Standby Database Failover: Real Production DR Testing and Automation Why it matters: Combining RAC with Data Guard provides both local HA and disaster recovery. This guide covers failover procedures when the RAC primary site fails completely.
About the Author
Chetan Yadav is a Senior Oracle, PostgreSQL, MySQL, and Cloud DBA with 15+ years of hands-on experience managing production databases across on-premises, hybrid, and cloud environments. He specializes in high availability architecture, performance tuning, disaster recovery, and database migrations.
Throughout his career, Chetan has designed and implemented Oracle RAC clusters for mission-critical systems in finance, healthcare, and e-commerce sectors. He has architected high-availability solutions serving millions of transactions daily and has troubleshot complex Cache Fusion performance issues under production pressure.
This blog focuses on real-world DBA problems, career growth, and practical learning — not theoretical documentation or vendor marketing.
Saturday, November 29, 2025
Oracle RAC Cluster Health Audit: The 2026 Production DBA Guide
This article provides a comprehensive Shell Script for RAC Cluster Health Audits. It covers CRS status, OCR integrity, Voting Disk validation, and resource stability checks—perfect for daily monitoring or pre-patching validation.
Table of Contents
- Why You Must Audit RAC Cluster Health Daily
- Production-Ready RAC Health Check Script (Shell)
- Script Output & Analysis Explained
- Critical Components: OCR, Voting Disk & CRS
- Troubleshooting Common RAC Issues
- How to Automate This Audit (Cron)
- Interview Questions: RAC Troubleshooting
- Final Summary
- FAQ
- About the Author
1. Why You Must Audit RAC Cluster Health Daily
Oracle RAC relies on a complex stack of clusterware services. Neglecting these checks leads to:
- Node Evictions: Caused by heartbeat failures or voting disk I/O timeouts.
- OCR Corruption: Resulting in the inability to start the clusterware stack.
- Resource Regressions: Services or VIPs flapping between nodes.
- Split-Brain Syndrome: Where nodes lose communication and fight for control.
Running a unified audit script ensures you catch "INTERMEDIATE" or "OFFLINE" states before they become outages.
2. Production-Ready RAC Health Check Script
This shell script checks the core pillars of RAC stability: CRS Stack, OCR, Voting Disks, and Resource Status.
Note: Execute this script as the grid (or root) user.
#!/bin/bash # ==================================================== # Oracle RAC Cluster Health Audit Script # Author: Chetan Yadav # Usage: ./rac_health_check.sh # ==================================================== # Set Grid Environment (Adjust ORACLE_HOME as needed) export ORACLE_HOME=/u01/app/19.0.0/grid export PATH=$ORACLE_HOME/bin:$PATH echo "==================================================" echo " ORACLE RAC CLUSTER HEALTH AUDIT - $(date) " echo "==================================================" # 1. Check High Availability Services (OHAS) echo -e "\n[1] Checking CRS/OHAS Stack Status..." crsctl check crs # 2. Check Voting Disk Status (Quorum) echo -e "\n[2] Checking Voting Disk Configuration..." crsctl query css votedisk # 3. Check OCR Integrity (Registry) echo -e "\n[3] Checking Oracle Cluster Registry (OCR) Integrity..." # Note: Requires root or grid privileges ocrcheck # 4. Check Cluster Resources (Highlighting Issues) echo -e "\n[4] Scanning for OFFLINE or UNSTABLE Resources..." crsctl stat res -t | grep -E "OFFLINE|INTERMEDIATE|UNKNOWN" # 5. Check Cluster Interconnect (Private Network) echo -e "\n[5] Checking Cluster Interconnects..." oifcfg getif echo -e "\n==================================================" echo " AUDIT COMPLETE. CHECK LOGS FOR ANY ERRORS. " echo "=================================================="This script consolidates five manual commands into a single health report, saving valuable time during incidents or daily checks.
3. Script Output & Analysis Explained
| Check Component | What "Healthy" Looks Like |
|---|---|
| crsctl check crs | CSS, CRS, and EVM should all show "Online". If any are offline, the node is not part of the cluster. |
| Voting Disk | Must show "successful discovery" and list valid disk paths (e.g., ASM disk groups). |
| ocrcheck | Look for "Cluster registry integrity check succeeded". Ensure enough free space is available. |
| Resource Scan | Any resource in "INTERMEDIATE" state implies it is struggling to start or stop. "OFFLINE" is only okay for idle instances. |
4. Critical Components: OCR, Voting Disk & CRS
Understanding these acronyms is vital for any RAC DBA:
- OCR (Oracle Cluster Registry): Stores configuration info (resources, nodes, instances). If this is corrupt, the cluster cannot start.
- Voting Disk: The "heartbeat" file. Nodes write to this to prove they are alive. Loss of voting disk = immediate node eviction (reboot).
- CRS (Cluster Ready Services): The main daemon managing high availability.
5. Troubleshooting Common RAC Issues
If the script reports errors, follow this workflow:
- CRS Fails to Start: Check
$ORACLE_HOME/log/hostname/alerthostname.log. It is often a permission issue or network failure. - Voting Disk Missing: Verify ASM disk group mounting status. Run
kfod disks=allto check disk visibility at OS level. - Intermittent Evictions: Check network latency on the private interconnect. High latency leads to "Missed Heartbeats".
6. How to Automate This Audit (Cron)
You can schedule this script to run daily at 7 AM before business hours. Add this line to the Grid user's crontab:
00 07 * * * /home/grid/scripts/rac_health_check.sh > /tmp/rac_health_$(date +\%F).log 2>&17. Interview Questions: RAC Troubleshooting
Prepare for these common questions during senior DBA interviews:
- Q: What is a split-brain scenario in RAC?
A: When nodes lose private network communication and both try to write to the database. Voting disk prevents this by fencing off one node. - Q: How do you backup OCR?
A: Oracle automatically backs up OCR every 4 hours. You can also manually backup using `ocrconfig -manualbackup`. - Q: What command checks the private interconnect IPs?
A: `oifcfg getif`.
8. Final Summary
A healthy RAC cluster requires vigilant monitoring of the clusterware stack, not just the database instances. The script provided above is a fundamental tool for checking CRS, OCR, and Voting Disk health instantly.
Use this script as part of your Weekly Health Check routine (as suggested in the Nov 2025 schedule) to ensure 99.999% availability.
9. FAQ
Q1: Can I run this script as the 'oracle' user?
A: Most `crsctl` check commands work, but `ocrcheck` and deep diagnostics usually require `grid` or `root` privileges.
Q2: What should I do if OCR check fails?
A: Restore from the latest automatic backup using `ocrconfig -restore`. Do not restart the stack until resolved.
Q3: Does this cause performance impact?
A: No, these are lightweight metadata queries.
About the Author
Chetan Yadav is a Senior Oracle, PostgreSQL, MySQL and Cloud DBA with 14+ years of experience supporting high-traffic production environments across AWS, Azure and on-premise systems. His expertise includes Oracle RAC, ASM, Data Guard, performance tuning, HA/DR design, monitoring frameworks and real-world troubleshooting.
He trains DBAs globally through deep-dive technical content, hands-on sessions and automation workflows. His mission is to help DBAs solve real production problems and advance into high-paying remote roles worldwide.
Explore More Technical Work
- LinkedIn: Profile & Articles
- YouTube: Oracle Foundations Playlist
- Telegram: LevelUp_Careers DBA Tips
Call to Action
If you found this helpful, follow my blog and LinkedIn for deep Oracle, MySQL, and RAC content. I publish real production issues, scripts, and monitoring guides to help you level up your DBA career.
.png)
.jpg)