码迷,mamicode.com
首页 > 其他好文 > 详细

K3日志定时备份

时间:2018-05-28 14:59:47      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:nbsp   address   int   ddr   select   定时备份   删除   用户   state   

 K3日志超过5万条以后,每次用户登陆后,系统都会提示日志太多。但是日志又不能随意删除,所以需要做个数据库定时任务,定时把日志转移到备份表。

declare @dt datetime;;

SELECT @dt = getdate();

Insert into t_log_history 
select [FDate]
      ,[FUserID]
      ,[FFunctionID]
      ,[FStatement]
      ,[FDescription]
      ,[FMachineName]
      ,[FIPAddress] from t_log where fdate<@dt;
DELETE FROM t_log WHERE fdate<@dt;

K3日志定时备份

标签:nbsp   address   int   ddr   select   定时备份   删除   用户   state   

原文地址:https://www.cnblogs.com/huangdashen/p/9099822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!