Execute the following statement
SQL> exec utplsql.test ('betwnstr',recomplie_in=>FALSE)
Got the below error
BEGIN utplsql.test ('betwnstr',recomplie_in=>FALSE); END;
*
ERROR at line 1:
ORA-06550: line 1, column 7:
PLS-00306: wrong number or types of arguments in call to 'TEST'
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
Can u please help me out on what i'm missing.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Execute the following statement
SQL> exec utplsql.test ('betwnstr',recomplie_in=>FALSE)
Got the below error
BEGIN utplsql.test ('betwnstr',recomplie_in=>FALSE); END;
ERROR at line 1:
ORA-06550: line 1, column 7:
PLS-00306: wrong number or types of arguments in call to 'TEST'
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
Can u please help me out on what i'm missing.
Hmm... I can't see anything obviously wrong with what you've posted here. Did the installation go OK? Are any of the objects invalid?
Can you try the following:
Ignore my last post, I've just spotted the issue! Looks like you have a typo in the parameter name
recompile_in
.You've put:
Whereas it should be
Thank you , I figured it out.