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

Home -> Community -> Usenet -> c.d.o.server -> Re: Execute 650 mb sql script

Re: Execute 650 mb sql script

From: <BigBoote66_at_hotmail.com>
Date: 11 Apr 2005 09:09:21 -0700
Message-ID: <1113235761.261452.66400@z14g2000cwz.googlegroups.com>


Does the platform you're running this script from support input redirection (e.g. unix, or windows running Cygwin)? If so, you should be able to run any script, no matter how long, by avoiding the file size limit on sqlplus using syntax like this:

cat myhugefile.sql | sqlplus me/mypassword_at_myserver > myoutput.txt

or like this:

sqlplus me/mypassword_at_myserver < myhugefile.sql > myoutput.txt Received on Mon Apr 11 2005 - 11:09:21 CDT

Original text of this message

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