I’m trying to create a simple function in Oracle using Toad, but when you run the script, it shows me an error message or success.
My function:
CREATE OR REPLACE FUNCTION simple RETURN VARCHAR2 IS
BEGIN
RETURN 'Simple Function';
END simple;
/
Any suggestions? Thanks.
Your function is correct, you can try with F5.
v6 – v8.6
v9
“Compile All”
Regards.