Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Run command on sqlplus repetitively without reconnection.
How about using "spool filename append" and "spool off" in the body of
your loop? Of course, I'm not sure how you're constructing your loop,
so I'm not sure if this will work or not...
FAX: 734-930-7611 E-Mail: jim.silverman_at_thomson.com From: oracle-l-bounce_at_freelists.org
Sent: Wednesday, May 09, 2007 11:23 AM To: oracle-l_at_freelists.org Subject: Run command on sqlplus repetitively withoutreconnection.
I want to run a command on sqlplus without making re-connection. At the same time I also want to see the output.
I can do this using UNIX but only problem is I have to make reconnection after every interval(which I don't want)
For e.g I run following script on unix prompt
#########################################################
while true do sqlplus -S "/as sysdba" <<EOF select event,count(*) from v$session group by event; exit; EOF sleep 2 doneplease notify the sender, delete it and do not read, act upon, print, disclose, copy, retain or redistribute it. Click here <http://www.ml.com/email_terms/> for important additional terms relating to this e-mail. http://www.ml.com/email_terms/
#########################################################
I want to achive same functionality without making reconnection after every 2 secs. I tried to use loop,spool file and dbms_lock.sleep() but spool file does not display output till the procedure is completed Can anybody help to achive this functionality ? regards, Ajay If you are not an intended recipient of this e-mail,
-- http://www.freelists.org/webpage/oracle-lReceived on Wed May 09 2007 - 10:50:24 CDT
![]() |
![]() |