Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Encountered The Symbol 'Create' - Attemping to write a PL/SQL Package
You need to put the executable statements for the subprograms that you
have declared in the package specifications .
CREATE OR REPLACE PACKAGE BODY if_dva_inbound AS
BEGIN
FUNCTION fetch_person_uid (vet_file_num in VARCHAR2) RETURN
S_CONTACT.PERSON_UID%TYPE is
v_dummy S_CONTACT.PERSON_UID%TYPE; begin return v_dummy; end;
might just solve your error. Received on Fri Jun 10 2005 - 01:38:56 CDT
![]() |
![]() |