﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>IT博客-在无线的空间里冥想-http://www.joymo.cn(无线开发)-随笔分类-经验</title><link>http://www.cnitblog.com/freemobile/category/3683.html</link><description>做SP人，想SP事(QQ:19149653)
http://www.joymo.cn爱角摩，爱无线生活</description><language>zh-cn</language><lastBuildDate>Wed, 28 Sep 2011 01:20:05 GMT</lastBuildDate><pubDate>Wed, 28 Sep 2011 01:20:05 GMT</pubDate><ttl>60</ttl><item><title>HTTP/1.1 新建会话失败解决</title><link>http://www.cnitblog.com/freemobile/archive/2007/09/13/33300.html</link><dc:creator>无线自由</dc:creator><author>无线自由</author><pubDate>Thu, 13 Sep 2007 03:17:00 GMT</pubDate><guid>http://www.cnitblog.com/freemobile/archive/2007/09/13/33300.html</guid><wfw:comment>http://www.cnitblog.com/freemobile/comments/33300.html</wfw:comment><comments>http://www.cnitblog.com/freemobile/archive/2007/09/13/33300.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/freemobile/comments/commentRss/33300.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/freemobile/services/trackbacks/33300.html</trackback:ping><description><![CDATA[出现HTTP/1.1 新建会话失败重启IIS服务也没有用，解决方法：<br>一、你的业务量大了，升级一下你的内存条；<br>二、加大你的虚拟内存空间，操作如下：我的电脑-&gt;属性-&gt;高级-&gt;性能-&gt;设置-&gt;高级-&gt;虚拟内存-&gt;更改。<br>然后自定义大小，建议最大值在1.5G以上。<br><img src ="http://www.cnitblog.com/freemobile/aggbug/33300.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/freemobile/" target="_blank">无线自由</a> 2007-09-13 11:17 <a href="http://www.cnitblog.com/freemobile/archive/2007/09/13/33300.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>SP自消费所用红卡、白卡</title><link>http://www.cnitblog.com/freemobile/archive/2006/09/18/16988.html</link><dc:creator>无线自由</dc:creator><author>无线自由</author><pubDate>Mon, 18 Sep 2006 06:40:00 GMT</pubDate><guid>http://www.cnitblog.com/freemobile/archive/2006/09/18/16988.html</guid><wfw:comment>http://www.cnitblog.com/freemobile/comments/16988.html</wfw:comment><comments>http://www.cnitblog.com/freemobile/archive/2006/09/18/16988.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/freemobile/comments/commentRss/16988.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/freemobile/services/trackbacks/16988.html</trackback:ping><description><![CDATA[所谓红卡是指运营商发行的打折卡，白卡就是不打折的充值卡。<br /><br />其实这两种卡如果用于正常的用户消费，对于运营商来说是没有任何影响的，但用于SP自消费，从收入的角度来说，红卡会使SP利用打折的差价挣运营商的钱，白卡会减少运营商的实际收入，因为信息费是要分成的；从管理的角度来说，如果SP靠自消费来提高自己的排名和“盈利”会伤害有序的行业竞争，使SP们不是专注业务本身，而是投机取巧。<br /><img src ="http://www.cnitblog.com/freemobile/aggbug/16988.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/freemobile/" target="_blank">无线自由</a> 2006-09-18 14:40 <a href="http://www.cnitblog.com/freemobile/archive/2006/09/18/16988.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>存储过程中将表名不可作为变量 </title><link>http://www.cnitblog.com/freemobile/archive/2006/08/31/16222.html</link><dc:creator>无线自由</dc:creator><author>无线自由</author><pubDate>Thu, 31 Aug 2006 09:08:00 GMT</pubDate><guid>http://www.cnitblog.com/freemobile/archive/2006/08/31/16222.html</guid><wfw:comment>http://www.cnitblog.com/freemobile/comments/16222.html</wfw:comment><comments>http://www.cnitblog.com/freemobile/archive/2006/08/31/16222.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/freemobile/comments/commentRss/16222.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/freemobile/services/trackbacks/16222.html</trackback:ping><description><![CDATA[create proc test @tablename varchar(50) as<br /> select * from + @tablename <br />这样会出错，提示要定义@tablename <br /><br />正确的做法如下： <br />create proc test @tablename varchar(50) as<br />declare @strSQL varchar(200) <br />set @strSQL = 'select * from ' + @tablename <br />exec(@strSQL) <br />形成SQL语句后通过EXEC执行 <img src ="http://www.cnitblog.com/freemobile/aggbug/16222.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/freemobile/" target="_blank">无线自由</a> 2006-08-31 17:08 <a href="http://www.cnitblog.com/freemobile/archive/2006/08/31/16222.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>