Chinaunix首页 | 论坛 | 博客
  • 博客访问: 438201
  • 博文数量: 94
  • 博客积分: 3066
  • 博客等级: 中校
  • 技术积分: 908
  • 用 户 组: 普通用户
  • 注册时间: 2006-01-25 17:10
文章分类

全部博文(94)

文章存档

2016年(3)

2015年(4)

2014年(1)

2013年(9)

2012年(8)

2011年(1)

2010年(8)

2009年(4)

2008年(2)

2007年(6)

2006年(48)

我的朋友

分类: Sybase

2006-03-01 15:36:18

步骤
  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) |
给主人留下些什么吧!~~