- 博客(4)
- 资源 (1)
- 收藏
- 关注
原创 Sql Server中解决锁表问题
Sql server中解决锁表问题 查看被锁的表 select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableName from sys.dm_tran_locks where resource_type='OBJECT' 解锁 declare @spid int Set @spid = 60 --锁表进程 declare @sql varchar(1000) set @sql='kill '+cast(
2020-12-18 09:50:30
731
原创 RequireJs
RequireJs 实验心得 下载requireJs配置index.html文件 使用requireJs时,要下载最新版本, 加载index.html文件 index.html文件内容: defer async:通过异步加载的方式来加载js文件,这样可以避免js文件对html渲染的阻塞. 入口文件(main.js) JS文件夹下依赖的各模块 Test文件夹下依赖的各模块 友情提示:具体内容参照下面资料,以上是个人学习实验所得! 参考文献 AMD及requireJs ..
2020-12-17 16:37:49
516
原创 c#中日期与时间戳互转
c#中日期与时间戳互转 日期转时间戳 将c# DateTime时间格式转换为Unix时间戳格式 public static long ConvertDateTimeToInt(System.DateTime time) { System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0));
2020-12-17 16:02:16
1142
sql脚本批量刷入数据库(源代码).zip
2019-06-17
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅