cancel
Showing results for 
Search instead for 
Did you mean: 

Create Triggers on System Tables

Former Member
0 Kudos

Hi,

I want to call a certain procedure that logs everytime a database user is created or deleted in the db ( sql Anywhere 16).

For this I have written a Function that should be called via a trigger when a row is inserted or deleted from table SYS.SYSUSER.

However, I am not able to create a trigger on this table.

Am I allowed to create trigger on this or is there someother way to get notified whenever a user is created or deleted for db?

New to sybase please help.

heres is my create trigger code

    CREATE TRIGGER myTrigger AFTER INSERT ON sys.sysuser

    REFERENCING NEW AS newRecord

    FOR EACH ROW

    BEGIN

          -- call myFunction

    END;

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sunil,

          I wouldn't change trigger of system tables. With new release you could lose your changes.

If you want to check for new users, looking from db and not from your application, you could create a scheduled event that once a day search in:

select user_name,creation_time

     from sysuser   join sysobject   on sysuser.object_id = sysobject.object_id

Bye

Answers (1)

Answers (1)

former_member188493
Contributor
0 Kudos

You may be interested in SQL Anywhere's auditing feature.