Hi
i am getting this error message when the following script is running
execute sp_GetTrialInfo ();
i am getting this error message when the following script is running
execute sp_GetTrialInfo ();
Code:
create or replace procedure sp_GetTrialInfo
(
parStudy_Name OUT mivrs_studyinfo.study_name %type,
parContact_Name OUT mivrs_studyinfo.contact_name %type,
parPhone_Number OUT mivrs_studyinfo.phone_number %type,
parDescription OUT mivrs_studyinfo.description %type
)
AS
BEGIN
SELECT study_name,contact_name,phone_number,description
INTO
parstudy_name,parcontact_name,parphone_number,pardescription
FROM mivrs_studyinfo;
END sp_GetTrialInfo;
Comment