Ads block

Banner 728x90px

Shell Script for expdp Automation


Shell Script for expdp Automation
Create a file named daily_full_expdp.sh  : ###################################################################### #!/bin/bash # --- Configuration Variables --…
Read more »

Schema Export using DBMS_DATAPUMP


Schema Export using DBMS_DATAPUMP
For more granular control or when you want to execute Data Pump operations directly from SQL*Plus or a PL/SQL block (e.g., within a stored procedure or schedul…
Read more »

Oracle's Data Pump utility (expdp and impdp)


Oracle's Data Pump utility (expdp and impdp)
Prerequisites for expdp: Oracle Directory Object CREATE DIRECTORY data_pump_dir AS '/u01/app/oracle/datapump_backups'; -- Grant to the user performin…
Read more »

Performance Tuning and Monitoring : CPU Scripts


Performance Tuning and Monitoring : CPU Scripts
Find CPU and memory usage of oracle DB server: Below script is useful in getting CPU, memory and core, socket information of a database server from SQL prompt.…
Read more »

Oracle EXPDP/IMPDP (DATAPUMP) Monitoring Scripts


Oracle EXPDP/IMPDP (DATAPUMP) Monitoring Scripts
To start with some of the important tables/views that you should refer to monitor Data Pump Jobs are: DBA_DATAPUMP_JOBS DBA_DATAPUMP_SESSIONS DBA_RESUMABLE V$S…
Read more »

Script to get a fast overview of the State of a Troubled System


Script to get a fast overview of the State of a Troubled System
Use this script to get a fast overview of the state of a troubled system spool /tmp/snap; prompt**************************************************** prompt Hit…
Read more »