用这个把他禁止掉
禁用:
alter table 触发器的名字
disable trigger NoDelete002
2>启用:
alter table 触发器的名字
enable trigger NoDelete002
给你看一下我们一个关于会员卡系统的加的一个触发器。
如果加了象我这样的触发器 你就没有可能更改表中数据
如下:
--/*kkh_congjjf,会员卡积分系统触发器*/
create trigger kkh_congjjf on docckkh
for update
as
if ((select a.leijijf-b.leijijf
from inserted a,deleted b
where a.cardid=b.cardid)<0 and
(select a.ljxfe-b.ljxfe
from inserted a,deleted b
where a.cardid=b.cardid )=0 and not update(is_jf))
insert into retcjmx (riqi,ontime,cardid,chongjjf,hostname,caozy,beizhu)
select convert(char (10),getdate(),120) as riqi,
convert(char (8),getdate(),114) as ontime,
a.cardid,
b.leijijf-a.leijijf as chongjjf,
host_name() as hostname,
'' as caozy,'' as beizhu
from inserted a,deleted b
where a.cardid=b.cardid
需要手动进行。如果是只还原一张表,建议从备份文件中还原时 选择一张表 ,而不是整个库都还原;
建议新建一个存储过程和一张临时表,当源表发生新增,删除,修改时,将数据备份到临时表中,还原数据时可以从临时表进行。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)