Returning to sql script [message #370434] |
Fri, 24 September 1999 09:29 |
Luis Claudio
Messages: 5 Registered: July 1999
|
Junior Member |
|
|
Hi,
I've defined a stored procedure and I called it from a sql script. But, after its execution, it didn't return to the sql script. What can I do to solve this problem?
Thanks for any help in advance.
Luis Claudio
|
|
|
|
Re: Returning to sql script [message #370456 is a reply to message #370434] |
Tue, 28 September 1999 07:41 |
Sean Miller
Messages: 12 Registered: December 1998
|
Junior Member |
|
|
Is it raising an exception by any chance?
The following should work okay...
.
.
. beginning of sql script
.
.
begin
proc(params);
exception
when others then dbms_output.put_Line(sqlerrm);
end ;
.
.
. rest of sql script
.
.
rather than using "execute proc(params)" which I assume you're doing
sean
|
|
|
|