In this guide, we will walk through the process of automating an Oracle 19c database backup using PowerShell. The backup will be stored on a network location, ensuring accessibility and disaster recovery readiness.
1. Oracle Database & Environment Configuration
Before proceeding, ensure that the following system configurations are properly set up:
Operating System Requirements:
Windows Server 2016/2019/2022 or Windows 10/11 (Admin access required)
PowerShell 5.1 or later installed
Oracle 19c installed and configured
Database & Storage Setup:
Oracle Database Home Directory:
D:\Mominul\Ora19c
Oracle Database SID:
EGERPDB
Schema to Backup:
EGERPDB
Data Pump Directory:
D:\Ora19c\OracleBase\admin\EGERPDB\dpdump
Network Backup Path:
\\ip-address\e\db_bk
1.1: Prerequisites
Before setting up an automated backup, ensure the following:
✅ Oracle 19c is installed on a Windows Server
✅ PowerShell is enabled and has admin rights
✅ Oracle Data Pump (expdp/impdp) utilities are available
✅ Network storage is accessible for backup storage
✅ User has DBA privileges for Oracle backup
2. Configure Oracle Data Pump Backup Directory
Step 1: Create Backup Directory in Oracle
To allow Oracle Data Pump to export backups, create a directory object in Oracle:
🔹 Explanation:
-
This creates an Oracle Directory Object linked to
D:\OracleBackup
. -
Grants read/write access to the SYSTEM user (adjust as needed).
3. Setting Folder and Path Permissions
Ensure the Oracle Database Service account has read/write access to:
-
Backup Folder (D:\OracleBackup)
-
Network Storage Path (e.g., \\ip-address\e\db_bk)
Step 1: Set Permissions on Backup Folder
1️⃣ Right-click on D:\OracleBackup
→ Select Properties
2️⃣ Go to Security tab → Click Edit
3️⃣ Add Oracle user (e.g., ORACLE_SID or SYSTEM)
4️⃣ Grant Full Control
Step 2: Ensure Network Path Access
If storing backups on a network drive, allow access:
1️⃣ Map network drive (e.g., \\ip-address\e\db_bk
)
2️⃣ Right-click folder → Properties → Sharing → Advanced Sharing
3️⃣ Click Permissions, add Oracle User, and grant Full Control
4. PowerShell Script for Oracle Backup
Below is a PowerShell script that:
✅ Exports Oracle schema backup
✅ Transfers backup to a network location
✅ Logs every step
PowerShell Script (Backup & Network Transfer)
4.1: Secure Credential Handling
DO NOT store passwords in plaintext inside scripts. Instead, use:
Option 1: Use Secure Credential Store
$securePassword = ConvertTo-SecureString "YourPassword" -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential ("username", $securePassword)
Option 2: Store in Windows Credential Manager
Use
cmdkey /add:targetname /user:username /pass:password
Retrieve using
Get-StoredCredential
5. Automate Backup Using Windows Task Scheduler
Step 1: Open Task Scheduler
-
Press
Win + R
, type taskschd.msc, and press Enter.
Step 2: Create a New Task
-
Click Create Basic Task → Set Backup Name → Click Next
-
Choose Daily / Weekly
-
Select Start time
-
Click Next → Start a Program
Step 3: Configure the PowerShell Script Execution
-
Program/Script:
powershell.exe
-
Add Arguments:
-
Click Next → Finish
Step 4: Set User Permissions
-
Right-click the task → Properties
-
Under General, check Run with highest privileges
-
Under Security Options, select Run whether user is logged in or not
6. Verification & Monitoring
-
Check Logs:
D:\backup_logs\oracle_backup_log_YYYYMMDD.log
-
Confirm Backup Files:
\\ip-address\e\db_bk
-
Manually Run the Task: Task Scheduler → Right-click Task → Run
Conclusion
This guide provides a fully automated Oracle 19c backup solution using PowerShell, Oracle Data Pump, and Task Scheduler. 🚀
0 comments:
Post a Comment