Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

Free Oracle Tips

HTML Text

 Home
 E-mail Us
 Oracle Articles


 Oracle Training
 Oracle News

 Oracle Forum
 Class Catalog


 Our Staff
 Our Prices
 Help Wanted!

 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 UNIX
 Oracle UNIX
 Linux
 Oracle Linux
 Monitoring
 Remote help

 Remote plans
 Remote
services
 Oracle C++
 Oracle Java
 Apache
 JDeveloper
 App Server

 Applications
 Oracle Forms
 Oracle Portal
 11i Upgrades
 SQL Server
 Oracle Concepts
 HTML-DB Tips
 Software Help

 Remote Help  
 Development  

 Implementation


 Financials Training
 Oracle 11i
 Oracle Apps 11i
 Oracle Workflow
 Oracle AR 11i Class
 Oracle AP 11i class
 Oracle GL 11i class
 Oracle HR 11i class
 Oracle FA 11i class
 11i Project Mgt
 11i procurement
 11i collections


 Oracle Posters
 Oracle Books

 Oracle Tuning Book
 Oracle RAC Book
 Oracle Security
 Easy Oracle Books
 Oracle Scripts
 SQL Server DBA
 SQL Design Patterns
 Ion
 Excel-DB   


 BC Oracle News


 Rednecks!
 Dress code
 Arabian Stallion

 Burleson Arabians
 Guide Horses
 Don Burleson Blog
 Golf & Travel


 Privacy Policy
 

 

 

 
 

Oracle export with Boolean logic variables

Oracle Tips by Burleson Consulting


Question: Does the Oracle export (expdp) utility allow for "if" statements and variables?  I want to export specific tables based on a variable value.

Answer: Oracle data pump export allows a you can add a where clause to your export syntax  with the "query" keyword to extract a sub-set of your production rows for export.  In this example, we restrict the export to rows that meet the where clause:

exp scott/tiger tables=tab1 query="where mymonth > sysdate - 31"

exp scott/tiger tables=emp query=\"where deptno = 20"\

exp scott/tiger query="where job='SALESMAN' and sal<800"

Another technique is to run a SQL*Plus query to build the "tables=" list.  This is just a hack, and you must manually remove the final comma from the list:

$ORACLE_HOME/bin/sqlplus -s joe/cool<<EOF
spool /tmp/parms.txt
select table_name||',' from user_tables
exit
EOF
echo "exp rows=y, tables=" > /tmp/parfile.txt
cat /tmp/mypar.txt >> /tmp/parfile.txt

You can also embed your export into a shell script, where you have a lot more power and flexibility.  In this example we check for any "ORA-" errors in our export:

root> exp parfile=mypar.par log=exp.log

if [ `grep EXP- exp.log | wc -l` -gt 0 ] || [ `grep ORA- exp.log | wc
-l` -gt 0 ]; then
   mailx -s "Errors in Export" -c larry@oracle.com < exp.log
   exit 1
fi

 
You can also grep for a positive result and send an e-mail of your export fails:

root> exp parfile=mypar.par > /tmp/myexp.log
 
grep "successfully without warnings" /tmp/myexp.log > /dev/null 2>&1
if [ $? != 0 ]
then
mailx -s "Failure in /tmp/myexp.log" larry@oracle.com
fi

 

Here is an example of a complex SQL statement that is used in a Data Pump export:

expdp / file=$file tables=myexport query\=" where myexport_pidm in (select myexport_pidm from purdue.myexport where myexport_to_extract\=\'Y\' and myexport_export_status\=\'N\')\"

In this case, the subquery is causing this error:

cal_export_tables.sh[7]: 0403-057 Syntax error at line 7 : `"' is not matched.

The solution is to place the parms in a parfile, and this will then work:

expdp / file=$file parfile=myparfile.par

 

 

For complete Oracle utilities tips and tricks, see the book "Advanced Oracle Utilities" by Dr. Bert Scalzo.

You can buy it direct from the publisher for 30%-off and get instant access to the code depot of Oracle scripts.


 

 

  
 

Oracle performance tuning software 
 
 
 
 

Oracle performance tuning book

 

 
Search oracle
 
Oracle performance Tuning 10g reference poster
 
 
 
Oracle training in Linux commands
 
Oracle training Excel
 
Oracle training & performance tuning books
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  and include the URL for the page.
 
 


Burleson Consulting

The Oracle of Database Support

&

Oracle Performance Tuning


 

Copyright © 1996 -  2009 by Burleson Enterprises, Inc. All rights reserved.

Oracle © is the registered trademark of Oracle Corporation.