DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: resumable trigger not valid :-(

  1. #1
    Join Date
    Oct 2001
    Location
    Berlin, Germany
    Posts
    97

    Unhappy resumable trigger not valid :-(

    Hi all,

    what is wrong on this statement?

    Do you have an idea? Thank you!!! Christian

    CREATE OR REPLACE TRIGGER ck.logon_ck
    AFTER SUSPEND
    ON DATABASE
    declare
    BEGIN
    alter session enable resumable timeout 3000 name 'Krischan';
    END;

  2. #2
    Join Date
    Aug 2002
    Location
    Colorado Springs
    Posts
    5,253
    Maybe ...
    Code:
    CREATE OR REPLACE TRIGGER ck.logon_ck
    AFTER SUSPEND
    ON DATABASE
    declare
    BEGIN
    execute immediate 'alter session enable resumable timeout 3000 name ''Krischan''';
    END;
    /
    David Aldridge,
    "The Oracle Sponge"

    Senior Manager, Business Intelligence Development
    XM Satellite Radio
    Washington, DC

    Oracle ACE

  3. #3
    Join Date
    Oct 2001
    Location
    Berlin, Germany
    Posts
    97
    Oh sorry! You are right!

    Thank you very much.

    Christian

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width