Casper Thrane (ct@benau.dk) wrote:
: Hi
:
: I have a sql-script in a file which i execute from sql-plus, but is it
: possible to pass arguments when I execute this script?
: --
: Casper Thrane
: Systemdeveloper
: Benau A/S
Casper,
To pass parameters to a SQL-Script, simply separate them with a space. For
example:
SQL> @script.sql parameter1 parameter2 parameter3
In the SQL-Script, refer the the parameters as &1, &2, and &3.
-Ari Kaplan
Independent Oracle DBA Consultant
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
<-> For 125+ Oracle tips, visit my Web Page: <->
<-> <->
<-> www.arikaplan.com <->
<-> <->
<-> email: akaplan@interaccess.com <->
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
Back to Ari Kaplan's Home Page