How to find out PLSQL Compilation errors

前端 未结 2 821
悲&欢浪女
悲&欢浪女 2021-01-22 02:16
create or replace procedure address_insert 
as

CREATE type colorarray is varray(10) of varchar2(10);
CREATE type cities is varray(6) of varchar2(20);
CREATE type states         


        
2条回答
  •  悲哀的现实
    2021-01-22 02:49

    If you're in SQL*Plus, do a 'SHOW ERRORS'. This also works in SQL Developer's SQL Worksheet.

    If you're in a proper IDE - you'll see the errors at compile time.

提交回复
热议问题