<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>MS SQL教程</title>
<link>http://www.lyttzx.com/plus/list.php?tid=13</link>
<description>数据库编程 / MS SQL教程</description>
<language>zh-cn</language>
<generator><![CDATA[Copyright &amp;copy; 2006 - 2008 http://www.lyttzx.com.泠云天天在线 All Rights Reserved&lt;br&gt;
	本站部分作品来源于网络，如若侵犯到您得权益，&lt;a href=&quot;mailto:lyttzx@lyttzx.com?subject=你侵犯我的权益&quot;&gt;&lt;b&gt;请与我们联系&lt;/b&gt;&lt;/a&gt;，泠云工作室将在第一时间作出回应&lt;br&gt;
	站长姓名：&lt;a href=&quot;mailto:lingyunyyh@sohu.com?subject=我有话说&quot;&gt;&lt;b&gt;泠云&lt;/b&gt;&lt;/a&gt;   
	站长邮箱：&lt;b&gt;lingyunyyh@sohu.com&lt;/b&gt;   
	站长QQ：&lt;a href=&quot;http://wpa.qq.com/msgrd?V=1&amp;amp;Uin=359167026&amp;amp;Site=www.lyttzx.com &amp;amp;Menu=no&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;359167026&lt;/b&gt;&lt;/a&gt;]]></generator>
<webmaster>lingyunyyh@163.com</webmaster>
<item>
    <title><![CDATA[Sql中split方法实现]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=6350</link>
    <description><![CDATA[--支持分割符多字节 --使用方法 --select * from dbo.split('abc-def-ghi-jkl','-') --select * from dbo.split('abc----def----ghi----jkl','----') ALTER FUNCTION [ dbo ] . [ split ] ( @Long_str varchar ( 8000 ) , @split_str varchar ( 1]]></description>
    <pubDate>2011-03-30</pubDate>
    <category>MS SQL教程</category>
    <author>编程狂</author>
    <comments>泠云天天在线</comments>
</item>
<item>
    <title><![CDATA[分页存储过程（五）在MS SQL Server中打造更加准确]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=5811</link>
    <description><![CDATA[以前的分页我都是主子表join查询，然后会出现下面的记录形式，返回时一个数据集合 订单1 明细1.1 订单1 明细1.2 订单1 明细1.3 订单2 明细2.1 订单2 明细2.2 这样的话，就造成大量的数据]]></description>
    <pubDate>2010-06-12</pubDate>
    <category>MS SQL教程</category>
    <author>编程狂</author>
    <comments>泠云天天在线</comments>
</item>
<item>
    <title><![CDATA[分页存储过程（四）在MS SQL Server中打造更加准确]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=5810</link>
    <description><![CDATA[在上一篇分页存储过程（三）在MS SQL Server中打造更加准确的分页结果 中，我虽然抛弃了大家不喜欢的游标，但是临时表还是存在的，但是 ascrat 老兄的意思被我误解了一半，所以，哈哈]]></description>
    <pubDate>2010-06-12</pubDate>
    <category>MS SQL教程</category>
    <author>编程狂</author>
    <comments>泠云天天在线</comments>
</item>
<item>
    <title><![CDATA[分页存储过程（三）在MS SQL Server中打造更加准确]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=5809</link>
    <description><![CDATA[昨天的那篇 分页存储过程（二）在MS SQL Server中返回更加准确的分页结果 中使用了游标，有很多热心的朋友参与讨论，感谢大家的参与。 有人提出游标不好，会锁定行，幸亏我锁定的是]]></description>
    <pubDate>2010-06-12</pubDate>
    <category>MS SQL教程</category>
    <author>编程狂</author>
    <comments>泠云天天在线</comments>
</item>
<item>
    <title><![CDATA[分页存储过程（二）在MS SQL Server中返回更加准确]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=5808</link>
    <description><![CDATA[MS SQL Server的查询计划的相关内容，可以利用它优化SQL,引用:初探Sql Server 执行计划及Sql查询优化 ]]></description>
    <pubDate>2010-06-12</pubDate>
    <category>MS SQL教程</category>
    <author>编程狂</author>
    <comments>泠云天天在线</comments>
</item>
<item>
    <title><![CDATA[分页存储过程（一）使用SQL Server2005的新函数构造]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=5807</link>
    <description><![CDATA[ 分页存储过程一直是很多人经常用到的东西，怎么样才能设计一个既实用，又强大，还可以解决大数据量的分页存储过程呢？其实在很多时候设计的度还是要把握的，不至于让自己陷入【非要]]></description>
    <pubDate>2010-06-12</pubDate>
    <category>MS SQL教程</category>
    <author>编程狂</author>
    <comments>泠云天天在线</comments>
</item>
<item>
    <title><![CDATA[执行缓存以优化SQL Server的内存占用]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=5058</link>
    <description><![CDATA[在论坛上常见有朋友抱怨，说SQL Server太吃内存了。这里笔者根据经验简单介绍一下内存相关的调优知识。首先说明一下SQL Server内存占用由哪几部分组成。SQL Server占用的内存主要由三部分组成：]]></description>
    <pubDate>2010-02-09</pubDate>
    <category>MS SQL教程</category>
    <author>编程狂</author>
    <comments>泠云天天在线</comments>
</item>
<item>
    <title><![CDATA[关于sql server 2005 未开放1433端口的问题]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4175</link>
    <description><![CDATA[有些sql server 2005在安装过程中，可能将SQL server 服务的端口配置成了动态端口，没有使用默认的1433端口，从而导致了sql server 2005 的服务启动了，但是却没有开启1433端口。解决办法就是取消动态]]></description>
    <pubDate>2009-11-10</pubDate>
    <category>MS SQL教程</category>
    <author>编程狂</author>
    <comments>泠云天天在线</comments>
</item>
<item>
    <title><![CDATA[SQL&amp;nbsp;Server&amp;nbsp;2005大批量数据操作使用实例]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4102</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-21</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQL语句优化的原则]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4101</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-21</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQL提高速度注意事项]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4100</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-21</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[在连接SQL Server 2005出现&amp;quot;error: 40 &amp;amp;quo]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4099</link>
    <description><![CDATA[错误:在连接到 SQL Server 2005 时，在默认的设置下 SQL Server 不允许进行远程连接可能会导致此失败。 (provider: 命名管道提供程序, error: 40 - 无法打开到 SQL Server 的连接) DAŽ`bbs.51aspx.comHl^c]]></description>
    <pubDate>2009-07-16</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[把数据库改成紧急模式]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4090</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-13</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[sql&amp;nbsp;server&amp;nbsp;2005中触发器可以用时间来触发么]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4089</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-13</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[sql&amp;nbsp;server数据库中选出指定范围的行的sql语句写法]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4088</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-09</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[sql&amp;nbsp;server&amp;nbsp;2005对海量数据处理_数据库技巧]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4087</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-09</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[sql&amp;nbsp;server&amp;nbsp;2005下的分页sql_数据库技巧]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4086</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-09</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQLServer数据库恢复]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4085</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-09</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[错误&amp;nbsp;5173:不能使文件与不同的数据库相关]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4084</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-07-07</pubDate>
    <category>MS SQL教程</category>
    <author>原创</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[Sql&amp;nbsp;Server实现C#中Split(new&amp;nbsp;char[]{&amp;#39;,&amp;#39;,&amp;#39;+]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=4034</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-06-09</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[学习SQL2005当中的例子]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2660</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[开发环境下优化SQl语句的十个重要步骤]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2659</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[轻松掌握SQL&amp;nbsp;Sever中各种语句的完整语法]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2658</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[Microsoft&amp;nbsp;SQL&amp;nbsp;Server&amp;nbsp;2008&amp;nbsp;Express版本]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2657</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[跟我学SQL：(九)datetime和interval数据类型]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2656</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[跟我学SQL：(八)数值数据类型]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2655</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[跟我学SQL：(七)从子表里删除数据]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2654</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[跟我学SQL：(六)串行数据类型]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2653</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[跟我学SQL：(五)创建和修改表格]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2652</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[跟我学SQL：(四)查询多个表格]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2651</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[跟我学SQL：(三)使用SQL子选择来合并查询]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2650</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[跟我学SQL：(二)&amp;nbsp;SELECT语句选项]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2649</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[跟我学SQL：(一)数据查询]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2648</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[全面接触SQL语法(7)]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2647</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[全面接触SQL语法(6)]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2646</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[全面接触SQL语法(5)]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2645</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[全面接触SQL语法(4)]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2644</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[全面接触SQL语法(3)]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2643</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[全面接触SQL语法(2)]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2642</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[全面接触SQL语法(1)]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2641</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQL中DATALENGTH&amp;nbsp;用法]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2640</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[数据仓库的概念]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2639</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[使用MS&amp;nbsp;SQL7的LINKED&amp;nbsp;SERVER第四篇]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2638</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQL&amp;nbsp;Server&amp;nbsp;2008&amp;nbsp;CTP测试版与应用软件连接问题详解]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2011</link>
    <description><![CDATA[]]></description>
    <pubDate>2008-09-02</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQL&amp;nbsp;Server&amp;nbsp;2008&amp;nbsp;新版CTP特性解读]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2010</link>
    <description><![CDATA[]]></description>
    <pubDate>2008-09-02</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQL&amp;nbsp;Server&amp;nbsp;2008对T-SQL语言的增强]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2009</link>
    <description><![CDATA[]]></description>
    <pubDate>2008-09-02</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[解读SQL&amp;nbsp;Server&amp;nbsp;2008的新语句MERGE]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2008</link>
    <description><![CDATA[]]></description>
    <pubDate>2008-09-02</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQL&amp;nbsp;Server&amp;nbsp;2008：传递表值参数]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2007</link>
    <description><![CDATA[]]></description>
    <pubDate>2008-09-02</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQL&amp;nbsp;Server&amp;nbsp;2008中新的日期时间数据类型]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2006</link>
    <description><![CDATA[]]></description>
    <pubDate>2008-09-02</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>
<item>
    <title><![CDATA[SQL&amp;nbsp;Server&amp;nbsp;2008之备份压缩]]></title>
    <link>http://www.lyttzx.com/plus/view.php?aid=2005</link>
    <description><![CDATA[]]></description>
    <pubDate>2008-09-02</pubDate>
    <category>MS SQL教程</category>
    <author>佚名</author>
    <comments>本站整理</comments>
</item>

</channel>
</rss>

