SELECTblocking_session_id‘阻塞进程的ID‘,wait_duration_ms‘等待时间(毫秒)‘,session_id‘(会话ID)‘FROMsys.dm_os_waiting_tasks可以查询到锁死的进程ID下面只要杀死这些进程就可以了killspid(进程ID)或者exec(‘kill’‘spid’)这样就可以了重新刷新下库一切正常了顺便介绍下..
分类:
系统相关 时间:
2015-11-25 09:24:41
阅读次数:
157
Problem - 4325 http://acm.hdu.edu.cn/showproblem.php?pid=4325Problem DescriptionAs is known to all, the blooming time and duration varies between diff...
分类:
其他好文 时间:
2015-11-18 19:39:11
阅读次数:
236
#define STREAM_DURATION 5.0 #define STREAM_FRAME_RATE 25 /* 25 images/s */ #define STREAM_NB_FRAMES ((int)(STREAM_DURATION * STREAM_FRAME_RATE)) ...
分类:
其他好文 时间:
2015-11-16 17:24:57
阅读次数:
409
原文:《Programming WPF》翻译 第8章 2.TimelineTimeline代表了时间的延伸。它通常还描述了一个或多个在这段时间所发生的事情。例如,在前面章节描述的动画类型,都是Timeline。可哦率这样的DoubleAnimation: 正如Duration属性指出的,这代表了一个...
transition是CSS样式的一个属性,无聊之余看了一下,分享一下。transition的语法:transition: property duration timing-function delay;主要属性transition-property 规定设置过渡效果的 CSS 属性的名称。tra....
分类:
其他好文 时间:
2015-11-13 14:30:22
阅读次数:
233
css3的动画支持大多数浏览器,但最好还是加-webkit-animation等属性IE9以及以前的版本并不支持。animation属性是一个简写属性,用于设置六个动画的属性;animation-name 动画名称(自己取的名称)animation-duration 动...
分类:
Web程序 时间:
2015-11-11 19:06:29
阅读次数:
280
transition-property: 规定设置过渡效果的 CSS 属性的名称。通常设置成alltransition-duration: 规定完成过渡效果需要多少秒或毫秒。transition-timing-function:规定速度效果的速度曲线。 Linear规定以相同速度开始至结束的过渡效....
分类:
其他好文 时间:
2015-11-09 10:40:01
阅读次数:
264
【CSS3中的动画功能】/* 1.Transition功能,通过指定开始结束状态来过度,无法实现复杂动画。*//* transition:property duration timing-function */transition-property: background-color;transit...
分类:
Web程序 时间:
2015-11-02 15:13:46
阅读次数:
409
#include#include#includeusing namespace std;int main(){ int i=100000000; clock_t start,finish; double duration; start=clock();//开始计时刻 ...
分类:
编程语言 时间:
2015-11-01 10:08:59
阅读次数:
196
每天偶尔检查数据库作业是否失败,发现有错误[sql]view plaincopyselecttop10job_id,run_date,run_time,run_duration,step_name,messagefrommsdb..sysjobhistorywhererun_status=0orde...
分类:
数据库 时间:
2015-10-30 20:12:03
阅读次数:
356