Answers for "expdp dont export if query return empty"

0

expdp dont export if query return empty

count=$(sqlplus -s $configuser/$configpass@$ORACLE_SID <<END
       set pagesize 0 feedback off verify off heading off echo off;
       select max(cust_id) from cutomers
       exit;
END
)
echo $count
Posted by: Guest on January-13-2021

Code answers related to "expdp dont export if query return empty"

Browse Popular Code Answers by Language