Problems creating a trigger in Oracle 11g

前端 未结 3 2134
伪装坚强ぢ
伪装坚强ぢ 2021-02-05 07:23

I get a weird error while trying to create a trigger in my Oracle 11g database using SQL Developer. Here is what I did:

My table:



        
3条回答
  •  终归单人心
    2021-02-05 08:05

    I finally found the answer to my problem:

    Add this:

    ALTER SESSION SET PLSCOPE_SETTINGS = 'IDENTIFIERS:NONE';
    

    Or in Oracle SQL Developer:

    1. Go to Tools | Preferences
    2. Select Database | PL/SQL Compiler
    3. Change the PLScope identifiers from All to None
    4. Click on Ok

    This fixes the issue...

提交回复
热议问题