Saturday, August 31, 2019

ORA-39071: Value for EXCLUDE is badly formed

This is for Linux
save or adjust the script below to your environment

#!/bin/bash
#Script to Perform Datapump Export
################################################################
#
. /oracle/local/.profile
export ORACLE_SID=cpwebp
#
expdate=`date '+%d%m%Y%H'`
dat=`date '+%m%d%y %H:%M'`
schema1=WEBP
################################
# export  schemas
expdp system/****** full=y dumpfile=expdp$schema1-$expdate.dmp directory=BKUPDUMP logfile=expdp$schema1-$expdate.log exclude=SCHEMA:\"IN \(\'SYSTEM\', \'PRESS\'\)\"
#Compressing files
/bin/gzip /dbapps/oracle/BACKUP/expdp$schema1-$expdate.dmp
######################################################################################
#Removing 7 days old dump and log  files
find /dbapps/oracle/BACKUP -mtime +7 -exec rm {} \;
######################################################################################
echo "hoy"

No comments:

Post a Comment