Recent content by minervino

  1. M

    Debugger hangs

    Try this sql (correct now): select trigger_name from dba_triggers where TRIM(TRIGGERING_EVENT) = ('ERROR') If you have a trigger with TRIGGERING_EVENT = 'ERROR', is big the possibility of hang. Try disable it and do a test.. If this don't work, see if you have any of this types of trigger...
  2. M

    pl/sql developer hang

    Try this sql (correct now): select trigger_name from dba_triggers where TRIM(TRIGGERING_EVENT) = ('ERROR') If you have a trigger with TRIGGERING_EVENT = 'ERROR', is big the possibility of hang. Try disable it and do a test.. If this don't work, see if you have any of this types of trigger...
  3. M

    PL/SQL Developer: debugger

    Try this sql (correct now): select trigger_name from dba_triggers where TRIM(TRIGGERING_EVENT) = ('ERROR') If you have a trigger with TRIGGERING_EVENT = 'ERROR', is big the possibility of hang. Try disable it and do a test.. If this don't work, see if you have any of this types of trigger...
  4. M

    Debugging

    Try this sql: select trigger_name from dba_triggers where TRIGGERING_EVENT = ('ERROR') If you have a trigger with TRIGGERING_EVENT = 'ERROR', is big the possibility of hang. Try disable it and do a test.. If this don't work, see if you have any of this types of trigger too: 'LOGON', 'CREATE...
  5. M

    Debugger Hanging

    Try this sql: select trigger_name from dba_triggers where TRIGGERING_EVENT = ('ERROR') If you have a trigger with TRIGGERING_EVENT = 'ERROR', is big the possibility of hang. Try disable it and do a test.. If this don't work, see if you have any of this types of trigger too: 'LOGON', 'CREATE...
  6. M

    Debugger hangs

    Try this sql: select trigger_name from dba_triggers where TRIGGERING_EVENT = ('ERROR') If you have a trigger with TRIGGERING_EVENT = 'ERROR', is big the possibility of hang. Try disable it and do a test.. If this don't work, see if you have any of this types of trigger too: 'LOGON', 'CREATE...
  7. M

    pl/sql developer hang

    Try this sql: select trigger_name from dba_triggers where TRIGGERING_EVENT = ('ERROR') If you have a trigger with TRIGGERING_EVENT = 'ERROR', is big the possibility of hang. Try disable it and do a test.. If this don't work, see if you have any of this types of trigger too: 'LOGON', 'CREATE...
  8. M

    Show of Functions/Procedures in Packages in 5.1.4

    Maybe I had found a little bug 5.1.4 version. This behaviour doesn't happens in 5.1.3 version. When I go to package body window, in some packages, some of functions/procedures of body, don
Back
Top