步骤
disk init 命令建设备
create database sybsecurity 创建数据库
在这个数据库上执行脚本ASE\scripts\installsecurity
重启数据库,即可。
几个命令
配置对谁审计什么
sp_audit option, login_name, object_name [,setting]
如 sp_audit 'all', 'all', 'all', 'on'
sp_audit 'update', 'all', 'customer', 'off'
何时开始和结束审计
sp_configure 'auditing', 1
sp_configure 'auditing', 0
查看正在执行哪些审计
sp_displayaudit['procedure'|'object'| 'login' | 'database' | 'global' | 'default_object' | 'default_procedure' [,'name']]
配置设计队列
sp_configure 'audit queue size', 20 (num_of_audit_records)
查看审计信息
select * from sysaudits_01
其中event列对应操作类型,如insert into table 对应41,可以查看参考手册
添加审计表
sp_addaudittable devname(设备名称)
手工添加审计信息
sp_addauditrecord [text] [,db_name] [,obj_name] [,owner_name] [,dbid] [,objid]
阅读(1132) | 评论(0) | 转发(0) |