会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
wolf12
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
9
10
11
12
13
2014年4月4日
CRC16校验码生成
摘要: /// <summary> /// 计算CRC-16 /// </summary> /// <param name="data"></param> /// <returns>高位在前</returns> public byte [] CRC_16(string data) { if ((data.L
阅读全文
posted @ 2014-04-04 15:11 wolf12
阅读(2982)
评论(0)
推荐(0)
编辑
2014年4月3日
解决死锁SQL
摘要: USE [master]GO/****** Object: StoredProcedure [dbo].[p_lockinfo] Script Date: 04/03/2014 15:12:40 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO
阅读全文
posted @ 2014-04-03 15:13 wolf12
阅读(302)
评论(0)
推荐(0)
编辑
sql 执行时间
摘要: SET STATISTICS PROFILE ON SET STATISTICS IO ON SET STATISTICS TIME ON --GO /*--你的SQL脚本开始*/SELECT * FROM dbo.Station--GO /*--你的SQL脚本结束*/ SET STATISTICS
阅读全文
posted @ 2014-04-03 14:09 wolf12
阅读(163)
评论(0)
推荐(0)
编辑
2014年4月2日
获取datatable更新之前的数据
摘要: string dd = ds.Tables[0].Rows[0][0, DataRowVersion.Original].ToString() ;
阅读全文
posted @ 2014-04-02 13:00 wolf12
阅读(341)
评论(0)
推荐(0)
编辑
2014年3月20日
搜索存储过程中的信息
摘要: select name from sysobjects o, syscomments s where o.id = s.id and text like '%tempKYGS%'and o.xtype = 'P'
阅读全文
posted @ 2014-03-20 10:13 wolf12
阅读(141)
评论(0)
推荐(0)
编辑
上一页
1
···
9
10
11
12
13