10 2014 档案

摘要:管理员身份运行 cmd -> 输入 netsh winsock reset 阅读全文
posted @ 2014-10-12 15:24 Rain520 阅读(1110) 评论(0) 推荐(0)
摘要:with temp as( select 'A01' nation ,1 as S1,2 as S2, 3 as S3 from dual union all select 'A02' nation ,null as S1,5 as S2, 6 as S3 from dual)select ... 阅读全文
posted @ 2014-10-11 00:01 Rain520 阅读(192) 评论(0) 推荐(0)
摘要:首先,如果没有启用xp_cmdshell,请执行以下启用:EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE;1.创建映射:exec maste... 阅读全文
posted @ 2014-10-09 17:02 Rain520 阅读(3134) 评论(1) 推荐(0)
摘要:private string GetKey(string areaId, string type, string date, string appId, string privateKey) { var hmac = HMACSHA1.Create(); ... 阅读全文
posted @ 2014-10-09 14:48 Rain520 阅读(610) 评论(2) 推荐(0)