Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Creating several functions in the same script
Is it possible to create several functions in the same sql script?
I write
CREATE O REPLACE FUNCTION A(param1) RETURN number
IS
-- variables
...
BEGIN
-- function body
...
END;
CREATE O REPLACE FUNCTION B(param1) RETURN number
IS
-- variables
...
BEGIN
-- function body
...
END;
Then I get an error (compiled with errors. Any clue?
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Mon Dec 11 2000 - 12:38:44 CST
![]() |
![]() |