sql >> Databáze >  >> RDS >> Oracle

ORA-06553:PLS-801:vnitřní chyba [55018] při testování funkce vrací ROWTYPE

Protože chcete funkci jen otestovat, můžete k jejímu volání použít anonymní blok PL/SQL a přiřadit její výsledek k odpovídající proměnné typu řádku, např.:

declare
  l_row mytable%rowtype;
begin
  -- call the function and assign the result to a variable
  l_row := mypackage.myfunction(1, 2, 3);
  -- do something with the result
  dbms_output.put_line(l_row.some_columns);
end;
/

Rychlé demo s vytvořeným stolem a rozšířenou funkcí:

create table mytable (col1, col2, col3, col4, col5) as
select 1, 2, 3, 'test', sysdate from dual;

create or replace package mypackage as 
  function myfunction (param1 number, param2 number, param3 number)
  return mytable%rowtype;
end mypackage;
/

create or replace package body mypackage as 
  function myfunction (param1 number, param2 number, param3 number)
  return mytable%rowtype is
    l_row mytable%rowtype;
  begin
    select * into l_row
    from mytable
    where col1 = param1
    and col2 = param2
    and col3 = param3;

    return l_row;
  end myfunction;
end mypackage;
/

Při volání z SQL se zobrazí stejná chyba, jakou vidíte nyní:

    select mypackage.myfunction(1, 2, 3) from dual;

    SQL Error: ORA-06553: PLS-801: internal error [55018]

Ale s blokem (spusťte zde přes SQL Developer s povoleným výstupem):

set serveroutput on

declare
  l_row mytable%rowtype;
begin
  -- call the function and assign the result to a variable
  l_row := mypackage.myfunction(1, 2, 3);
  -- do something with the result
  dbms_output.put_line(l_row.col4 ||':'|| l_row.col5);
end;
/

test:2019-04-29


PL/SQL procedure successfully completed.

db<>fiddle



  1. jak uložit PostgreSQL jsonb pomocí SpringBoot + JPA?

  2. Oracle ORA-30004 při použití funkce SYS_CONNECT_BY_PATH,

  3. Nejrychlejší způsob vložení objektu, pokud neexistuje s SQLAlchemy

  4. Postgres Array Append a délka pole pro „Array Push“