﻿<?xml version="1.0" encoding="utf-8" ?><?xml-stylesheet type="text/xsl" href="/Styles/WebBarRss.xslt"?>
<rss version="2.0">
  <channel>
    <title>WebBar网站制作学习吧</title>
    <link>http://localhost:1413/</link>
    <description>网站前台制作，后台编程等技术</description>
    <item>
      <title><![CDATA[无需编程直接利用图形界面导入导出的方法]]></title>
      <link>http://localhost:1413/Article/294.aspx</link>
      <description><![CDATA[目前，从SQL导出到MySQL的方法有很多，现在我来介绍一种无需编程，直接利用SQL和MySQL里的图形界面进行导入导出的方法。 ]]></description>
      <author>yashi</author>
      <pubDate>2008-03-18 14:10</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[教你快速掌握 MySQL数据库中触发器的应用  （1）]]></title>
      <link>http://localhost:1413/Article/293.aspx</link>
      <description><![CDATA[触发器是MySQL 5.x的新功能，随着5.x代码树新版本的出现，这一功能也逐渐得到改善。在本文中，我将简单介绍如何定义并使用触发器，查看触发器状态，并如何在使用完毕后删除触发器。我还将为你展示一个触发器在现实世界中的应用实例，并检验它对数据库记录的改变。 

]]></description>
      <author>MySQL数据库</author>
      <pubDate>2008-03-18 14:10</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[将数据从MySQL迁移到 Oracle的注意事项]]></title>
      <link>http://localhost:1413/Article/292.aspx</link>
      <description><![CDATA[问：把数据从MySQL迁移到Oracle需要注意些什么？


答：以下是MySQL迁到Oracle需要掌握的注意事项，希望对你有所帮助。
]]></description>
      <author>933013</author>
      <pubDate>2008-03-18 14:10</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[解析：怎样在MySQL中获得更好的搜索结果  （1）]]></title>
      <link>http://localhost:1413/Article/289.aspx</link>
      <description><![CDATA[目前，很多互联网应用程序都提供了全文搜索功能，用户可以使用一个词或者词语片断作为查询项目来定位匹配的记录。在后台，这些程序使用在一个SELECT查询中的LIKE语句来执行这种查询，尽管这种方法可行，但对于全文查找而言，这是一种效率极端低下的方法，尤其在处理大量数据的时候。]]></description>
      <author>bosinvhai</author>
      <pubDate>2008-03-18 14:10</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[怎样正确的解决 MySQL 中文模糊检索问题]]></title>
      <link>http://localhost:1413/Article/287.aspx</link>
      <description><![CDATA[在 MySQL 下，在进行中文模糊检索时，经常会返回一些与之不相关的记录，如查找 "%a%" 时，返回的可能有中文字符，却没有 a 字符存在。本人以前也曾遇到过类似问题，经详细阅读 MySQL 的 Manual ，发现可以有一种方法很方便的解决并得到满意的结果。 ]]></description>
      <author>yashi</author>
      <pubDate>2008-03-18 14:10</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[轻松了解十个重要的 MySQL客户启动选项]]></title>
      <link>http://localhost:1413/Article/286.aspx</link>
      <description><![CDATA[很多管理员都知道MySQL数据库管理系统（RDBMS）是高度灵活的软件块，带有范围广阔的启动选项，可以用来修改相关行为。然而，一些管理员却可能不清楚，标准MySQL客户端带有同等大量的启动选项，其中一些在日常MySQL交互作用中极为有用。这些选项本身不是“秘密”，而它们中很多未被使用，甚至其中一些可以显著利于服务器交互作用的过程处理。 ]]></description>
      <author>618932</author>
      <pubDate>2008-03-18 14:08</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[教你轻松掌握如何保护MySQL中的重要数据]]></title>
      <link>http://localhost:1413/Article/272.aspx</link>
      <description><![CDATA[企业最有价值的资产通常是其数据库中的客户或产品信息。因此，在这些企业中，数据库管理的一个重要部分就是保护这些数据免受外部攻击，及修复软/硬件故障。 ]]></description>
      <author>changelive</author>
      <pubDate>2008-03-18 14:06</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[解析：优化MySQL数据库性能的几个好方法  （1）]]></title>
      <link>http://localhost:1413/Article/271.aspx</link>
      <description><![CDATA[MySQL可以很好的支持大数据量的存取，但是一般说来，数据库中的表越小，在它上面执行的查询也就会越快。因此，在创建表的时候，为了获得更好的性能，我们可以将表中字段的宽度设得尽可能小。例如，在定义邮政编码这个字段时，如果将其设置为CHAR(255),显然给数据库增加了不必要的空间，甚至使用VARCHAR这种类型也是多余的，因为CHAR(6)就可以很好的完成任务了。同样的，如果可以的话，我们应该使用MEDIUMINT而不是BIGIN来定义整型字段。 

]]></description>
      <author>41317</author>
      <pubDate>2008-03-18 14:06</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[细化解析：怎样把你的 MySQL 完全中文化  （1）]]></title>
      <link>http://localhost:1413/Article/270.aspx</link>
      <description><![CDATA[由于系统自带的MySQL默认字符集不是gbk,因此给数据库的推广应用以及中文程序的开发带来极大的不便,在没完没了的GBK和UTF8的转换过程中消耗了我们无数的精力以及系统的资源。]]></description>
      <author>136921</author>
      <pubDate>2008-03-18 14:06</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[带你轻松接触 MySQL中损坏的MyISAM表]]></title>
      <link>http://localhost:1413/Article/269.aspx</link>
      <description><![CDATA[如果你的表变得频繁损坏，你应该试着确定为什么会这样的原因。要明白的最重要的事是表变得损坏是不是因为服务器崩溃的结果。你可以在错误日志中查找最近的restarted mysqld消息来早期验证这个。如果存在这样一个消息，则表损坏是服务器死掉的一个结果是很有可能的。否则，损坏可能在正常操作中发生。这是一个缺陷。你应该试着创建一个展示这个问题的可重复生成的测试案例。 

]]></description>
      <author>823012</author>
      <pubDate>2008-03-18 14:06</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[细化解析：与浮点比较有关的几个问题]]></title>
      <link>http://localhost:1413/Article/268.aspx</link>
      <description><![CDATA[注释：以下部分主要与DOUBLE和FLOAT列相关，原因在于浮点数的不准确本质。MySQL使用64位十进制数值的精度执行DECIMAL操作，当处理DECIMAL列时，应能解决大多数常见的不准确问题。 ]]></description>
      <author>yashi</author>
      <pubDate>2008-03-18 14:06</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[解析：教你轻松的掌握 ENUM和SET约束]]></title>
      <link>http://localhost:1413/Article/267.aspx</link>
      <description><![CDATA[如果使用了INSERT IGNORE或UPDATE IGNORE，在严格模式下，可抑制无效值导致的错误。在这种情况下，将生成警告而不是错误。对于ENUM，值将作为错误成员(0)插入。对于SET，会将给定值插入，但无效的子字符串将被删除。例如，'a,x,b,y'的结果是'a,b'，就像前面介绍的那样。 ]]></description>
      <author>38291</author>
      <pubDate>2008-03-18 14:06</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[解析：以mysql_开始的未定义引用错误]]></title>
      <link>http://localhost:1413/Article/266.aspx</link>
      <description><![CDATA[]]></description>
      <author>92381</author>
      <pubDate>2008-03-18 14:06</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[如何正确编写高质量高性能的MySQL语法  （1）]]></title>
      <link>http://localhost:1413/Article/265.aspx</link>
      <description><![CDATA[]]></description>
      <author>xiaoqiao</author>
      <pubDate>2008-03-18 14:06</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[轻松解决 MySQL数据库字符集的出错问题]]></title>
      <link>http://localhost:1413/Article/256.aspx</link>
      <description><![CDATA[]]></description>
      <author>wodegangwan</author>
      <pubDate>2008-03-18 14:05</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[细化解析：MySQL 搜索中的大小写敏感性]]></title>
      <link>http://localhost:1413/Article/255.aspx</link>
      <description><![CDATA[]]></description>
      <author>yashi</author>
      <pubDate>2008-03-18 14:03</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[如何正确的解决 MySQL中忽略用户的现象]]></title>
      <link>http://localhost:1413/Article/254.aspx</link>
      <description><![CDATA[]]></description>
      <author>359211</author>
      <pubDate>2008-03-18 14:03</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[细化解析：如何正确的更改表中的列顺序]]></title>
      <link>http://localhost:1413/Article/253.aspx</link>
      <description><![CDATA[]]></description>
      <author>12891</author>
      <pubDate>2008-03-18 14:03</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[快速掌握 MySQL数据库中Show命令的用法]]></title>
      <link>http://localhost:1413/Article/252.aspx</link>
      <description><![CDATA[]]></description>
      <author>83146</author>
      <pubDate>2008-03-18 14:03</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[轻松掌握 MySQL的数字类型以及建库策略]]></title>
      <link>http://localhost:1413/Article/251.aspx</link>
      <description><![CDATA[]]></description>
      <author>93612</author>
      <pubDate>2008-03-18 14:03</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[怎样处理 MySQL中与文件许可有关的问题]]></title>
      <link>http://localhost:1413/Article/249.aspx</link>
      <description><![CDATA[]]></description>
      <author>30941</author>
      <pubDate>2008-03-18 14:03</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[教你快速实现 MySQL查询结果的分页显示]]></title>
      <link>http://localhost:1413/Article/248.aspx</link>
      <description><![CDATA[]]></description>
      <author>984201</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[解析：MySQL对“服务器端光标”的 限制]]></title>
      <link>http://localhost:1413/Article/247.aspx</link>
      <description><![CDATA[]]></description>
      <author>服务器端光标的限制</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[解析：如何处理未被适当关闭的表的问题]]></title>
      <link>http://localhost:1413/Article/246.aspx</link>
      <description><![CDATA[]]></description>
      <author>39217</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[带你轻松接触MaxDB和MySQL之间的协同性]]></title>
      <link>http://localhost:1413/Article/245.aspx</link>
      <description><![CDATA[]]></description>
      <author>788492</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[快速解决 MySQL中与浮点比较有关的问题]]></title>
      <link>http://localhost:1413/Article/244.aspx</link>
      <description><![CDATA[]]></description>
      <author>846281</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[细化解析：Mysql数据库对文件操作的封装]]></title>
      <link>http://localhost:1413/Article/243.aspx</link>
      <description><![CDATA[]]></description>
      <author>39081</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[细化解析：备份MySQL数据库的另类方法   （1）]]></title>
      <link>http://localhost:1413/Article/242.aspx</link>
      <description><![CDATA[]]></description>
      <author>392873</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL数据库的临时文件究竟储存在哪里]]></title>
      <link>http://localhost:1413/Article/238.aspx</link>
      <description><![CDATA[]]></description>
      <author>59103</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[在MySQL数据库中如何修改密码及访问限制  （1）]]></title>
      <link>http://localhost:1413/Article/234.aspx</link>
      <description><![CDATA[]]></description>
      <author>xiaoqiao</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[带你轻松接触Oracle 9i的内存泄漏问题]]></title>
      <link>http://localhost:1413/Article/228.aspx</link>
      <description><![CDATA[]]></description>
      <author>19033</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[怎样修改MySQL数据库中一个用户的密码]]></title>
      <link>http://localhost:1413/Article/227.aspx</link>
      <description><![CDATA[]]></description>
      <author>72113</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[不能通过mysql.sock连接MySQL问题的方法]]></title>
      <link>http://localhost:1413/Article/226.aspx</link>
      <description><![CDATA[]]></description>
      <author>46791</author>
      <pubDate>2008-03-18 14:01</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[教你快速掌握如何向MySQL的表中录入数据  （1）]]></title>
      <link>http://localhost:1413/Article/225.aspx</link>
      <description><![CDATA[]]></description>
      <author>39113</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL数据库安装后 具体需要做哪些调整]]></title>
      <link>http://localhost:1413/Article/224.aspx</link>
      <description><![CDATA[]]></description>
      <author>19316</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[提高MySQL数据库查询效率的三个实用技巧  （1）]]></title>
      <link>http://localhost:1413/Article/215.aspx</link>
      <description><![CDATA[]]></description>
      <author>17819</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[怎样在Oracle数据库中实现搜索分页查询]]></title>
      <link>http://localhost:1413/Article/214.aspx</link>
      <description><![CDATA[]]></description>
      <author>38193</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[如何正确的编写高质量高性能的MySQL语法   （1）]]></title>
      <link>http://localhost:1413/Article/213.aspx</link>
      <description><![CDATA[]]></description>
      <author>93611</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[轻松接触MySQL数据库所支持的操作系统  （1）]]></title>
      <link>http://localhost:1413/Article/212.aspx</link>
      <description><![CDATA[]]></description>
      <author>10361</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[教你快速掌握MaxDB和MySQL之间的特性差异]]></title>
      <link>http://localhost:1413/Article/211.aspx</link>
      <description><![CDATA[]]></description>
      <author>38103</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[带你轻松接触MaxDB和MySQL之间的协同性]]></title>
      <link>http://localhost:1413/Article/210.aspx</link>
      <description><![CDATA[]]></description>
      <author>33061</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[教你快速解决主机host_name被屏蔽的现象]]></title>
      <link>http://localhost:1413/Article/209.aspx</link>
      <description><![CDATA[]]></description>
      <author>33610</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[讲解MySQL数据库搜索中的大小写敏感性]]></title>
      <link>http://localhost:1413/Article/208.aspx</link>
      <description><![CDATA[]]></description>
      <author>90710</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[实例讲解MySQL中与NULL值有关的疑难问题]]></title>
      <link>http://localhost:1413/Article/207.aspx</link>
      <description><![CDATA[]]></description>
      <author>10952</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[在mysqld_multi单机环境下启动多个mysql]]></title>
      <link>http://localhost:1413/Article/206.aspx</link>
      <description><![CDATA[]]></description>
      <author>89103</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[数据从MySQL迁移到Oracle需要注意些什么]]></title>
      <link>http://localhost:1413/Article/205.aspx</link>
      <description><![CDATA[]]></description>
      <author>90361</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[在MySQL数据库中如何来复位根用户的密码   （1）]]></title>
      <link>http://localhost:1413/Article/204.aspx</link>
      <description><![CDATA[]]></description>
      <author>399103</author>
      <pubDate>2008-03-18 13:58</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[用MySQL做站点时如何记录未知错误的发生]]></title>
      <link>http://localhost:1413/Article/203.aspx</link>
      <description><![CDATA[]]></description>
      <author>30136</author>
      <pubDate>2008-03-18 13:57</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL存储程序、函数以及复制的相关问题]]></title>
      <link>http://localhost:1413/Article/202.aspx</link>
      <description><![CDATA[]]></description>
      <author>38199</author>
      <pubDate>2008-03-18 13:57</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL数据库中丢失root密码后应当如何补救]]></title>
      <link>http://localhost:1413/Article/201.aspx</link>
      <description><![CDATA[]]></description>
      <author>10036</author>
      <pubDate>2008-03-18 13:55</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[在使用MySQL数据库时所应注意的几个地方]]></title>
      <link>http://localhost:1413/Article/200.aspx</link>
      <description><![CDATA[]]></description>
      <author>30936</author>
      <pubDate>2008-03-18 13:53</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL数据库中的各种乱码及其解决方法]]></title>
      <link>http://localhost:1413/Article/199.aspx</link>
      <description><![CDATA[]]></description>
      <author>30133</author>
      <pubDate>2008-03-18 13:53</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[实例讲解MySQL字符集出错的解决方法]]></title>
      <link>http://localhost:1413/Article/198.aspx</link>
      <description><![CDATA[]]></description>
      <author>90361</author>
      <pubDate>2008-03-18 13:53</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[带你轻松接触MySQL数据库的出错代码列表]]></title>
      <link>http://localhost:1413/Article/197.aspx</link>
      <description><![CDATA[]]></description>
      <author>30369</author>
      <pubDate>2008-03-18 13:53</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL数据库备份恢复的两个实用方法  （1）]]></title>
      <link>http://localhost:1413/Article/196.aspx</link>
      <description><![CDATA[]]></description>
      <author>20733</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[巧用ＪＤＢＣ实现对MySQL的“增删改查”]]></title>
      <link>http://localhost:1413/Article/195.aspx</link>
      <description><![CDATA[]]></description>
      <author>10933</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[详细讲解如何导入和导出MySQL数据库   （1）]]></title>
      <link>http://localhost:1413/Article/194.aspx</link>
      <description><![CDATA[]]></description>
      <author>10336</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[实例讲解MySQL数据库中文问题的解决方法]]></title>
      <link>http://localhost:1413/Article/192.aspx</link>
      <description><![CDATA[]]></description>
      <author>30633</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[怎样在MySQL数据库中导出整个数据库]]></title>
      <link>http://localhost:1413/Article/193.aspx</link>
      <description><![CDATA[]]></description>
      <author>67301</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[详细讲解MySQL数据库中Show命令的用法]]></title>
      <link>http://localhost:1413/Article/190.aspx</link>
      <description><![CDATA[]]></description>
      <author>36039</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[在MySQL数据库中如何为用户设置密码]]></title>
      <link>http://localhost:1413/Article/191.aspx</link>
      <description><![CDATA[]]></description>
      <author>20936</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[如何使用"MySQL-Proxy"实现读写分离]]></title>
      <link>http://localhost:1413/Article/189.aspx</link>
      <description><![CDATA[]]></description>
      <author>20933</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[带你轻松接触"MySQL"数据库的存储过程  （1）]]></title>
      <link>http://localhost:1413/Article/188.aspx</link>
      <description><![CDATA[]]></description>
      <author>36193</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[教你快速掌握"Mysql Limit"的操作流程]]></title>
      <link>http://localhost:1413/Article/187.aspx</link>
      <description><![CDATA[]]></description>
      <author>20933</author>
      <pubDate>2008-03-18 13:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[轻松掌握用户，角色，功能之间的关系视图]]></title>
      <link>http://localhost:1413/Article/186.aspx</link>
      <description><![CDATA[]]></description>
      <author>36331</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[详细讲解MySQL数据库中Show的命令用法]]></title>
      <link>http://localhost:1413/Article/185.aspx</link>
      <description><![CDATA[]]></description>
      <author>20933</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[个人经验总结：数据库乱码问题的解决方法]]></title>
      <link>http://localhost:1413/Article/184.aspx</link>
      <description><![CDATA[]]></description>
      <author>20936</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[加速动态网站"MySQL"索引的分析和优化   （1）]]></title>
      <link>http://localhost:1413/Article/183.aspx</link>
      <description><![CDATA[]]></description>
      <author>10933</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[实例讲解如何使用C++操作MySQL数据库类]]></title>
      <link>http://localhost:1413/Article/182.aspx</link>
      <description><![CDATA[]]></description>
      <author>10933</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MyISAM引擎和Heap引擎执行速度的性能测试  （1）]]></title>
      <link>http://localhost:1413/Article/181.aspx</link>
      <description><![CDATA[]]></description>
      <author>30933</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MyISAM引擎与InnoDB引擎性能的简单测试  （1）]]></title>
      <link>http://localhost:1413/Article/180.aspx</link>
      <description><![CDATA[]]></description>
      <author>361313</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL Proxy─官方MySQL连接池和代理工具]]></title>
      <link>http://localhost:1413/Article/179.aspx</link>
      <description><![CDATA[]]></description>
      <author>10339</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[快速掌握分布式数据库全局名与数据库链]]></title>
      <link>http://localhost:1413/Article/178.aspx</link>
      <description><![CDATA[]]></description>
      <author>20962</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[向MySQL数据库的表中录入数据的实用方法  （1）]]></title>
      <link>http://localhost:1413/Article/177.aspx</link>
      <description><![CDATA[]]></description>
      <author>30933</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[处理MySQL数据库中与文件许可有关的问题]]></title>
      <link>http://localhost:1413/Article/176.aspx</link>
      <description><![CDATA[]]></description>
      <author>10933</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[详细讲解MySQL数据库对文件操作的封装]]></title>
      <link>http://localhost:1413/Article/175.aspx</link>
      <description><![CDATA[]]></description>
      <author>10933</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[正确认识"MySQL"搜索中的大小写敏感性]]></title>
      <link>http://localhost:1413/Article/174.aspx</link>
      <description><![CDATA[]]></description>
      <author>10339</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[教你快速掌握更改表中列顺序的好方法]]></title>
      <link>http://localhost:1413/Article/173.aspx</link>
      <description><![CDATA[]]></description>
      <author>47810</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[在MySQL数据库中应当如何实施info()函数]]></title>
      <link>http://localhost:1413/Article/171.aspx</link>
      <description><![CDATA[]]></description>
      <author>10933</author>
      <pubDate>2008-03-18 13:51</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[教你快速掌握如何记录“未知错误”的发生]]></title>
      <link>http://localhost:1413/Article/169.aspx</link>
      <description><![CDATA[]]></description>
      <author>30193</author>
      <pubDate>2008-03-18 13:49</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[巧用命令测试MySQL服务器是否正常工作]]></title>
      <link>http://localhost:1413/Article/167.aspx</link>
      <description><![CDATA[]]></description>
      <author>30961</author>
      <pubDate>2008-03-18 13:47</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[详细讲解如何为MySQL数据库添加新函数]]></title>
      <link>http://localhost:1413/Article/166.aspx</link>
      <description><![CDATA[]]></description>
      <author>20961</author>
      <pubDate>2008-03-18 13:45</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[解决MySQL数据库中与优化器有关的问题]]></title>
      <link>http://localhost:1413/Article/165.aspx</link>
      <description><![CDATA[]]></description>
      <author>10961</author>
      <pubDate>2008-03-18 13:45</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[深入了解MySQL的数据类型以及建库策略]]></title>
      <link>http://localhost:1413/Article/164.aspx</link>
      <description><![CDATA[]]></description>
      <author>84171</author>
      <pubDate>2008-03-18 13:45</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[数据库中的Date,DateTime和TimeStamp类型  （1）]]></title>
      <link>http://localhost:1413/Article/163.aspx</link>
      <description><![CDATA[]]></description>
      <author>28413</author>
      <pubDate>2008-03-18 13:45</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[如果忘记了MySQL的root密码应当如何取回]]></title>
      <link>http://localhost:1413/Article/162.aspx</link>
      <description><![CDATA[]]></description>
      <author>liangchen</author>
      <pubDate>2008-03-18 13:45</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[带你深入了解MySQL语句优化的基本原则   （1）]]></title>
      <link>http://localhost:1413/Article/161.aspx</link>
      <description><![CDATA[]]></description>
      <author>10633</author>
      <pubDate>2008-03-18 13:45</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[利用"c3p0"配置数据库连接的实例脚本]]></title>
      <link>http://localhost:1413/Article/160.aspx</link>
      <description><![CDATA[]]></description>
      <author>39703</author>
      <pubDate>2008-03-18 13:45</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[详细讲解MySQL数据库对文件操作的封装]]></title>
      <link>http://localhost:1413/Article/159.aspx</link>
      <description><![CDATA[]]></description>
      <author>10933</author>
      <pubDate>2008-03-18 13:45</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL数据库中的重要数据应当如何保护]]></title>
      <link>http://localhost:1413/Article/158.aspx</link>
      <description><![CDATA[]]></description>
      <author>谭劲东</author>
      <pubDate>2008-03-18 13:44</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[利用MySQL加密函数保护Web网站的敏感数据  （1）]]></title>
      <link>http://localhost:1413/Article/157.aspx</link>
      <description><![CDATA[]]></description>
      <author>handan</author>
      <pubDate>2008-03-18 13:44</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[怎样修改MySQL中遗失的"ROOT"用户密码]]></title>
      <link>http://localhost:1413/Article/156.aspx</link>
      <description><![CDATA[]]></description>
      <author>chonglin</author>
      <pubDate>2008-03-18 13:44</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL中值得我们注意的几个"SQL"语句]]></title>
      <link>http://localhost:1413/Article/155.aspx</link>
      <description><![CDATA[]]></description>
      <author>Linxiner</author>
      <pubDate>2008-03-18 13:44</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[通过数据仓库来实现少花钱多办事的目的]]></title>
      <link>http://localhost:1413/Article/153.aspx</link>
      <description><![CDATA[]]></description>
      <author>陈雅诗</author>
      <pubDate>2008-03-18 13:44</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL:使用源码分发版还是二进制分发版]]></title>
      <link>http://localhost:1413/Article/152.aspx</link>
      <description><![CDATA[]]></description>
      <author>yashi</author>
      <pubDate>2008-03-18 13:42</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[深入剖析MySQL数据库字符集的出错现象]]></title>
      <link>http://localhost:1413/Article/151.aspx</link>
      <description><![CDATA[]]></description>
      <author>Alice</author>
      <pubDate>2008-03-18 13:41</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[如何安装配置基于2台服务器的MySQL集群  （1）]]></title>
      <link>http://localhost:1413/Article/150.aspx</link>
      <description><![CDATA[]]></description>
      <author>Alizze</author>
      <pubDate>2008-03-18 13:41</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[带你轻松接触一个检测MySQL状态的脚本]]></title>
      <link>http://localhost:1413/Article/149.aspx</link>
      <description><![CDATA[]]></description>
      <author>雅诗</author>
      <pubDate>2008-03-18 13:41</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[实例讲解"MySQL"在记录不存在时的插入]]></title>
      <link>http://localhost:1413/Article/148.aspx</link>
      <description><![CDATA[]]></description>
      <author>Alizze</author>
      <pubDate>2008-03-18 13:41</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[深入讲解"InnoDB"和"MyISAM"的不同之处]]></title>
      <link>http://localhost:1413/Article/147.aspx</link>
      <description><![CDATA[]]></description>
      <author>秦含月</author>
      <pubDate>2008-03-18 13:41</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL的存储过程写法和"Cursor"的使用]]></title>
      <link>http://localhost:1413/Article/146.aspx</link>
      <description><![CDATA[]]></description>
      <author>小龙女</author>
      <pubDate>2008-03-18 13:41</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[SAVEPOINT和ROLLBACK TO SAVEPOINT语法]]></title>
      <link>http://localhost:1413/Article/145.aspx</link>
      <description><![CDATA[]]></description>
      <author>李明昭</author>
      <pubDate>2008-03-18 13:41</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[MySQL数据库中如何解决分组统计的问题]]></title>
      <link>http://localhost:1413/Article/144.aspx</link>
      <description><![CDATA[]]></description>
      <author>Alice</author>
      <pubDate>2008-03-18 13:41</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[如何为用户提供回滚操作时间的准确评估]]></title>
      <link>http://localhost:1413/Article/143.aspx</link>
      <description><![CDATA[在回滚长期运行的事务时，经常会有些用户不停地询问相同的问题。这些问题是合理的，因为该事务进行了锁定，正常的处理经常受到回滚进程的影响。 中国.网管联盟 ]]></description>
      <author>佚名</author>
      <pubDate>2008-03-07 14:53</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[Oracle 性能优化的基本方法概述]]></title>
      <link>http://localhost:1413/Article/142.aspx</link>
      <description><![CDATA[1）设立合理的性能优化目标。
2）测量并记录当前性能。
3）确定当前Oracle性能瓶颈（Oracle等待什么、哪些SQL语句是该等待事件的成分）。
4）把等待事件记入跟踪文件。
5）确定当前的OS瓶颈。
6）优化所需的成分（应用程序、数据库、I/O、争用、OS等）。
7）跟踪并实施更改控制过程。
8）测量并记录当前性能
9）重复步骤3到7，直到满足优化目标 ]]></description>
      <author>佚名</author>
      <pubDate>2008-03-07 14:52</pubDate>
      <comments>1</comments>
    </item>
    <item>
      <title><![CDATA[如何在Oracle存储过程中实现分页]]></title>
      <link>http://localhost:1413/Article/141.aspx</link>
      <description><![CDATA[几乎每一个WEB应用都会用到分页，因此，将其做得通用高效就变得非常重要了，根据自己的想法用存储过程做了一个分页的存储过程，与大家分享，希望能够通过讨论得到更好的解决方案。 ]]></description>
      <author>佚名</author>
      <pubDate>2008-03-07 14:49</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[怎样把Oracle查询转换为SQL Server]]></title>
      <link>http://localhost:1413/Article/140.aspx</link>
      <description><![CDATA[在把Oracle查询转换为SQL Server的时候要特别当心一些不容易注意到的问题。我们知道，T-SQL是SQL Server的语言引擎，而Oracle的语言引擎却是PLSQL.这两种查询语言都对 bbs.bitsCN.com ]]></description>
      <author>整理</author>
      <pubDate>2008-03-07 14:47</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[Oracle查询指定索引提高查询效率]]></title>
      <link>http://localhost:1413/Article/134.aspx</link>
      <description><![CDATA[Oracle查询指定索引提高查询效率]]></description>
      <author>54powerman</author>
      <pubDate>2008-03-06 16:56</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[oracle中如何删除重复数据]]></title>
      <link>http://localhost:1413/Article/133.aspx</link>
      <description><![CDATA[我们可能会出现这种情况，某个表原来设计不周全，导致表里面的数据数据重复，那么，如何对重复的数据进行删除呢？]]></description>
      <author>sunlen </author>
      <pubDate>2008-03-06 16:54</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[一篇好文章(有关SQL Server)]]></title>
      <link>http://localhost:1413/Article/132.aspx</link>
      <description><![CDATA[ 在这里，我不打算介绍使用SQL Server的窍门，也不能提供一个包治百病的方案，我所做的是总结一些经验----关于如何形成一个好的设计。这些经验来自我过去几年中经受的教训，一直来，我看到许多同样的设计错误被一次又一次的重复]]></description>
      <author>qdzx2008 </author>
      <pubDate>2008-03-06 16:52</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[SQL Server 2005中的T-SQL增强]]></title>
      <link>http://localhost:1413/Article/131.aspx</link>
      <description><![CDATA[SQL Server 2005中的T-SQL增强]]></description>
      <author>shoutor</author>
      <pubDate>2008-03-06 16:50</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[TOP N 和SET ROWCOUNT N 哪个更快？]]></title>
      <link>http://localhost:1413/Article/130.aspx</link>
      <description><![CDATA[在有合适的索引的时候，Top n和set rowcount n是一样快的。但是对于一个无序堆来说，top n更快。
原理自己看英文去。]]></description>
      <author>佚名</author>
      <pubDate>2008-03-06 16:27</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[金额阿拉伯数字转换为中文的存储过程]]></title>
      <link>http://localhost:1413/Article/129.aspx</link>
      <description><![CDATA[金额阿拉伯数字转换为中文的存储过程]]></description>
      <author>佚名</author>
      <pubDate>2008-03-06 16:25</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[简化SQL语句一例]]></title>
      <link>http://localhost:1413/Article/128.aspx</link>
      <description><![CDATA[举个例子，设表名为bbs 回复数的字段为renum 变量名$renum 记录序号字段为id 变量名$id 
]]></description>
      <author>佚名</author>
      <pubDate>2008-03-06 16:24</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[关于如何在查询结果中添加自动编号]]></title>
      <link>http://localhost:1413/Article/127.aspx</link>
      <description><![CDATA[往往经常有这样的需求，我需要在查询的结果中添加一列类似于Identity的数字，虽然在Client编程中并不难实现，但是有时我想留用现有的Class，不希望在Client side做额外的coding，那么就只有在Sql里面想办法了]]></description>
      <author>佚名</author>
      <pubDate>2008-03-06 16:21</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[怎样用SQL 2000 生成XML]]></title>
      <link>http://localhost:1413/Article/126.aspx</link>
      <description><![CDATA[以前在介绍SQL2k的时候已经提到了SQL2k对XML的支持，使用for XML语句就可以很容易的把执行的结果转化为一个XML，这样可以在很大程度上提高系统运行效率和开发速度，详细的内容请参见Books Online。]]></description>
      <author>佚名</author>
      <pubDate>2008-03-06 16:19</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[在Linux下访问MS SQL Server数据库]]></title>
      <link>http://localhost:1413/Article/125.aspx</link>
      <description><![CDATA[Linux作为一个免费的Unix类操作系统，以其开放性源代码、多任务、Xwindow等特点为众多的用户所采用，并有很多企业采用Linux来作为其内部网的全功能服务器(WWW，FTP，Email、DNS)。企业的内部网不仅要提供文本信息的访问，还要能提供对企业关系数据库中的信息的访问。SQL Server以其低成本、性能高以及与NT的有效集成等特性为许多企业所采用，但Microsoft不提供其Unix下的客户端，为这类应用带来了困难。本文则提出了这一问题的解决方案。]]></description>
      <author>佚名</author>
      <pubDate>2008-03-06 16:18</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[再谈文字溢出问题]]></title>
      <link>http://localhost:1413/Article/124.aspx</link>
      <description><![CDATA[于是又重新翻了以前怿飞斑竹的帖子，他提到的是注释引起的文字溢出问题，我今天看的时候发现在ie7下并没有产生多猪的问题(以前我没有装ie7，所以没有测试)，今天看到这个新帖子发现在ie下多了两个猪，至于解决的方法有很多种，发出来大家讨论下造成这种问题的原理怎么解释？
]]></description>
      <author>zoloadang</author>
      <pubDate>2008-03-06 16:10</pubDate>
      <comments>0</comments>
    </item>
    <item>
      <title><![CDATA[web标准页面知识必备]]></title>
      <link>http://localhost:1413/Article/123.aspx</link>
      <description><![CDATA[今天在群里，熊猫君提议整理一个帖子，一方面为初学者提供一个入门指南，另一方面也象借此和已经在从事这个行业进行一点交流。下面是我从事这个行当多年的一些经验总结，希望抛砖引玉，大家不吝赐教。]]></description>
      <author>benboba</author>
      <pubDate>2008-03-06 16:07</pubDate>
      <comments>0</comments>
    </item>
  </channel>
</rss>