Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle Newbie Question
ok I got it fixed, but what am I doing wrong in calling the procedure?
Final proc:
CREATE OR REPLACE PROCEDURE searchThis2
(m_stringToSearch varchar, m_search char, result out integer)
AS
BEGIN
SELECT INSTR(m_stringToSearch ,m_search , 1,1) INTO result FROM DUAL;
END;
/
I am trying to call it like this. I am using the Express 10g edition and using the web sql commands tool provided with the install.
BEGIN
searchThis2('Here is my search string', 'c');
END;
I get the error:
ORA-06550: line 2, column 1: PLS-00306: wrong number or types of arguments in call to 'SEARCHTHIS2' ORA-06550: line 2, column 1:
![]() |
![]() |