Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Reading files on the server

RE: Reading files on the server

From: Jamadagni, Rajendra <Rajendra.Jamadagni_at_espn.com>
Date: Fri, 14 Nov 2003 09:09:34 -0800
Message-ID: <F001.005D6AED.20031114090934@fatcity.com>


Simplest .... if you know the format of the files ... use external tables.  

Raj



Rajendra dot Jamadagni at nospamespn dot com All Views expressed in this email are strictly personal. QOTD: Any clod can have facts, having an opinion is an art !

-----Original Message-----
Sent: Friday, November 14, 2003 11:59 AM To: Multiple recipients of list ORACLE-L

There are really two answers to this and it depends largely on what you want to do. If you want to check for the existence of a file and generate an error if it's not there, you can do something along the lines of...  

whenever oserror <do something>
!ls -l $DIR/$FILENAME  

Alternatively, if you want to do something that requires an action based on something inside the log file, you have to run the SQLPLUS command as a separate shell. Here's an example:  

sqlplus << EOF
userofchoice/incrediblysecretpassword
def somevar=`grep -i yourvar $DIR/$FILENAME|awk '{print $NForsomething}'` def somevar2=$SOMETHINGFROMEARLIERINTHISPGM select &somevar*&somevar2 from dual;
exit
EOF   HTH,
Bambi.

-----Original Message-----
Sent: Thursday, November 13, 2003 10:14 PM To: Multiple recipients of list ORACLE-L

Hi all,  

I have a problem I hope you could help with.  

I have a job running on db server side as a cron and it creates information (log files). What methods I have if I want to read those log files with some pl/sql procedure etc (I mean from inside the db), are there any others than utl_file (which I suppose reads always at the same directory...)  

I am using 9iRel2 on Sun Solaris...  

Thanks in advance
Gunnar


Want to chat instantly with your online friends? <http://uk.rd.yahoo.com/mail/tagline_messenger/*http://uk.messenger.yahoo.com/> Get the FREE Yahoo! Messenger



This e-mail message is confidential, intended only for the named recipient(s) above and may contain information that is privileged, attorney work product or exempt from disclosure under applicable law. If you have received this message in error, or are not the named recipient(s), please immediately notify corporate MIS at (860) 766-2000 and delete this e-mail message from your computer, Thank you.
**************************************************************************************4

--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Jamadagni, Rajendra
  INET: Rajendra.Jamadagni_at_espn.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Nov 14 2003 - 11:09:34 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US