sql >> Databasteknik >  >> RDS >> Oracle

Kräver Oracles PS/SQL specifik ordning av poster i "deklarera"-delen av ett block

Från och med Oracle 10g R2 är svaret ja, det krävs en ordningsföljd mellan objekt i item_list_1 och item_list_2, även om markördefinitioner är tillåtna på fel plats.

Till exempel är en procedurdefinition inte tillåten före en variabeldeklaration:

SQL> select * from v$version;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
PL/SQL Release 10.2.0.4.0 - Production
CORE    10.2.0.4.0  Production
TNS for Solaris: Version 10.2.0.4.0 - Production
NLSRTL Version 10.2.0.4.0 - Production

SQL> declare
  2      variable_declaration number;
  3      procedure procedure_definition is begin
  4          null;
  5      end procedure_definition;
  6  begin
  7      null;
  8  end;
  9  /

PL/SQL procedure successfully completed.

SQL> declare
  2      procedure procedure_definition is begin
  3          null;
  4      end procedure_definition;
  5      variable_declaration number;
  6  begin
  7      null;
  8  end;
  9  /
    variable_declaration number;
    *
ERROR at line 5:
ORA-06550: line 5, column 5:
PLS-00103: Encountered the symbol "VARIABLE_DECLARATION" when expecting one of the following:
begin function package pragma procedure form
ORA-06550: line 8, column 4:
PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
end not pragma final instantiable order overriding static
member constructor map


  1. Använda kolumnalias i fältet Sales Order Grid

  2. Oracle-databasfel i symfony2 (doktrin). Är parameters.yml korrekt inställd?

  3. Finns det en LISTAGG WITHIN GROUP-motsvarighet i SQLAlchemy?

  4. Syntaxfel i SQL skapa tabell