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

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


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


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 

 

 

Loading Oracle data from e-mail attachments


Oracle Database Tips by Donald Burleson

Loading Oracle data via EDI feeds can be cumbersome and expensive, and many small businesses desire a way to share data between companies using standard e-mail.

The trick is to write an intelligent server-side process that will wait for an e-mail to appear in a specific inbox and then perform the tasks required to extract the attachment, load the data into an Oracle tables, and verify successful completion.

You've got mail

In UNIX, this would be a daemon process which invokes a shell script that would wake up every minute (or at the same frequency as the server sendmail) to check for any new e-mails with data feeds attached.  The psuedocode might be like this:

while true
loop
   sleep 60
   if ("ls -alt|head
        command detects a new e-mail")
      exec extract_n_load
   fi
end-loop

All e-mail would be routed into a specific e-mail account (i.e. customer_edi@mycompany.com ), and the UNIX directory for the sendmail account would have the incoming file.

Where's the data?

At this point we must understand how our external client is sending the data to us.  The data could be in the e-mail as comma-delimited text, a spreadsheet attachment, of a host of other methods.  The most common EDI transfer method for small-scale EDI is spreadsheets, and provided that the client uses the same template for each transmission, the whole process can easily be automated.

  • CSV File - This type of spreadsheet file is essentially a coma-delimited flat file, already in a format easily used by the Oracle SQL*Loader utility.
     
  • XLS File - This is a standard MS-Excel spreadsheet and loading into Oracle requires a specialized API (such as Excel-DB) or the external invocation of a utility to extract the spreadsheet data into a plain, column-delimited flat file.

The trick is to always have a resulting flat file that can be read by SQL*Loader in a consistent fashion.

Loading the data into Oracle

The standard rules for use the sqlldr utility apply here and the developer must ensure that there are no rejected rows by programmatically inspecting the SQL*Loader output.

Error Checking

In order to fully automate this type of e-mail EDI to Oracle it is critical that you make an affirmative check to ensure that SQL*Loader successfully loaded your data.

In a shell script this is a simple matter of redirecting the sqlldr output to a flat file.  The flat file can then be checked for an affirmative message, something like this:
  

#!/bin/ksh

sqlldr parfile=xxx > checkme.txt

TEMP=`grep -i checkme.txt Successfully Completed.|wc -l`
tmp=`expr TEMP` # Convert string to number
if [ $tmp -le 1 ]
then
   echo "Were not in Kansas anymore, Toto"|
      mailx -s "Bad EDI Feed Detected" \
      donald@remote-dba.net \
   exit 99
fi

 

Once in place, this can be a fully automated e-mail based system for shipping data into a centralized Oracle database from remote locations all over the world.

 
 
 
Get the Complete
Oracle Utility Information 

The landmark book "Advanced Oracle Utilities The Definitive Reference"  contains over 600 pages of filled with valuable information on Oracle's secret utilities. This book includes scripts and tools to hypercharge Oracle 11g performance and you can buy it for 30% off directly from the publisher.
 



 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

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

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.