echo on slow with large stored procedure [message #404209] |
Wed, 20 May 2009 18:09 |
|
zoltanp
Messages: 58 Registered: March 2005 Location: Hungary
|
Member |
|
|
I run sqlplus(10.2.0.3) on AIX 5L via ssh remote terminal(putty).
creating larger stored procedure(with SET ECHO ON) is extremely slow.
Is it possible to increase speed with any AIX or oracle parameters?
ECHO ON is necessary to me.
Thanks,
Zoltanp
[Updated on: Wed, 20 May 2009 18:10] Report message to a moderator
|
|
|
|
Re: echo on slow with large stored procedure [message #404217 is a reply to message #404209] |
Wed, 20 May 2009 22:46 |
Frank
Messages: 7901 Registered: March 2000
|
Senior Member |
|
|
How long does it to create the procedure vs the time it takes to do a cat of the file?
In other words, is it the time to write back the output to your ssh session?
If so, you could spool and set termout off. Then the echo'ed response will not be displayed on your terminal screen, but instead be spooled to a file.
|
|
|
|
|