Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
Create Package body with one private subprogram only without package specification
Create package with body only it contains only one private sub program
CREATE PACKAGE BODY no_spec AS
PROCEDURE myproc AS BEGIN null;
END;
END no_spec;
/
Case 2:
Create package with body only it contains no sub programs
CREATE PACKAGE BODY no_spec AS
END no_spec;
/
This Question is not yet answered!
Related Answered Questions
Related Open Questions