Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Problems Creating Java Source Through ODBC... ORA-29542
> Can SQLPLUS by made to run in silent mode?
I'm not sure if this addresses your original problem. But SQL*Plus can run in "silent" mode. You can store your SQL statements in a text file (script). Then, launch SQL*Plus as follows:
sqlplus userid/password @scriptname
If you don't want the u/p in the command line, then put "connect userid/password" as the first line in your script and launch SQL*Plus as follows:
sqlplus /nolog @scriptname
HTH,
Brian
-- =================================================================== Brian Peasland dba_at_remove_spam.peasland.com Remove the "remove_spam." from the email address to email me. "I can give it to you cheap, quick, and good. Now pick two out of the three"Received on Wed Jul 09 2003 - 09:58:01 CDT
![]() |
![]() |