Mar 5, 2001 #1 drkestrel MIS Sep 25, 2000 439 GB I know that the following could invoke a command script- Code: sqlplus userID/password @scriptName.sql However, could I actually just invoke a script (that simply do some inserts/deletes) and then Code: exit automatically?
I know that the following could invoke a command script- Code: sqlplus userID/password @scriptName.sql However, could I actually just invoke a script (that simply do some inserts/deletes) and then Code: exit automatically?
Mar 5, 2001 #2 rishiu Programmer Feb 26, 2001 22 US Just trying Writing Exit at the end of scriptName.sql I mean sqlplus scott/tiger @r.sql Where as r.sql may b select * from dual; exit; Rishiu Upvote 0 Downvote
Just trying Writing Exit at the end of scriptName.sql I mean sqlplus scott/tiger @r.sql Where as r.sql may b select * from dual; exit; Rishiu