SOLVED
ORA-06550: line string, column string: string
Asked by OracleDba••12 views•oracle
#oracle#error
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
ORA-06550: line string, column string: string
Cause:
Usually a PL/SQL compilation error.
Action:
none
ORA-06550 is a very simple exception, and occurs when we try to execute a invalid pl/sql block like stored procedure. ORA-06550 is basically a PL/SQL compilation error. Lets check the following example to generate ORA-06550:
SQL> create or replace procedure myproc
2 as
3 begin
4 for c in (select * from scott.emp)
5 loop
6 dbms_output.put_line(c.empno || ' ' || c.ename || ' ' || sal);
7 end loop;
8 end;
9 /
Warning: Procedure created with compilation errors.
SQL> exec myproc
BEGIN myproc; END;
*
ERROR at line 1:
ORA-06550: line 1, column 7:
PLS-00905: object MYUSER.MYPROC is invalid
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
Here we create a stored procedure "myproc" which has some compilation errors and when we tried to execute it, ORA-06550 was thrown by the Oracle database. To debug ORA-06550 we can use "show error" statement as:
SQL> show error procedure myproc
Errors for PROCEDURE MYPROC:
LINE/COL ERROR
-------- -----------------------------------------------------------------
6/3 PL/SQL: Statement ignored
6/60 PLS-00201: identifier 'SAL' must be declared
Now we know variable SAL is not defined and must be written as c.sal. So we will need to make corrections in "myproc" as
SQL> create or replace procedure myproc
2 as
3 begin
4 for c in (select * from scott.emp)
5 loop
6 dbms_output.put_line(c.empno || ' ' || c.ename || ' ' || c.sal);
7 end loop;
8 end;
9 /
Procedure created.
SQL> set serveroutput on
SQL> exec myproc
7369 SMITH 800
7499 ALLEN 1600
7521 WARD 1250
7566 JONES 2975
7654 MARTIN 1250
7698 BLAKE 2850
7782 CLARK 2450
7788 SCOTT 3000
7839 KING 5000
7844 TURNER 1500
7876 ADAMS 1100
7900 JAMES 950
7902 FORD 3000
7934 MILLER 1300
PL/SQL procedure successfully completed.