I created a procedure as follows
create or replace procedure "GETCUSTNAMEZZz"
(cust_identifier1 IN NVARCHAR2(10))
is
begin
DBMS_OUTPUT.PUT_LINE (FNAME || ' ' || LNAME FROM customer WHERE cust_id=cust_identifier1)
end;
I then try calling the procedure
BEGIN
GETCUSTNAMEZZz('C2') ;
END;
This sql gives me an error that identifier 'GETCUSTNAMEZZZ' must be declared ORA-06550: line 3, column 5: PL/SQL: Statement ignored"
This is the exact procedure that I created, and the parameter is correct.
How exactly do i declare the identifier??
Thanks in advance.