我想监听对一个数据库的所有修改操作,要得到如下数据:
修改前的数据,修改后的数据,修改时间,连接用户;
请问怎么做才好?如果使用事件跟踪器的话,是不是需要把跟踪器一直开着

解决方案 »

  1.   

    如果是对表的话做一个合适的触发器就可以了getdate()和host_name()这2个函数应该会对你有帮助
      

  2.   

    下面这个触发器应该符合你的要求:(联机丛书的实例)E. 使用 COLUMNS_UPDATED
    下例创建两个表:一个 employeeData 表和一个 auditEmployeeData 表。人力资源部的成员可以修改 employeeData 表,该表包含敏感的雇员薪水信息。如果更改了雇员的社会保险号码 (SSN)、年薪或银行帐户,则生成审核记录并插入到 auditEmployeeData 审核表。通过使用 COLUMNS_UPDATED() 功能,可以快速测试对这些包含敏感雇员信息的列所做的更改。只有在试图检测对表中的前 8 列所做的更改时,COLUMNS_UPDATED() 才起作用。USE pubs
    IF EXISTS(SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
       WHERE TABLE_NAME = 'employeeData')
       DROP TABLE employeeData
    IF EXISTS(SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
       WHERE TABLE_NAME = 'auditEmployeeData')
       DROP TABLE auditEmployeeData
    GOCREATE TABLE employeeData (
       emp_id int NOT NULL,
       emp_bankAccountNumber char (10) NOT NULL,
       emp_salary int NOT NULL,
       emp_SSN char (11) NOT NULL,
       emp_lname nchar (32) NOT NULL,
       emp_fname nchar (32) NOT NULL,
       emp_manager int NOT NULL
       )
    GOCREATE TABLE auditEmployeeData (
       audit_log_id uniqueidentifier DEFAULT NEWID(),
       audit_log_type char (3) NOT NULL,
       audit_emp_id int NOT NULL,
       audit_emp_bankAccountNumber char (10) NULL,
       audit_emp_salary int NULL,
       audit_emp_SSN char (11) NULL,
       audit_user sysname DEFAULT SUSER_SNAME(),
       audit_changed datetime DEFAULT GETDATE()
       )
    GOCREATE TRIGGER updEmployeeData 
    ON employeeData 
    FOR update AS
    /*Check whether columns 2, 3 or 4 has been updated. If any or all of columns 2, 3 or 4 have been changed, create an audit record. The bitmask is: power(2,(2-1))+power(2,(3-1))+power(2,(4-1)) = 14. To check if all columns 2, 3, and 4 are updated, use = 14 in place of >0 (below).*/   IF (COLUMNS_UPDATED() & 14) > 0
    /*Use IF (COLUMNS_UPDATED() & 14) = 14 to see if all of columns 2, 3, and 4 are updated.*/
          BEGIN
    -- Audit OLD record.
          INSERT INTO auditEmployeeData
             (audit_log_type,
             audit_emp_id,
             audit_emp_bankAccountNumber,
             audit_emp_salary,
             audit_emp_SSN)
             SELECT 'OLD', 
                del.emp_id,
                del.emp_bankAccountNumber,
                del.emp_salary,
                del.emp_SSN
             FROM deleted del-- Audit NEW record.
          INSERT INTO auditEmployeeData
             (audit_log_type,
             audit_emp_id,
             audit_emp_bankAccountNumber,
             audit_emp_salary,
             audit_emp_SSN)
             SELECT 'NEW',
                ins.emp_id,
                ins.emp_bankAccountNumber,
                ins.emp_salary,
                ins.emp_SSN
             FROM inserted ins
       END
    GO/*Inserting a new employee does not cause the UPDATE trigger to fire.*/
    INSERT INTO employeeData
       VALUES ( 101, 'USA-987-01', 23000, 'R-M53550M', N'Mendel', N'Roland', 32)
    GO/*Updating the employee record for employee number 101 to change the salary to 51000 causes the UPDATE trigger to fire and an audit trail to be produced.*/UPDATE employeeData
       SET emp_salary = 51000
       WHERE emp_id = 101
    GO
    SELECT * FROM auditEmployeeData
    GO/*Updating the employee record for employee number 101 to change both the bank account number and social security number (SSN) causes the UPDATE trigger to fire and an audit trail to be produced.*/UPDATE employeeData
       SET emp_bankAccountNumber = '133146A0', emp_SSN = 'R-M53550M'
       WHERE emp_id = 101
    GO
    SELECT * FROM auditEmployeeData
    GO