<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>数据库基础/原理</title>
<link>http://im.vc/db/Dbfundamentals/</link>
<description>数据库 / 数据库基础/原理</description>
<language>zh-cn</language>
<generator><![CDATA[&lt;a href=&quot;javascript:;&quot; onclick=alert(&quot;我们觉得没啥好介绍的，所以就懒得写了\r\n放在这里就为了占位而已，你懂的！&quot;);return false;&gt;关于我们&lt;/a&gt; &lt;a href=&quot;mailto:admin@im.vc&quot; target=&quot;_blank&quot;&gt;联系我们&lt;/a&gt; &lt;a href=&quot;javascript:;&quot; onclick=alert(&quot;文章大部分都来源于互联网，你懂的！&quot;);return false;&gt;IM.VC声明&lt;/a&gt; &lt;a href=&quot;/data/rssmap.html&quot; target=&quot;_blank&quot;&gt;RSS订阅&lt;/a&gt; &lt;a href=&quot;/data/sitemap.html&quot; target=&quot;_blank&quot;&gt;网站地图&lt;/a&gt; &lt;a href=&quot;javascript:;&quot; onclick=this.style.behavior=&quot;url(#default#homepage)&quot;;this.setHomePage(&quot;http://im.vc&quot;); return false;&gt;设为首页&lt;/a&gt; &lt;a href=&quot;javascript:;&quot;  onclick=&quot;addFavorite(); return false&quot;&gt;加入收藏&lt;/a&gt; 粤ICP备11032241号&lt;br&gt;Copyright &amp;copy; 2011 IM.VC 版权所有]]></generator>
<webmaster>desdev@vip.qq.com</webmaster>
<item>
    <title><![CDATA[如何使用dbschema工具导出数据库的结构]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64969.html</link>
    <description><![CDATA[1）导出数据库中所有的表结构到文件db.sql$dbschema-dyour_database-talldb.sql2)导出数据库中所有的存储过程到文件db.sql$dbschema-dyour_database-falldb.sql3）导出数据库中的所有对象（包含表，存储过]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CentOS 5.4上安装XtraDB 1.0.4]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64968.html</link>
    <description><![CDATA[1、XtraDB版本是用的MySQL-percona-5.1.39-8.rhel5.src.rpm 2、下载下来是rpm源码包，使用rpm解包 rpm -ivh MySQL-percona-5.1.39-8.rhel5.src.rpm 3、解压源码包 cd /usr/src/redhat/SOURCES tar -zxvf mysql-5.1.39.tar.gz tar -]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为何nested loop要求小表驱动，hash join又为何要求小表hashed]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64967.html</link>
    <description><![CDATA[nested loop的过程：选择row resource 最小的那个表作为驱动表（外部表），内部表要求有选择性高的index。 从外部表（驱动表）里一次取一行对内部表的每行进行比较，即外部表有几个dis]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Business Objects 以及reporting service报表点滴]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64966.html</link>
    <description><![CDATA[看来图片显示不出来，可从此处下载Word文档。 http://download.csdn.net/source/1902006 Ver20091111 BO BO入门及笔记 主要包括用designer构建universe，在webi ( Web Intelligence Rich Client )中使用universe构建报表]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ERWin 7.2.5下载与注册码]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64965.html</link>
    <description><![CDATA[ERwin用来建立实体-关系(E-R)模型，是关系数据库应用开发的优秀CASE工具。ERwin可以方便地构造实体和联系，表达实体间的各种约束关系，并根据模板创建相应的存储过程、包、触发器、]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[执行User]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64964.html</link>
    <description><![CDATA[这章介绍了怎样去还原和恢复一个数据库、使用Oracle的闪回特性（当使用用户管理的备份和恢复策略s时-这种策略部需要依赖还原管理） 这张主要包含以下几个主题： 1 OracleUser-Manager的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[PL/SQL 块的学习（精华）]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64963.html</link>
    <description><![CDATA[PL/SQL块 declare begin --SQL语句 --直接写的SQL语句(DML/TCL) --间接写execute immediate DDL/DCL命令字符串 --select 语句 1必须带有into子句 select empno into eno from emp where empno =7369; 2只能查到一行**********]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JOIN条件中字段类型不一致， 导致索引失效的案例一则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64962.html</link>
    <description><![CDATA[T-SQL如下： select T1.sno from [MAY_BLACKFISH].dbo.MVS_PARTS_LOG T1 join ( select top 5 sno from Z_result order by sno ) T2 on T1.sno=T2.sno where T1.TypeName='LCM' 其中MVS_PARTS_LOG为KW级TABLE， Z_result 只有几百笔记录；相关]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现数据库的版本控制的思路]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64871.html</link>
    <description><![CDATA[数据库的版本控制与代码版本控制的区别在于数据库中的生产数据是现场创造的，当我们的表结构发生改变时，不能直接用drop table然后再create table，因为这样会导致生产数据丢失。而代]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自己写的一套处理数据库的方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64870.html</link>
    <description><![CDATA[class COperateAcc { PRivate SqlConnection conn = null;//连接数据库 private SqlCommand comm = null;//操作数据库sql private SqlDataAdapter ada = null;//填充dataset private SqlDataReader reader = null;//读取数据库表中的值]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入探讨数据仓库设计的步骤 禁忌和思路]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64768.html</link>
    <description><![CDATA[高效实现数据仓库的七个步骤 数据仓库和我们常见的RDBMS系统有些亲缘关系，但它又有所不同。如果你没有实施过数据仓库，那么从设定目标到给出设计，从创建数据结构到编写数据分]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用SQL语句复制数据表]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64767.html</link>
    <description><![CDATA['将a表另外复制一个b表（只复制结构，不含数据） select * into b from a where 1=0 '将a表另外复制一个b表（包括制结构和数据） select * into b from a]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一位DBA总结的数据库反规范设计常用方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64766.html</link>
    <description><![CDATA[一位DBA朋友总结了一个关于此方面的几个原则，其实我们在设计的时候也是在不经意间也遵循了这些原则，拿来跟大家共享一下，特别有感于这些天面试程序员，简历上写精通数据库设]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解设计应用程序时避免阻塞的八个准则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64765.html</link>
    <description><![CDATA[当来自应用程序的第一个连接控制锁而第二个连接需要相冲突的锁类型时，将发生阻塞。其结果是强制第二个连接等待，而在第一个连接上阻塞。不管是来自同一应用程序还是另外一台]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人经验总结：数据仓库的数据存储和实现]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64764.html</link>
    <description><![CDATA[当面对大量的数据，而且是各种各样类型的数据，还可能有的数据单元（粒度）很大，单纯靠数据库是不易解决，为了解决这些问题，提高系统后台的效率，就需要引进数据仓库。 有关]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详细介绍查询优化技术在现实系统中的运用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64762.html</link>
    <description><![CDATA[数据库系统是管理信息系统的核心，基于数据库的联机事务处理(OLTP)以及联机分析处理(OLAP)是银行、企业、政府等部门最为重要的计算机应用之一。从大多数系统的应用实例来看，查询]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[扩展数据库系统选项实现更高的可扩展性]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64761.html</link>
    <description><![CDATA[本文说明向外扩展数据库系统的两个选项，从而实现更高的可扩展性：水平数据划分和垂直数据划分当我提到向外扩展数据库系统时，我实际上只是讨论对数据库系统进行分割或划分，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初学者必读：使用存储过程都有哪些益处]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64759.html</link>
    <description><![CDATA[1. 通过把处理封装在容易适应的单元中，简化复杂的操作。 2. 由于不要求反复建立一系列处理步骤，保证了数据的一致性。如果所有开发人员和应用程序都使用同一存储过程，则所使用]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库设计中经常用到的计算表宽度的脚本]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64758.html</link>
    <description><![CDATA[在数据库的设计过程中，我们经常会发现一些非常宽的表，虽然它们的出现使我们编码工作方便了许多，但很多人都会担心这样的异常会不会对数据读取和数据库的整体性能有所影响。]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[事务保存点在一个订购系统中的使用情况]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64757.html</link>
    <description><![CDATA[保存点提供了一种机制，用于回滚部分事务。可以使用 SAVE TRANSACTION savepoint_name 语句创建一个保存点，然后再执行 ROLLBACK TRANSACTION savepoint_name 语句回滚到该保存点，从而无须回滚到事务]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用T]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64756.html</link>
    <description><![CDATA[目的:强制所有用户退出当前服务器。 描述:该代码终止数据库的所有用户进程. 用户进程是 sp_who, 或者 sp_who2, SPID 50 返回的所有进程. 代码使用 sp_who (不牵扯任何系统表)查找运行在当前]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用一个示例讲解自治事务和非自治事务的区别]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64754.html</link>
    <description><![CDATA[下面是个简单的测试,可以让大家更加清楚的明白自治事务和非自治事务的区别： SQL create table chris_test (name varchar2(200)); Table created. SQL create or replace PRocedure Autonomous_insert 2 as 3 pragma auto]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对跨多个表格的数据组合时需要用到的SQL]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64752.html</link>
    <description><![CDATA[在对跨多个表格的数据进行组合时，有时很难搞清楚要使用哪一个SQL句法。我将在这里对将多个表格中的查询合并至单一声明中的常用方式进行阐述。 在这篇文章中的样本查询符合SQ]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[口令中包含@导致无法连接数据库的解决方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64751.html</link>
    <description><![CDATA[今天一个用户报告无法登录系统，检查发现系统用户已经尝试太多，出现locked，导致无法进入。因为这个用户属于熟练用户，不应该出现尝试太多无法登录的问题，询问他密码才知道口]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你深入了解数据仓库优化中的星型转换]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64748.html</link>
    <description><![CDATA[在数据仓库中经常查询的SQL总带有下列特征: ◆几个表进行关联 ◆只有一个数据量巨大的表, 称为事实表 ◆其他的都是编码表, 称为维表 ◆维表和事实表之间有主外键关系 假设有D1(ke]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态DDL执行与Schema Objects显示授权问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64744.html</link>
    <description><![CDATA[这是一个大家常见的问题,也是很容易忽略的问题,尤其是在PRocedure里面动态执行DDL语句的时候发生. 我们必须使用显示授权方式来保证DDL的执行权限, 而不能通过role的传递方式,下面是一]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解Informix安全特性保护数据的具体措施]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64742.html</link>
    <description><![CDATA[前言 保护数据需要权衡考虑安全性和访问能力。如何找到最合适的方法呢？ 目前，公司和政府为数据的可审计性和控制制定了严格的标准，这使数据库安全性成为近来的热点。DBA 必须]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在数据库日渐庞大时进行归档的解决思路]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64741.html</link>
    <description><![CDATA[问：在数据库日渐庞大时应该如何进行归档? 答：以下是一些解决的思路： ◆1.新建一个表空间存放各表的历史数据。 1.1写一个存储过程搬数据，数据搬迁到历史表后，在基表中将搬迁]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[dp备份检查时发现有session报错的解决方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64740.html</link>
    <description><![CDATA[进行dp备份的检查过程中，发现一个备份session出现报错，示例如下： [Warning] From:BSM@gd-bak02″gd_rac_arch” Time: 2006-12-30 2:00:06 [61:2013] Some of the backup devices are occupied. Session is waiting for all t]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解一个检索最近日期的采购价的疑难问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64735.html</link>
    <description><![CDATA[碰到一个问题： 如下一个表，暂定为test，是记录各个商品在不同日期的采购价。 商品编码 品名 采购价 日期 AFBJ001 小方桌 28.0 2005-06-11 00:00:00.000 AFBJ001 小方桌 28.0 2006-05-26 00:00:00.000 A]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[经验分享：Informix和Oracle存储过程的异同]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64733.html</link>
    <description><![CDATA[在工作过程中涉及到过有时要进行INFORMIX和Oracle之间的移植，有时应用需要既支持INFORMIX数据库又要支持ORACLE数据库，如果应用程序涉及到存储过程的话，就需要既熟悉INFORMIX存储过程的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[细数开发DBA（数据库管理员）的工作职责]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64731.html</link>
    <description><![CDATA[开发DBA的工作职责： 1、编写数据库设计、开发规范文档。制定数据库优化、备份、安全等文档。 2、为开发团队提供数据库技术支持或评估数据库技术实现的可行性。 3、评估设计人员]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[查出最早登录的数据和最晚登录的数据番号]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64730.html</link>
    <description><![CDATA[问：如何才能查出一天中最早登录的数据番号和最晚登录的数据番号和时间？ 解答：具体示例如下： SELECT * FROM ( SELECT A_RENBAN,TOUROKU_DT FROM A WHERE TOUROKU_DT IN (SELECT MAX(TOUROKU_DT) FROM A GROUP]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用企业管理器连接并管理远程MS SQL数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64728.html</link>
    <description><![CDATA[一、首先请从您的空间商处获取您的MsSql相关管理信息，如： 用户 TestUser 的MSSQL 服务器地址：xxx.xxx.xxx.xxx 用户 TestUser 的MSSQL的端口为：1433 用户 TestUser 的MSSQL数据库名为：TestUser 用户]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入探讨数据仓库建模与ETL的实践技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64727.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）深入探讨了搭建数据仓库过程中应当遵循的方法和原则，更多内容请参考下文： 一、数据仓库的架构 数据仓库（Data Warehouse \ DW）是为了便于多维分析]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人经验总结：处理海量数据的经验和技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64726.html</link>
    <description><![CDATA[在实际的工作环境下，许多人会遇到海量数据这个复杂而艰巨的问题，它的主要难点有以下几个方面： 一、数据量过大，数据中什么情况都可能存在。 如果说有10条数据，那么大不了每]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速了解数据仓库及数据建模的常用新术语]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64725.html</link>
    <description><![CDATA[数据仓库引入了新的术语，扩展了数据建模的术语表。为使本文的阐述能够完备，下面我介绍一下最常用的术语。 ◆数据仓库 数据仓库是一个支持管理决策的数据集合。数据是面向主]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解无法打开用户默认数据库的解决方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64724.html</link>
    <description><![CDATA[无法打开用户默认数据库，登录失败,这也是SQL Server使用者熟悉的问题之一。在使用企业管理器、查询分析器、各类工具和应用软件的时候，只要关系到连接SQL Server数据库的时候，都有]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解OLTP与数据仓库两者之间的不同之处]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64723.html</link>
    <description><![CDATA[在日常生活中，我们要使用大量的应用程序来生成新的数据、变更数据、删除数据，当然在大多数的情况下我们还要查阅和分析数据。就来想象一个收发 email 的简单应用程序吧。我们已]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速确定SQL Server栏中的最大值]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64721.html</link>
    <description><![CDATA[你有一个里面包含整数、浮点数、金额或日期的N列SQL Server表，而你的任务是返回这些列中某一行的最大值。你甚至被要求一次求几行的最大值，返回一个记录组（record set）。 第一个任]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解DBA在系统设计和开发中的工作范畴]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64720.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）主要介绍了DBA在系统设计和开发中的工作范畴，详细内容请读者参考下文： 一、 现阶段DBA对系统性能及稳定性所做的调整工作 目前DBA对系统性能的调]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决sqlplus里执行@sql.sql发生的错误现象]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64719.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）着重介绍了sqlplus里执行@sql.sql发生的错误现象的解决方法，更多详细内容请参考下文： 昨天准备下班，应用打来电话说有事过去看个问题， 过去一看]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Oracle、SQL Server中如何锁定DB和解锁DB]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64718.html</link>
    <description><![CDATA[今天有同事问到关于多人同时更新和操作DB时，如何防止数据冲突的问题，整理了一篇文档，虽然不是原创，但对于理解数据库的锁定，DB解锁等都有一定的帮助。 一. 为什么要引入锁]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库管理员必须了解WHERE条件的重要性]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64717.html</link>
    <description><![CDATA[错误案例： 数据库无法启动时报ORA-12708错误。 错误提示的解释如下： ORA-12708 error while loading create database NLS parameter stringCause: This is an internal error.Action: Contact Oracle Support Services. 在跟踪]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将指定日期所在月份的所有日期按照周次输出]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64716.html</link>
    <description><![CDATA[将指定日期所在月份的所有日期按照周次输出 具体示例如下： declare @i int-----------------------------计数器 declare @curWk int-------------------------指定日期在该年的周数 declare @fstWk int------------]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解DBMS_STATS的分析表与备份分析信息]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64715.html</link>
    <description><![CDATA[在使用DBMS_STATS分析表的时候，我们经常要保存之前的分析，以防分析后导致系统性能低下然后进行快速恢复。 首先创建一个分析表，该表是用来保存之前的分析值： SQL begin 2 dbms_stat]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DBA创建用户帐户及分配特定特权的具体步骤]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64714.html</link>
    <description><![CDATA[数据库操作时通常都使用实例管理员帐户（SYSADM）来执行所有数据库命令,然而从安全的角度考虑则需要创建不同的用户和/或组，并授予有限的权限集。在本次实验中，我们将创建一个]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解一个Informix数据库存储过程的实例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64713.html</link>
    <description><![CDATA[一个Informix数据库存储过程的实例: 注意：foreach后跟的select 语句不需要结束符“;” create PRocedure p_95500_cxxqy_v5(dat date) define ls_policyno char(15); define ls_polist char(1); define ls_classcode char(8); de]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用insert插入大量数据的个人经验总结]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64711.html</link>
    <description><![CDATA[这篇论坛文章根据笔者的个人经验着重介绍了使用insert插入大量数据的常用技巧，更多内容请参考下文： 在很多时候，我们会需要对一个表进行插入大量的数据，并且希望在尽可能短的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解Informix Dynamic Server的权限设置]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64710.html</link>
    <description><![CDATA[一、必要性 随着近年来数据库技术的深入发展，以Unix平台为代表的Informix Dynamic Server和以NT平台为代表的MS SQL Server得到了广泛的应用。在一个公共的环境中，存在大量的用户操作，有数]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解数据库管理员(DBA)与开发人员的关系]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64709.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）着重讲解了数据库管理员(DBA)与开发人员各自的工作职责及工作上的关联之处，详细内容请参考下文： 有一点很肯定，要建立最成功的信息系统，前提]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何对非系统表空间的数据文件进行改名]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64708.html</link>
    <description><![CDATA[如何在数据库打开时对非系统表空间的数据文件改名，参考下面步骤： 1. 确定数据文件状态 select file_name, status from dba_data_files where tablespace_name ='tablespace_name'; 2. 将表空间置为read-only(时]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握一些特别实用的＂SQL＂语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64706.html</link>
    <description><![CDATA[一些特别实用的SQL语句: ◆说明：复制表(只复制结构,源表名：a 新表名：b) SQL: select * into b from a where 11 ◆说明：拷贝表(拷贝数据,源表名：a 目标表名：b) SQL: insert into b(a, b, c) select]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql语句格式化数字(前面补0)的参考示例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64705.html</link>
    <description><![CDATA[sql语句格式化数字(前面补0)的参考示例: 将一个数字例如33，或1使用t-sql语句转换成033或001 以下是详细分析： 1、select power(10,3)得到1000 2、select cast(1000+33 as varchar） 将1000转换类型 3、s]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握＂patindex＂函数的使用方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64704.html</link>
    <description><![CDATA[patindex函数的用法： 语法格式：PATINDEX ( '%pattern%' , exPRession ) 返回pattern字符串在表达式expression里第一次出现的位置，起始值从1开始算。 pattern字符串在expression表达式里没找就返回0，对]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解三种存取备注二进制信息的方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64703.html</link>
    <description><![CDATA[前言：在数据库的开发过程中，经常需要在数据库中存储一些备注信息，而这些备注信息的内容一般较大，格式多样-如有可能是语音文件、视频文件、图片文件、文本文件等，怎样在]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[生成100万不重复的8位均匀分布的随机编号]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64702.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）着重介绍了生成100万不重复的8位均匀分布的随机编号方法，详细内容请参考下文： 要在10000000 - 99999999之间产生100万个不重复的随机数。可以建立一个]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在Access报表中每隔N行显示一条粗线]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64700.html</link>
    <description><![CDATA[问题： 1.如何在报表中每隔N行显示一条粗线 2.如何为报表增加一个行号列？ 回答： ◆1、在设计模式里打开该报表，在报表主体里面加一个TextBox，把Name属性改为InputID。 ◆2、把InputI]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[脚本示例：查看数据库中有无多余的索引SQL]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64697.html</link>
    <description><![CDATA[查看数据库中有无多余的索引，即一个索引的字段为另一个索引的前几个字段。如index1的定义为test(filed1,filed2),index2的定义为test(filed1,filed2,filed3)，则认为index1是多余的。(摘自Ixora) col]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入探讨数据仓库缓慢变化维的解决方案]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64695.html</link>
    <description><![CDATA[这篇论坛文章深入探讨了数据仓库缓慢变化维的解决方案，详细内容请参考下文： 缓慢变化维定义 Wikipedia中的定义： Dimension is a term in data management and data warehousing that refers to logical g]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DBA用于查询当前数据库表格记录条数的脚本]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64693.html</link>
    <description><![CDATA[本文中介绍的参考脚本用于查询当前数据库中所有表格的记录条数， 并将结果存入TableInfo表中，不会删除以备用户再做处理与分析。最后请各位读者删除此表。 脚本示例： if exists (s]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人经验总结：数据挖掘与数据抽样概述]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64692.html</link>
    <description><![CDATA[前段时间在做一个挖掘模型时，模型的特征决定了选择的数据是严重有偏的，怎样在这样的数据上进行抽样，得到能比较好地反映真实情况的数据样本是很关键的。自己对统计学仅仅限]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASE锁模式：AllPages DataPages DataRows]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64691.html</link>
    <description><![CDATA[Sybase ASE有三种锁模式：AllPages,DataPages,DataRows Sybase的数据有table pages和index pages，最小分配单位为pages，不同的锁模式对于table pages和index pages有不同的表现，具体如下： Locking Schema Locks]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[滥用触发器会造成数据库及应用程序维护困难]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64690.html</link>
    <description><![CDATA[触发器功能强大，轻松可靠地实现许多复杂的功能，为什么又要慎用呢。 触发器本身没有过错，但由于我们的滥用会造成数据库及应用程序的维护困难。 在数据库操作中，我们可以通]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你深入了解高效的内存数据库系统fastdb]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64689.html</link>
    <description><![CDATA[FastDb是高效的内存数据库系统，具备实时能力及便利的C++接口。FastDB不支持client-server架构因而所有使用FastDB的应用程序必须运行在同一主机上。FastDB针对应用程序通过控制读访问模式作]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从三个方面进行讲解如何适当优化＂SQL＂]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64686.html</link>
    <description><![CDATA[如何适当优化SQL？ 许多人在使用SQL时往往会陷入一个误区，即太关注于所得的结果是否正确，而忽略了不同的实现方法之间可能存在的性能差异，这种性能差异在大型的或是复杂的数据]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解数据库管理系统必须提供的基本服务]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64685.html</link>
    <description><![CDATA[简单的说，一个数据库管理系统应该的提供的基本服务有两种： 1.数据访问。对每个数据库管理系，数据访问服务都包含一下几种 (1)插入--向数据库中添加新数据 (2)搜索--寻找特定的数]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[建索引（尤其是主键）时请注意索引列顺序]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64684.html</link>
    <description><![CDATA[在创建主键或其它索引时，SQL Server总是自动将字段的顺序设置为升序排列；升序是默认设置，是为了保持与 SQL Server 早期版本的兼容性。建索引时索引列的顺序应该按照常用查询中的排]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解InfoPlus与Uniformance PHD的SQL支持]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64681.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）主要介绍了InfoPlus与Uniformance PHD的SQL支持及笔者的个人观点，详细内容请参考下文： 应该说这两个实时数据库都很不错，在工业控制领域有着广泛的应]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用一条SQL实现：一行多个字段数据的最大值]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64680.html</link>
    <description><![CDATA[原问题是这样的：如何用SQL语句（不是Oracle),求出下表每一行的5个字段中的最大值，最后生成一个新字段。 例如: 第一行最大值 -5.0 (c字段) 空值忽略 第二行最大值 -5.5 (a字段) 空值忽略]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[探讨大型项目中的主要问题─数据库操作]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64677.html</link>
    <description><![CDATA[在大型项目中，我想在困扰大家的主要问题为数据库的操作，本人就在项目中遇到了一些问题，在这里和大家交流下。 ◆1、 本人项目中有一个复杂视图，数据量在2千万以上，每次对这]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[PowerDesigner实现导出的SQL语句附带主键]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64676.html</link>
    <description><![CDATA[SQL Server 2000下，pd导出sql语句，表是不带主键的。但是这个问题可以解决： 双击你在pd里面所建的表－－》选择“perview”，可以查看这张表的建表语句。 举个例子：表1 if exists (select]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[由于NLS参数设置不当导致的性能问题案例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64675.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）针对一个由于NLS参数设置不当导致的性能问题案例进行了深入的讲解，更多内容请参考下文： 错误现象： 服务器CPU增加、响应慢。 问题原因： 取回]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你轻松接触一个数据库的备份和恢复程序]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64674.html</link>
    <description><![CDATA[在我们做数据库系统的程序时，经常需要为客户做一个数据库的备份和恢复程序，特别是对于一些非专业的数据库用户，这个程序更是必不可少，而且操作必需足够简单。因为在很多系]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DBA:在生产环境中创建监控表DML的触发器]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64673.html</link>
    <description><![CDATA[在生产环境中，总是可能出现这样的情况：某张或者某些表的数据被莫名其妙的修改了，但是很难定位出是哪个用户、哪个过程修改的。这是一个很让DBA头痛的事情（往往DBA对于整个代]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用一个实例讲解数据增量抽取的模拟实现]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64672.html</link>
    <description><![CDATA[数据增量抽取的模拟实现──脚本实现: 实现的环境： 业务数据库：Oracle数据库9i 数据仓库数据库：SQL Server 2000数据库 1、前提条件：SQL Server服务器必须已经安装Oracle驱动 2、创建链接]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入探讨纯软件方式的双机热备解决方案]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64669.html</link>
    <description><![CDATA[数据库双机热备有两种典型的方式，一种是比较标准的，两台服务器通过一个共享的存储设备（一般是共享的磁盘阵列或存储区域网SAN），并且安装双机软件，实现双机热备，称为共享]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[crosscheck长时间运行后未见结果的案例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64666.html</link>
    <description><![CDATA[这篇论坛（赛迪网技术社区）根据一个实际案例讲解了crosscheck长时间运行后未见结果的解决方法，详细内容请参考下文： 客户数据库的备份坏了，同事采取的策略是每天定期的用脚本]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解孤立用户和对象名无效问题的解决方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64665.html</link>
    <description><![CDATA[在使用数据库的过程中，经常会遇到数据库迁移或者数据迁移的问题，或者有突然的数据库损坏，这时需要从数据库的备份中直接恢复。但是，此时会出现问题，这里说明几种常见问题]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL中获得EXEC后面的sql语句或返回值的方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64664.html</link>
    <description><![CDATA[前言：在数据库程序开发的过程中,我们经常会碰到利用EXEC来执行一段需要返回某些值的sql语句（通常是构造动态sql语句时使用），或者在一个存储过程中利用EXEC调用另一个有返回值的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何将数据仓库与系统体系结构合成一体]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64663.html</link>
    <description><![CDATA[本文简单介绍了使用Microsoft数据仓库架构的数据仓库，讨论了数据仓库能够实现的功能，使用数据仓库的恰当时机，以及如何将数据仓库与系统体系结构合成一体。 简介 1998 年发布的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解实现SQL下的字符串拆分具体方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64662.html</link>
    <description><![CDATA[因为工作的原因，开发过一个拆分字符串的SQL函数，现在把它贴出来，与大家共勉学习。 该函数如下： CREATE function [dbo].[StringSplit](@str nvarchar(max),@spliter nvarchar(10)) returns @tb table(ch nvar]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何才能保障存储过程嵌套调用的原子性]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64659.html</link>
    <description><![CDATA[此代码用于解决存储过程间嵌套调用时的全局原子性问题: DECLARE @TranStarted bit SET @TranStarted = 0 IF( @@TRANCOUNT = 0 ) -- 用于嵌套 BEGIN BEGIN TRANSACTION SET @TranStarted = 1 END ELSE SET @TranStarted = 0 ....]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你在不同数据库环境下读取前N条记录数]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64656.html</link>
    <description><![CDATA[在不同数据库环境下读取前N条记录数： 1. Oracle Select * FROM TABLE1 Where ROWNUM=N 2. Informix Select FIRST N * FROM TABLE1 where 1=1 3. MySQL Select * FROM TABLE1 where 1=1 LIMIT N 4. DB2 Select * ROW_NUMBER() OVER(ORDER BY]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解误删除一部分重要数据的恢复方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64655.html</link>
    <description><![CDATA[如果你在工作中误删除了一部分重要的数据，并且已经提交，当你需要恢复数据的时候，你可以登陆到数据库上仔细查看，如果是Oracle9iR2，你可以首先尝试使用Flashback query闪回数据。]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Powerbuilder编程过程中的数据窗口函数]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64653.html</link>
    <description><![CDATA[本节介绍的主要内容如下： · 与数据库有关的函数 · 行操作 · 列操作 · 数据操作 PowerBuilder为数据窗口控件提供了丰富的函数，这些函数使用户能够在使用数据窗口控件时得心应手。]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[logmnr无法生成部分表的DML跟踪语句问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64652.html</link>
    <description><![CDATA[logmnr无法生成部分表的DML跟踪语句的解决方法： 新建映射数据字典信息文件： SQL execute dbms_logmnr_d.build('shwdict.ora','d:Oracleoradatarmanutl'); PL/SQL PRocedure successfully completed SQL insert into test va]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用SQL语句生成带有小计合计的数据集脚本]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64651.html</link>
    <description><![CDATA[使用SQL语句生成带有小计合计的数据集: 测试用户: scott 测试用表: dept,emp ////////////////////////////////// //检索出需要进行统计的数据集 select dept.dname,emp.job,sal from emp,dept where emp.deptno=dept.d]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[优化方案：ETL的过程原理和数据仓库建设]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64650.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）根据笔者多年的数据仓库实施经验，同时结合ETL的过程原理和数据仓库建设方法归纳总结了以下优化的方案，详细内容请读者参考下文： 1.引言 数据仓]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人经验总结──生产环境下的备份方案]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64649.html</link>
    <description><![CDATA[生产环境备份方案： 1.设置数据库自动备份控制文件、SPFILE文件 2.每个星期天做RMAN 0级全库备份 3.每日（星期天除外）做RMAN 1级增量备份 4.在主服务器保留一个礼拜内的全库备份、增量]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Coefficient查看数据库内部运行情况]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64647.html</link>
    <description><![CDATA[在实际的工作环境下，数据库的调整和优化可能是一个数据库管理员的最主要也是最关键的任务之一。令人遗憾的是，对像SQL Server这样的数据库进行调整和性能调节并不是一件容易的事]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[借助两个开发包在PL/SQL中实现多进程通信]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64645.html</link>
    <description><![CDATA[PL/SQL是基于Oracle的一个主流应用程序编程语言，它的主要特点是将SQL语句与过程化程序开发语言相结合，以实现更为复杂的商业逻辑。本文主要就其中多进程通信进行讨论。 显然，多进]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Berkeley DB数据库管理系统的技术特点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64643.html</link>
    <description><![CDATA[Berkeley DB的技术特点： Berkeley DB是一个开放源代码的内嵌式数据库管理系统，能够为应用程序提供高性能的数据管理服务。应用它程序员只需要调用一些简单的API就可以完成对数据的访]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql语句操作之cv大法全集]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64642.html</link>
    <description><![CDATA[下列语句部分是Mssql语句，不可以在access中使用。 SQL分类： DDL—数据定义语言(CREATE，ALTER，DROP，DECLARE) DML—数据操纵语言(SELECT，DELETE，UPDATE，INSERT) DCL—数据控制语言(GRANT，REVOKE，C]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[触发器中的inserted表和deleted表介绍]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64641.html</link>
    <description><![CDATA[触发器语句中使用了两种特殊的表：deleted 表和 inserted 表。Microsoftreg; SQL Server 2000 自动创建和管理这些表。可以使用这两个临时的驻留内存的表测试某些数据修改的效果及设置触发器操]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[高级复制中mlog$表的HWM过高导致性能问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64639.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）针对高级复制中由于mlog$表的HWM过高导致的性能问题进行了详细的讲解，更多内容请参考下文： 某系统升级后，报告事务端的数据库反应非常慢，用户]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解System.Data.DataTable计算功能]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64637.html</link>
    <description><![CDATA[本文根据一个实例着重介绍了System.Data.DataTable的计算功能，相信这篇文章定能为大家的工作和学习有所帮助。 using System;using System.ComponentModel;using System.Data;using System.Windows.Forms;namespace]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决物化视图刷新过程中的约束冲突问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64636.html</link>
    <description><![CDATA[本文中，我们通过实例的方法来帮助您理解物化视图刷新过程中出现的约束冲突问题。 即使将物化视图的约束建立和基表完全一致，由于物化视图的刷新机制，也会产生约束冲突的现象]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Pipelined Table实现split函数的示例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64635.html</link>
    <description><![CDATA[在实际的应用中，为了让PL/SQL 函数返回数据的多个行，必须通过返回一个 REF CURSOR 或一个数据集合来完成。REF CURSOR 的这种情况局限于可以从查询中选择的数据，而整个集合在可以返回]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DBA:巧用ora2html收集Oracle数据库信息]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64634.html</link>
    <description><![CDATA[许多情况下，数据库管理员(DBA)可能需要收集部署好的Oracle数据库信息。硬件配置、操作系统情况、软件安装路径、数据库用户信息......一步一补做下来十分繁琐。本文中，笔者将详细]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Berkeley DB数据库管理系统的技术特点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64633.html</link>
    <description><![CDATA[Berkeley DB的技术特点： Berkeley DB是一个开放源代码的内嵌式数据库管理系统，能够为应用程序提供高性能的数据管理服务。应用它程序员只需要调用一些简单的API就可以完成对数据的访]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你深入了解＂T]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64631.html</link>
    <description><![CDATA[一、ITERATOR(迭代) 这种模式提供一种在相似对象列表中遍历对象的标准化方法。在SQL Server数据库中的同义词是游标。 DECLARE tables CURSOR FOR SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES FOR READ ON]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[高级复制中mlog$表的HWM过高导致性能问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64630.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）针对高级复制中由于mlog$表的HWM过高导致的性能问题进行了详细的讲解，更多内容请参考下文： 某系统升级后，报告事务端的数据库反应非常慢，用户]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解Informix日期边界处理的缺陷问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64629.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）着重介绍了Informix日期边界处理的缺陷问题及解决方法，更多内容请参考下文： Informix数据库由于其良好的动态扩展性，在各个行业得到了广泛的使用]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你轻松掌握statspack报表的使用方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64628.html</link>
    <description><![CDATA[statspack的一些使用技巧： 一 怎样修改statspack的脚本产生自定义报表？ 通常statspack报表可以满足大部分的需要,有时我们需要对产生报表的脚本进行一些微小的修改,这样产生的报表将会]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DBA必须具备跨平台管理不同RDBMS的能力]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64627.html</link>
    <description><![CDATA[1、简介 当今IT的环境正经历着剧烈的变化，依靠单一的关系型数据库管理系统(RDBMS)管理数据的公司开始逐渐减少。分析家的报告指出 ，今天超过90%的公司都拥有不只一种RDBMS。在现在]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用标准I/O进行Informix同时备份和恢复]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64626.html</link>
    <description><![CDATA[使用标准I/O进行Informix同时备份和恢复: host_a 正在运行的数据库 host_b 用于恢复 操作步骤： ◆1.新建host_b机，安装操作系统，安装数据软件，只需要配置一下实例名就可以了，不需要初]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据仓库基本报表制作过程中的SQL写法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64625.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）主要介绍了数据仓库基本报表制作过程中的SQL写法，详细内容请参考下文： 在数据仓库的基本报表制作过程中，通常会使用SQL作为数据源，可是普通的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解优化数据库时必须注意的一些细节问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64624.html</link>
    <description><![CDATA[在优化数据库时，我们可能没有用到以下这些细节的优点。下面是一些关于数据库性能的问题，仅供大家参考。 1. 假设你的数据库不需要存储特殊字符的能力，尤其是Unicode标准中规定]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[有关BCB连接Informix数据库的参考示例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64623.html</link>
    <description><![CDATA[Informix Server是在SCO UNIX OPenserver 5.0.5下的IDS7.23, 以下是几个配置文件： ONCONFIG 文件： DBSERVERNAME online7 DBSERVERALIAS online7_net NETTYPE ipcshm,1,10,CPU NETTYPE tlitcp,1,20,NET sqlhosts文件: online7 onipcshm a]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简明扼要的讲解数据仓库所拥有的四个特点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64621.html</link>
    <description><![CDATA[数据仓库拥有的四个特点 1、面向主题 操作型数据库的数据组织面向事务处理任务，各个业务系统之间各自分离，而数据仓库中的数据是按照一定的主题域进行组织。主题是一个抽象的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQLite数据库用来处理锁定情况的两个函数]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64618.html</link>
    <description><![CDATA[SQLite数据库在使用的过程中经常发生的数据库异常便是数据库被锁定了（SQLITE_BUSY或者SQLITE_LOCKED）。SQLite对于并发的处理机制是允许同一个进程的多个线程同时读取一个数据库，但是任]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[三种实现方法实现数据表中遍历寻找子节点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64615.html</link>
    <description><![CDATA[数据表中遍历寻找子节点的三种实现方法： 示例问题如下： 表结构: Id ParentId 1 0 2 1 3 2 ...... 针对该表结构解释如下: 1的父节点为0, 2的父节点为1, 3的父节点为2 ...... 以此类推,要求给定]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[诊断全局错误时如何在系统级进行设置]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64613.html</link>
    <description><![CDATA[一般情况下，诊断事件可以在session级设置，也可以在系统级设置，如果你要诊断全局错误，则最好在系统级设置较为合适，下面是一个测试实例: SQL alter system set event='984 trace name ERROR]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[临时表在特定的条件下同样可以灵活易用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64612.html</link>
    <description><![CDATA[本文介绍了一个四用户同步更新的存储过程实例，通过这个实例的学习，你可以发现临时表在某种条件下也可以是灵活易用的，在数据量小的时候，它并不会显现出临时表速度不行的问]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[根据版本的不同整理所有的绿色SQL Server]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64611.html</link>
    <description><![CDATA[在这篇论坛文章（赛迪网技术社区）中，读者可以了解到如何根据不同的SQL Server版本，整理出所有版本的绿色SQL Server的具体方法，详细内容请参考下文： 1. Sqlservr.exe 运行参数 Sql Ser]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用dbms_rowid包获得rowid的详细信息]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64610.html</link>
    <description><![CDATA[我们知道，Rowid中包含了记录的详细信息，通过dbms_rowid包可以很轻松地获得这些信息.本文将通过一个自定义函数详细介绍这个package的使用。 create or replace function get_rowid(l_rowid in varcha]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解一个完整数据挖掘过程的四个具体步骤]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64607.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）扼要的介绍了完整数据挖掘过程必备的四个具体步骤，更多内容请参考下文。 在现代社会中，公司大多数商务流程的核心部分是数据。而数据挖掘的任]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用UTL_INADDR包获取已经连接用户的IP地址]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64606.html</link>
    <description><![CDATA[许多人都知道，通过SYS_CONTEXT函数可以获得部分信息，当前用户的ip等信息则可以通过下面的命令来进行获取： SQL select sys_context('userenv','host') from dual; SYS_CONTEXT('USERENV','HOST')-------------]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基础知识：带你了解最常见的13个数据库术语]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64605.html</link>
    <description><![CDATA[1．关系模型：用二维表格结构表示实体集，外键表示实体间联系的数据模型称为关系模型。关系模型是由若干个关系模式组成的集合。 2．关系模式：关系模式实际上就是记录类型。它]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Server 2005日志文件损坏的处理方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64604.html</link>
    <description><![CDATA[在实际的工作和学习中，许多人的SQL Server 2005数据库日志文件可能会发生损坏，例如硬件故障、计算机非正常重启或关机等等。 在SQL Server 2005的日志文件损坏时，你会发现以下的情况：]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全面解析数据仓库系统的建设过程和方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64603.html</link>
    <description><![CDATA[数据仓库系统的建设过程和方法不同于建设传统的操作型处理系统的过程和方法，数据仓库系统建设有两个难点：一是如何保证数据质量，使得数据准确可信；二是如何构造应用体系，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在函数间不能传递32个以上参数的疑难问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64601.html</link>
    <description><![CDATA[本文中的示例主要是解决在函数间不能传递多个（32个以上）参数的问题，解题的具体思路就是采用记录类型作为函数的输入和返回值，所以我们需要先定义一个视图，把它作为一个结]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL技巧:快速掌握一些异常精妙的]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64600.html</link>
    <description><![CDATA[精妙的SQL语句: ◆复制表(只复制结构,源表名：a 新表名：b) SQL: select * into b from a where 11 ◆拷贝表(拷贝数据,源表名：a 目标表名：b) SQL: insert into b(a, b, c) select d,e,f from b; ◆显示文章、]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于UltraLite所不提供的ASA功能的介绍]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64598.html</link>
    <description><![CDATA[UltraLite 数据库不提供以下 Adaptive Server Anywhere 功能： ◆级联更新和删除 某些应用程序依赖于声明的参照完整性来实现业务规则。 UltraLite 数据库不提供这些功能，但同步下载期间会自动]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解MaxDB数据库和MySQL数据库的主要差别]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64597.html</link>
    <description><![CDATA[MaxDB是MySQL AB公司通过SAP认证的数据库。MaxDB数据库服务器补充了MySQL AB产品系列。某些MaxDB特性在MySQL数据库服务器上不可用，反之亦然。 下面简要介绍了MaxDB和MySQL的主要差别。 ·MaxD]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Server事务日志意外增大的处理方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64596.html</link>
    <description><![CDATA[事务日志文件Transaction Log File是用来记录数据库更新情况的文件，扩展名为ldf。 在 SQL Server 7.0 和 SQL Server 2000 中，如果设置了自动增长功能，事务日志文件将会自动扩展。 一般情况下，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你深入了解微软商业智能系统BI解决方案]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64595.html</link>
    <description><![CDATA[明智决策，创造价值 随着企业各种信息系统的建设和完善，企业所拥有的数据越来越多。决策者面对的问题已经不再是缺少信息，而是如何得到正确的信息以帮助制定决策。典型的公司]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[有助于数据创建安全环境的重要功能说明]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64594.html</link>
    <description><![CDATA[由于数据库或许包含有关专有、机密或私有的信息，因此确保数据库及其中数据的安全至关重要。 Adaptive Server Anywhere 提供了几个有助于为数据创建安全环境的功能： 用户标识和鉴定]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据挖掘操作必须在数据仓库基础上进行]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64592.html</link>
    <description><![CDATA[人们对数据的处理需求可以分为两种类型，操作型处理(OLTP)和分析型处理(OLAP)，传统的数据库主要是面向OLTP，注重数据的计算、记录的插入、删除、与修改，以及简单的查询和统计。它]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于SQL Server数据库备份和恢复特性介绍]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64591.html</link>
    <description><![CDATA[SQL Server 2000中存在的许多的备份和恢复特性都同样保留在了SQL Server 2005中，但是有一些新的提高同样值得我们关注。 镜像备份 SQL Server 2005让你可以创建镜像备份。镜像备份允许你为备]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在SQL中为安装程序填加计数器注册表项值]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64590.html</link>
    <description><![CDATA[在 SQL Server 安装开始前，Microsoft SQL Server 安装程序中的安装配置检查器 (SCC) 会验证计数器注册表项的值。如果 SCC 无法验证现有的注册表项，或 SCC 无法运行 lodctr.exe 系统程序，则 SCC]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不同于其它大部分的SQL数据库引擎SQLite]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64589.html</link>
    <description><![CDATA[SQLite不同于其他大部分的SQL数据库引擎,因为它的首要设计目标就是简单化: ·易于管理 ·易于使用 ·易于嵌入其他大型程序 ·易于维护和配置 许多人喜欢SQLite因为它的小巧和快速. 但是]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[疑难解答 Where语句后加上1=1的具体作用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64587.html</link>
    <description><![CDATA[问题： Where语句后加上一个 1=1 是什么意思？ 解答： where后面总要有语句，加上了1=1后就可以保证语法不会出错! 假如后面确定有条件语句，就可以不用1=1； 不能确定where后面是否有语]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[项目开发中层次结构存储的两种设计方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64586.html</link>
    <description><![CDATA[在实际的项目开发中，我们经常会碰到存储多级数据结构（树状）的问题。下面，我们来介绍一下层次结构存储的两种设计方法： 1：邻接表模式（adjacency list model） 2：先根遍历树算法]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过进行正规化的表格设计提升应用性能]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64585.html</link>
    <description><![CDATA[在动态网站的设计中，数据库设计的重要性不言而喻。如果设计不当,查询起来就非常吃力，程序的性能也会受到影响。无论你使用的是MySQL或者Oracle数据库，通过进行正规化的表格设计]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Caché的Speedminer构建和部署数据仓库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64584.html</link>
    <description><![CDATA[“使用基于 Caché 的 Speedminer产品，不到 90 天我们就构建和部署完了数据仓库。” 中国福州的福州总医院在管理上一直存在一个问题。对决策起决定作用的报告总是要延迟几天，有时甚]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据转换冲突及转换过程中大对象的处理]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64583.html</link>
    <description><![CDATA[数据转换冲突及处理 数据转换冲突: 在数据转换过程中，要想实现严格的等价转换是比较困难的。必须要确定两种模型中所存在的各种语法和语义上的冲突，这些冲突可能包括： (1)命名]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[循序渐进讲解Informix SQL的十一个技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64582.html</link>
    <description><![CDATA[一、加快sql的执行速度 1.select 语句中使用sort,或join 如果你有排序和连接操作，你可以先select数据到一个临时表中，然后再对临时表进行处理。因为临时表是建立在内存中，所以比建立]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从基础知识入手详细讲解数据库的具体分类]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64581.html</link>
    <description><![CDATA[数据库的具体分类: 模糊数据库 指能够处理模糊数据的数据库。一般的数据库都是以二直逻辑和精确的数据工具为基础的，不能表示许多模糊不清的事情。随着模糊数学理论体系的建立]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[减少每次的同步数据量以此来提高同步效率]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64579.html</link>
    <description><![CDATA[说到同步数据，大最为较关心的就是如何尽可能地减少每次的同步数据量，以此来提高同步效率，降低对网络带宽的消耗。针对大批量的数据同步，这一点是必须注意的。解决这个问题]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解数据仓库架构师的岗位职责和岗位要求]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64578.html</link>
    <description><![CDATA[数据仓库架构师的岗位职责和岗位要求: 岗位职责 1. 制定数据仓库建设方案 2. 数据仓库的设计和开发 3. 数据仓库应用方案设计和推广 岗位要求: 1、熟悉大型企业商业智能整体运作模式]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[调查表明开源软件的维护与支持问题急需解决]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64576.html</link>
    <description><![CDATA[甲骨文公司最近的用户调查显示：开源软件正在逐渐占领甲骨文数据库软件的安装份额，约60%的IT设施在使用某种形式的开源软件。 据悉，由独立甲骨文用户集团(IOUG)实施的这次调查表]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix数据库记录数过多引起的性能下降]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64575.html</link>
    <description><![CDATA[问： 为什么在一个有30000条记录并且建立有索引的表进行操作很慢，怎么办？ 答： 30000条记录并不是太多，你感觉有些慢可能是记录数太多的缘故，原因可能是每条记录太长，或者你的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL中也可以用格式字符串定制日期转字符串]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64574.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）介绍了SQL Server利用格式字符串定制日期转换为字符串的具体方法，更多内容请参考下文： 在C#中用惯了DateTime.ToString(yyyy-MM-dd),DateTime.ToString(MM/dd/yy]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解数据库变慢的三种情况及具体处理方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64573.html</link>
    <description><![CDATA[数据库慢一般有三种情况： 1.逐渐变慢 2.突然变慢 3.不定时变慢 第一种情况 “逐渐变慢”，要建立一个长期的监控机制。比如，写个shell脚本每天的忙时(通常9~10 etc.)定时收集os,networ]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检查数据库数据字段命名规范与合法性的脚本]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64572.html</link>
    <description><![CDATA[做为一名开发DBA，最重要的renweu是经常要检查开发人员或建模人员对数据库的命名规范是否严谨，下文中将主要介绍一个检查数据库数据字段命名规范与合法性的脚本，仅供大家参考。]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全面解析基于空间数据库的数据挖掘技术]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64571.html</link>
    <description><![CDATA[随着GIS技术在各个行业的应用以及数据挖掘、空间数据采集技术、数据库技术的迅速发展，对从空间数据库发现隐含知识的需求日益增长，从而出现了用于在空间数据库中进行知识发现]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[经验总结：T]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64570.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）针对T-SQL中的递归进行了经典的论述，详细内容请参考下文： 我曾经担任过大学的老师。我在开始讲授子查询时，会让学生从Northwind数据库的employees表]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[BI有没有前途 数据仓库之路如何继续下去]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64569.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）根据笔者的个人经历论述了以下几个问题： 1.数据仓库是什么？2.BI是什么？3.自己的数据仓库之路如何继续下去？4.BI到底有没有前途？ 更多内容请读]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据仓库工程师面试过程中经常遇到的题目]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64567.html</link>
    <description><![CDATA[什么叫数据仓库？(相信inmon的数据仓库概念的四个特点是最基本的吧，当然需要加上自己的理解) 数据仓库和数据库有什么区别？(事务性数据库和决策支持数据库的区别，当然包括目标]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解ASE12.5.1以后提供的WebService功能]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64566.html</link>
    <description><![CDATA[ASE自从12.5.1以后提供了WebService的功能。ASE提供的WebService 功能总结下来包括三个部分： ASE提供WebService的服务端，供其它WebService客户端调用。这也叫做ASE WebService生产者。ASE WebService生产]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[导出表数据脚本的存储过程]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64564.html</link>
    <description><![CDATA[生成表数据脚本的存储过程 CREATE PROCEDURE dbo.OutputData @tablename sysname AS declare @column varchar(1000) declare @columndata varchar(1000) declare @sql varchar(4000) declare @xtype tinyint declare @name sysname declare @obje]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你轻松掌握数据库系统的一些专用词汇表]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64563.html</link>
    <description><![CDATA[数据库系统的一些专用词汇表: · 数据（Data）： 反映客观世界的事实，并可以区分其特征的符号：字符、数字、文本、声音、图形、图像、图表、图片等，它们是现实世界中客观存在的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用dbschema工具导出Informix数据库的结构]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64562.html</link>
    <description><![CDATA[用dbschema工具导出Informix数据库的结构的具体步骤: (1)导出数据库中所有的表结构到文件db.sql $dbschema -d your_database -t all db.sql (2)导出数据库中所有的存储过程到文件db.sql $dbschema -d your_da]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你深入了解数据库管理系统层次安全技术]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64561.html</link>
    <description><![CDATA[数据库系统的安全性很大程度上依赖于数据库管理系统。如果数据库管理系统安全机制非常强大，则数据库系统的安全性能就较好。目前市场上流行的是关系式数据库管理系统，其安全]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初学者需要掌握的数据库设计词汇对照表]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64560.html</link>
    <description><![CDATA[数据库设计词汇对照表: 1. access method（访问方法）：此步骤包括从文件中存储和检索记录。 2. Alias（别名）：某属性的另一个名字。在SQL中，可以用别名替换表名。 3. Alternate keys（备用]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[日志方式转换及物理日志和逻辑日志的管理]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64559.html</link>
    <description><![CDATA[日志方式的转换及物理/逻辑日志的管理： l.日志方式的转换 使用ontape命令 格式:ontape -s [-U|-N|-B] 数据库名 选项：-s 表示archive -U 打开数据库日志，日志方式为无缓冲区方式 -N 将数据库]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[标准SQL规范中定义的四个事务隔离级别]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64556.html</link>
    <description><![CDATA[在标准SQL规范中，定义了4个事务隔离级别，不同的隔离级别对事务的处理不同: ◆未授权读取（Read Uncommitted）：允许脏读取，但不允许更新丢失。如果一个事务已经开始写数据，则另外]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[循序渐进讲解SQL查询语句的高级应用技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64553.html</link>
    <description><![CDATA[一、 简单查询 简单的Transact-SQL查询只包括选择列表、FROM子句和WHERE子句。它们分别说明所查询列、查询的 表或视图、以及搜索条件等。 例如，下面的语句查询testtable表中姓名为“张三]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[大型MIS软件的开发必须重视数据库设计]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64552.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）主要介绍了数据库设计在大型MIS软件开发过程中的重要性，详细内容请参考下文： 8０年代初以来，国内许多计算机专家先后深入一些大型企业，力图]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ERP管理软件数据库系统的几种设计方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64549.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）主要介绍了几种ERP管理软件数据库系统的设计方法，更多内容请参考下文。 1. 自增长PRimary key 采用自增长primary key主要是性能。早期的数据库系统，经]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用一个案例讲解应用程序越来越慢的原因]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64548.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）主要介绍了一个导致应用程序越来越慢的的实际案例，详细内容请参考下文： 案例： 发现应用程序慢，开始把目光放在检查商业逻辑的SQL上面，觉得]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[循序渐进讲解数据表的十二个设计原则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64547.html</link>
    <description><![CDATA[数据表的设计原则: (1)不应针对整个系统进行数据库设计，而应该根据系统架构中的组件划分，针对每个组件所处理的业务进行组件单元的数据库设计；不同组件间所对应的数据库表之]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你轻松掌握数据库链路的建立和使用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64546.html</link>
    <description><![CDATA[一、数据库链路的建立： 1、数据库链路的建立语法一般是：CREATE DATABASE LINK [db_link_name] CONNECT TO [user_name] IDENTIFIED BY [passWord] USING '[tns_name]'; 其中: [DB_LINK_NAME]：是所要连接的数据库的服]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在应用环境中如何构造最优的数据库模式]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64545.html</link>
    <description><![CDATA[数据库设计(Database Design)的概念： 数据库设计是指对于一个给定的应用环境，构造最优的数据库模式，建立数据库及其应用系统，使之能够有效地存储数据，满足各种用户的应用需求（]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[存储过程中如何执行带输出参数的动态SQL]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64544.html</link>
    <description><![CDATA[SQL Server存储过程中执行带输出参数的动态sql是很多人经常碰到的问题，比如根据一些条件查询列表，并返回记录数等。下面是一个参考示例，查询用户列表，它可以利用临时表实现翻页]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Replace INTO与INSERT INTO的不同之处]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64542.html</link>
    <description><![CDATA[Replace INTO和INSERT INTO的区别: REPLACE的运行与INSERT很相似。只有一点例外，假如表中的一个旧记录与一个用于PRIMARY KEY或一个UNIQUE索引的新记录具有相同的值，则在新记录被插入之前，旧记]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何查看并导出数据表中字段的注释信息]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64540.html</link>
    <description><![CDATA[查看并导出SQL Server 2000数据表中字段的注释信息： 此示例为导出某个表注释的语句：（表名是bbs_bank_log） SELECT sysobjects.name AS 表名, syscolumns.name AS 列名, systypes.name AS 数据类型, syscolum]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解数据库调优与程序员相关的几个方面]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64539.html</link>
    <description><![CDATA[许多程序员在面试时，经常会被问到 “数据库调优”的事情，这时，许多人就会产生疑问，这不是DBA的事吗，但回答不好还是显得不够专业，笔者查找了一些相关资料，发现许多方面还]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[删除完全重复和部分关键字段重复的记录]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64538.html</link>
    <description><![CDATA[重复记录分为两种，第一种是完全重复的记录，也就是所有字段均重复的记录，第二种是部分关键字段重复的记录，例如Name字段重复，而其它字段不一定重复或都重复。 1、第一种重复]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全面解析关系数据模型存在的不足之处]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64536.html</link>
    <description><![CDATA[关系数据库模型支持了SQL语言的发展，并且拥有强大的理论基础为后盾（基于一阶的谓词逻辑），目前，SQL已经成为定义和操纵关系数据库的标准语言。 关系数据模型的另一个好处在于]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解数据库加密技术的功能特性与实现方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64535.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）主要就数据库加密技术的具体方法和实现进行了简要的概述，详细内容请读者参考下文。 信息安全的核心就是数据库的安全，也就是说数据库加密是信]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在设计数据库时如何选择正确的数据类型]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64534.html</link>
    <description><![CDATA[在设计数据库时，选择正确的数据类型，往往可以避免很多的问题，正确理解数据库的类型，对于存储空间规划，应用性能调整都会很有帮助，下文中将对这些数据类型进行详细的讲解]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Oracle 9i数据库的用户创建以及权限分配]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64533.html</link>
    <description><![CDATA[1.数据库安装时的参数设定 下文中的数据库版本为Oracle 9i(9.2.0)，安装数据库时，数据库系统会创建一个数据库实例，其中：安装目录选为：\oracle，数据库名与数据库SID号都输入：ora9]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何将非归档日志模式切换到归档日志模式]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64532.html</link>
    <description><![CDATA[在Oracle数据库9i中，采用Oracle默认的安装设置进行安装后，数据库处于非归档日志模式，为了实现数据库的备份和恢复，我们通常要把数据库切换到归档日志模式。 具体步骤如下：(Or]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Transact]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64531.html</link>
    <description><![CDATA[TSQL不用游标就可以循环的两个方法： 方法一： SELECT * INTO #t1 FROM dbo.HorseBase DECLARE @id int DECLARE @t2 table (id int) WHILE (exists(SELECT HorseNumber FROM #t1)) BEGIN SELECT TOP 1 @id=HorseNumber FROM #t1 INSERT IN]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用RAMDISK来提高PostgreSQL访问速度]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64530.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网）主要介绍了使用RAMDISK提高PostgreSQL访问速度的具体方法，详细内容请参考下文。 RAMDISK作用于硬盘空间的内存。无论什么时候你使用RAMDISK，实际上你是在使用内]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可以适应多种环境的共享数据结构设计示例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64529.html</link>
    <description><![CDATA[可以适应多种环境的共享数据结构设计示例： 1.指标表 指标表保存主要的指标的信息。 2.指标统计口径代码表 指标统计口径代码表主要用来维护指标统计统计口径信息，包括所有的统]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库迁移过程中使用热备份进行分时恢复]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64527.html</link>
    <description><![CDATA[一个大型数据库的迁移过程中，一般只会有很短的停机时间，对于DBA来说，压力可想而之。本文将着重介绍一个缩短停机时间的好方法，详细内容请参考下文。 注： 本文中的示例适用]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态SQL的编译原理与基本开发思想的关系]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64526.html</link>
    <description><![CDATA[1．静态SQLSQL与动态SQL： Oracle编译PL/SQL程序块分为两个种：其一为前期联编（early binding），即SQL语句在程序编译期间就已经确定，大多数的编译情况属于这种类型；另外一种是后期联编]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库中为什么会出现_WA_Sys_开头的索引]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64525.html</link>
    <description><![CDATA[现象： 在实际应用中，发现很多_WA_Sys 开头的索引。 具体示例如下: PK_TA065 _WA_Sys_TA065_24_3FFCF760 IX_TA065_19_47 IX_TA065_02 IX_TA065_04 IX_TA065_13 IX_TA065_25 IX_TA065_17_19 IX_TA065_43 IX_TA065_29 _WA_Sys_TA065]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握分别删除数据表记录的方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64524.html</link>
    <description><![CDATA[很多情况下我们需要分别删除数据表的一些记录，分批来提交以此来减少对于Undo的使用，下面我们提供一个简单的存储过程来实现此逻辑。 SQL create table test as select * from dba_objects; Tab]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松解决启用数据库复制时出现的18483错误]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64523.html</link>
    <description><![CDATA[问题：在启用数据库复制的时出现以下现象： “错误18483：未能连接到服务器 'xx'，因为'distributor_admin'未在该服务器上定义为远程登录”，这种情况应当如何解决？ 解答： 出现这种问]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握SQL语言中游标的使用技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64522.html</link>
    <description><![CDATA[游标的使用 提到游标这个词,人们想到的是在屏幕上一个闪动的方框,用以指示用户将要输入字符的位置。而在关系型数据库的SQL语言中,游标却有另外的含义,它是存放结果集的数据对象]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握数据库设计的五种常见关系]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64521.html</link>
    <description><![CDATA[数据库设计的5种常见关系（本文主要讲解“多态”关系结构）。 ◆1.配置关系 --和其他表无任何关系的表。 ◆2.一对多关系 ，一张表包含另外一个表的主键作为外键。 ◆3.多对多，需]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解关系型数据库中游标的优点及种类]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64520.html</link>
    <description><![CDATA[在数据库开发过程中，当你检索的数据只是一条记录时，你所编写的事务语句代码往往使用SELECT INSERT 语句。但是我们常常会遇到这样情况，即从某一结果集中逐一地读取一条记录。那]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库迁移的几种常用方式及优缺点比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64519.html</link>
    <description><![CDATA[数据库迁移的几种方式： 一、exp/imp： 这也算是最常用最简单的方法了，一般是基于应用的owner级做导出导入。 操作方法为：在新库建立好owner和表空间，停老库的应用，在老库做exp]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在无法增强硬件配置的情况下对性能调优]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64518.html</link>
    <description><![CDATA[问： Oracle进程的内存占用一直在不断增加,达到1G左右时就会出现连接失败,监听进程死掉,或者CPU达到100%的现象，请问应当如何来解决? 解答： Oracle性能调优一直是一个很有意思的命题，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在特定情况下使用游标改善语句执行效率]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64517.html</link>
    <description><![CDATA[正常情况下，游标都不如sql语句快,但是笔者碰上一个3千万级的表设置为表a,还有一个几万级的表设置为表b,从表b提取前600,每组取前10个。 如果用sql语句写的话，与下面的语句类似：]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解FORALL与BULK COLLECT的使用方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64515.html</link>
    <description><![CDATA[1．使用FORALL比FOR效率高，因为前者只切换一次上下文，而后者将是在循环次数一样多个上下文间切换。 2．使用BLUK COLLECT一次取出一个数据集合，比用游标条取数据效率高，尤其是在网]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实践证明在数据库中使用游标效果会更好]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64514.html</link>
    <description><![CDATA[在数据库中有两个表，一个比较巨大，大约1千万条记录（表Big），另一个只有5000条（表small）。 目前需要根据表small来更新表Big。 UPDATE Big SET Bf1=0 WHERE BigId IN(SELECT BigId FROM Small WHERE S]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解如何让多进程多线程访问数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64513.html</link>
    <description><![CDATA[如何让多进程多线程访问数据库，而不会选择相同的数据，这在设计分布式程序的时候经常用到，多台机器的多个进程，每个进程都有多个线程，每个线程要从数据库里取数据来处理，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你轻松解决数据库非事务表回滚失败问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64511.html</link>
    <description><![CDATA[执行ROLLBACK（回滚）时，如果收到下述消息，表示事务中使用的1个或多个表不支持事务： 警告：某些更改的非事务性表不能被回滚。 这些非事务性表不受ROLLBACK语句的影响。 如果在事]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Server 2005数据库中表的递归查询]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64510.html</link>
    <description><![CDATA[递归查询对于同一个表父子关系的计算提供了很大的方便，这个示例使用了SQL server 2005中的递归查询,使用的表是CarParts，这个表存储了一辆汽车的所有零件以及结构，part为零件单位，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你轻松掌握数据仓库的规划和构建策略]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64509.html</link>
    <description><![CDATA[这篇论坛专题（赛迪网技术社区）主要介绍针对数据仓库的规划构建策略进行了详细的介绍，具体内容请大家参考下文： 数据仓库作为决策支持系统（DSS）的基础，具有面向主题的、集]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解数据库备份过程中的常见问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64508.html</link>
    <description><![CDATA[第一个问题: 有RAID，还需要做数据库备份吗？ 回答:需要。有了RAID，万一部份磁盘损坏，可以修复数据库，有的情况下数据库甚至可以继续使用。但是，如果哪一天，你的同事不小心删]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何修改Syabse服务器端的默认字符集]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64507.html</link>
    <description><![CDATA[在安装完Sybase后，很多人在使用isql或程序插入中文数据后发现，查询出的数据是乱码（中文字符全为‘？’），这是因为客户端的字符集和服务端的字符集不一致造成的，Sybase默认安装]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[拨云见日 正确认识password file的作用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64506.html</link>
    <description><![CDATA[许多人都知道，在数据库没有正式启动前，数据库的内建用户是无法通过数据库来验证身份的，但口令文件中存放sysdba/sysoper用户的用户名及口令却允许用户通过口令文件验来证，它可]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库完整性就是数据库完整性约束设计]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64504.html</link>
    <description><![CDATA[数据库完整性（Database Integrity）是指数据库中数据的正确性和相容性。数据库完整性由各种各样的完整性约束来保证，因此可以说数据库完整性设计就是数据库完整性约束的设计。数据]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解fedora4环境下安装ASE15的具体步骤]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64503.html</link>
    <description><![CDATA[fedora4环境下安装ASE15的具体步骤： 1.首先安装好fedora4，最好会话选择英文。负责图形化的安装界面中会出现乱码。 2.下载安装文件：ase1500_xe_linux.tgz 3.root用户下编辑/etc/sysctl.conf。添加]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将多表格查询合并至单一声明的常用方式]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64501.html</link>
    <description><![CDATA[在对跨多个表格的数据进行组合时，有时很难搞清楚要使用哪一个SQL句法。我将在这里对将多个表格中的查询合并至单一声明中的常用方式进行阐述。 在这篇文章中的样本查询符合SQ]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[由浅入深讲解数据库管理系统层次安全技术]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64499.html</link>
    <description><![CDATA[数据库系统的安全性很大程度上依赖于数据库管理系统。如果数据库管理系统安全机制非常强大，则数据库系统的安全性能就较好。目前市场上流行的是关系式数据库管理系统，其安全]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据转换服务DTS基本情况及其构建组件]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64498.html</link>
    <description><![CDATA[在使用SQL Server 的过程中,由于经常需要从多个不同地点将数据集中起来或向多个地点复制数据,所以数据的导出,导入是极为常见的操作.我们可以使用BCP 命令来完成这一任务,但是记住]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解SQL查询连续号码段的巧妙解法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64497.html</link>
    <description><![CDATA[本文介绍了一则非常巧妙的SQL技巧，具体内容请参考下文： 问题如下： 有一个表结构： fphm,kshm2014,000000012014,000000022014,000000032014,000000042014,000000052014,000000072014,000000082014,000000092013,00000]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[锁现象通常分为死锁和锁等待两种情形]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64494.html</link>
    <description><![CDATA[简介 锁是数据库为了控制并发数据的完整性而引入的机制，在并发应用中出现锁现象并不可怕，锁现象通常分为死锁和锁等待两种情形。 死锁是因为两个并发的进程或者线程同时各自]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你轻松接触数据库命名规范的相关概念]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64492.html</link>
    <description><![CDATA[1、数据库表 根据表所属的子系统/模块，命名方式为： 数据库表名 = 子系统/模块 缩写 + 表含义 其中子系统/模块的缩写首字母大写，表含义中每个单词的首字母为大写。 子系统/模块及]]></description>
    <pubDate>暂无</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可以提高数据库查询性能的反规范设计]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64491.html</link>
    <description><![CDATA[数据的反规范 ◆反规范的好处 是否规范化的程度越高越好?这要根据需要来决定，因为“分离”越深，产生的关系越多，关系过多，连接操作越频繁，而连接操作是最费时间的，特别对]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握一个交叉表的通用存储过程]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64490.html</link>
    <description><![CDATA[交叉表的通用存储过程: CREATE PRoc p_qry @TableName sysname, --表名 @纵轴 sysname, --交叉表最左面的列 @横轴 sysname, --交叉表最上面的列 @表体内容 sysname, --交叉表的数数据字段 @是否加横向合计]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[安装时出现一般网络性错误的解决方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64489.html</link>
    <description><![CDATA[在SQL Server 2000的安装过程中，提示错误对话框：“安装程序配置服务器失败。参考服务器错误日志和C:\windows\sqlstp.log”，从而无法安装。查看C:\WINNT\sqlstp.log 显示“一般网络性错误”。]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过rownum隐式游标实现与TOP相似的功能]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64488.html</link>
    <description><![CDATA[虽然Oracle数据库并不支持TOP关键字：但它提供了rownum这个隐式游标，可以实现与TOP类似的功能。 示例如下： SELECT TOP 10 ... FROM WHERE ... 要写成 SELECT ... FROM ... WHERE ... AND rownum = 10 rownum 是]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在数据库中建表时记录长度为什么越短越好]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64487.html</link>
    <description><![CDATA[在实际的工作和学习中，建表时记录的长度越短越好，越短则IO操作越少，查询越快。能用int就不要用bigint，而如果能用tinyint是最好的。定义varchar时按照业务需要设置长度，不要一律]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松掌握Oracle数据库Where条件执行顺序]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64486.html</link>
    <description><![CDATA[由于SQL优化起来比较复杂,并且还会受环境限制,在开发过程中,写SQL必须必须要遵循以下几点的原则： 1.Oracle采用自下而上的顺序解析WHERE子句,根据这个原理,表之间的连接必须写在其他]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[死锁并不可怕也并不是难以解决的技术问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64484.html</link>
    <description><![CDATA[许多初学者由于缺乏大批量数据处理的经验，在处理“死锁”问题的时候耗费了许多的时间和精力。本文中，我们将针对程序中出现的各种“死锁”问题进行详细的了解。 “死锁”的定]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握SQL语句各种写法的效率问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64483.html</link>
    <description><![CDATA[问题1： 一次插入多条数据时下面这两种方法,哪种方法效率高? CREATE TABLE tb(ID int, 名称 NVARCHAR(30), 备注 NVARCHAR(1000)) INSERT tb SELECT 1,'DDD',1 UNION ALL SELECT 1,'5100','D' UNION ALL SELECT 1,'5200','E' 也可]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[运营数据存储ODS在数据仓库中的实际应用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64482.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）主要介绍了运营数据存储ODS在数据仓库中的实际应用，详细内容请大家参考下文： 运营数据存储（The Operational data store, ODS）或称操作型数据存储是一]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解MSDB数据库置疑状态的解决方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64481.html</link>
    <description><![CDATA[问题： 我的SQL Server 2000的MSDB数据库，因为不正常关机，造成了置疑状态，请问采用什么方法能够弥补？ 解决方法： 你可以采用以下的代码进行修复: USE MASTERGOSP_CONFIGURE 'ALLOW UPDATES',1]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据挖掘技术中的抽取存储 管理和展现]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64480.html</link>
    <description><![CDATA[在技术上可以根据它的工作过程分为：数据的抽取、数据的存储和管理、数据的展现等关键技术。 数据的抽取 数据的抽取是数据进入仓库的入口。由于数据仓库是一个独立的数据环境]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全面解析数据挖掘的分类及各种分析方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64478.html</link>
    <description><![CDATA[1.数据挖掘能做以下六种不同事情（分析方法）： · 分类 （Classification） · 估值（Estimation） · 预言（PRediction） · 相关性分组或关联规则（Affinity grouping or association rules） · 聚集（C]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何获取指定表中指定字段内的可用编号]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64477.html</link>
    <description><![CDATA[在对数据库编程的过程中，许多人经常会用一个ID列标记该记录的信息。但获得一个可用的编号后经常需要频繁的查找以使编号不被打断，本文将主要介绍一个解决此问题的示例，具体]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你轻松掌握Informix数据库的日常维护]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64476.html</link>
    <description><![CDATA[为了提高日常维护IDS的效率，特提供以下脚本供大家参考。 检查各个dbspaces的空间使用状况： select name dbspace,sum(chksize) allocated,sum(nfree) free, round(((sum(chksize)-sum(nfree))/sum(chksize))*100)||%]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解如何填平数据仓库与实时系统鸿沟]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64475.html</link>
    <description><![CDATA[这篇论坛专题（赛迪网技术社区）主要介绍了如何解决数据仓库与实时系统之间的交互问题，详细内容请大家参考下文： 在当今信息密集的环境下，对于数据仓库的需求日益增长。的确]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可以进行批量表删除的Informix数据库脚本]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64474.html</link>
    <description><![CDATA[一个用于Informix数据库批量删除临时表的脚本： #!/bin/csh if ($#argv != 1 ) then echo Usage:csh deltmp.sh [dbname]; exit(0); else if ($#argv == 1 ) then set dbname=$argv[1]; endif rm deltmp*.sql echo now load tmp table]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[错误 2812: 未能找到存储过程 master.dbo.xp_fixeddrives]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64473.html</link>
    <description><![CDATA[今天换了新的一台服务器，于是登陆上去，想还原一下数据库，没想到出现了下面这个问题： 出现这个原因有可能是因为： 用HZHOST实用工具集的服务器安全设置里安装了MSSQL安全配置，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解Informix数据库的安全性及安全审计]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64472.html</link>
    <description><![CDATA[Informix动态服务器提供两个级别的访问特权，来保证数据库的安全性。数据库特权控制对数据库的访问和在数据库上创建表和索索引的权力。表的特权指定用户在特定的表上所能进行的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[由浅入深讲解update statistics的级别]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64471.html</link>
    <description><![CDATA[给定查询的不同执行策略可能会有不同的代价，构造具有最小查询执行代价的查询执行计划是数据库系统的职责。查询优化是为了查询选择最有效的查询策略的过程。查询优化是尽量找]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何通过触发器实现数据库的即时同步]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64470.html</link>
    <description><![CDATA[问题： 如何通过触发器实现数据库的即时同步？ 解答： 具体的解决方法请参考下文。 即时同步两个表的示例如下: 测试环境如下:SQL Sever 2000数据库,远程主机名:xz,用户名:sa,密码:无,数]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[角色赋给指定用户即可拥有备份数据库权限]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64469.html</link>
    <description><![CDATA[在我们新建一个数据库后，会在数据库中看到两个容器：用户和角色，数据库用户通过验证后对于数据库有操作权限，数据库角色是预置数据库权限的对象，有些类似于安全组，但是比]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix数据库利用索引提高查询效率]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64468.html</link>
    <description><![CDATA[如果查询结果仅为一行或很少几行时（高选择性high selectivity)，利用索引进行查询会大大提高效率。相比之下，如果没有索引，查询则只能顺序扫描整个表。在OLTP环境下，事务处理在很]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用一个案例讲解SQL Server数据库恢复]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64467.html</link>
    <description><![CDATA[案例： 客户的一台服务器出现Raid故障，经过我们的努力，数据基本恢复成功，但是其中的一个SQL Server日志文件（扩展名LDF）损坏严重，基本不能使用，但是数据文件损坏并不严重，我]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用SQL语句对不同数据库进行高效果分页]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64466.html</link>
    <description><![CDATA[在程序的开发过程中，处理分页是大家接触比较频繁的事件，因为现在软件基本上都是与数据库进行挂钩的。但效率又是我们所追求的，如果是像原来那样把所有满足条件的记录全部都]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Informix数据库中释放异常的锁资源]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64465.html</link>
    <description><![CDATA[Informix数据库释放异常的锁资源: 问题 在Informix数据库中，锁的使用和释放是自动完成的。但在某些异常情况下，当前台程序退出（正常或异常）后，相应在数据库中的会话没有终止，其]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详细讲解SQL中CONVERT转化函数的用法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64461.html</link>
    <description><![CDATA[CONVERT的使用方法: 格式: CONVERT(data_type,exPRession[,style]) 说明: 此样式一般在时间类型(datetime,smalldatetime)与字符串类型(nchar,nvarchar,char,varchar) 相互转换的时候才用到. 例子: Select CONVERT(varch]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如果有输出参数则必须使用output做修饰符]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64460.html</link>
    <description><![CDATA[在调用存储过程时，假如有输出参数,就必须要使用output做修饰符。 示例如下： alter PRoc ABC( @OutValue nvarchar(20) output)asset @OutValue='aabbcc'select a,b from abprint @OutValue alter proc ABCVasDeclare @OutVa]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解分区表的可用性及相关错误案例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64459.html</link>
    <description><![CDATA[分区表的可用性： 创建一个分区表: CREATE TABLE employee ( empno int, ename varchar2(20) ) PARTITION BY HASH (empno) ( partition part_1 tablespace TBS_DAIMIN, partition part_2 tablespace USERS ) SQL insert into employee select]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[select*但却不想显示所有列的示例脚本]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64457.html</link>
    <description><![CDATA[select * 但却不想显示所有列的示例脚本: if you using sqlplus you can use the noPRint tag SQL col noprint 代码:-------------------------------------------------- 1 select * from tab 2* where rownum 2 rollingpig@test / TNAME TA]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何得到两个相邻snap_id中的一个list]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64455.html</link>
    <description><![CDATA[问题：如何得到Statspack的两个相邻snap_id 的一个list？ 解决方法： 在实际的工作中，很多人经常会用到statspack来计算一段时间内每两个相邻的snapshot的一些data的差值。 大家可以这样用：]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[循环插入一定时间范围内的随机日期值]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64454.html</link>
    <description><![CDATA[SQL Server中循环插入一定时间范围内的随机日期值 -- First, let's declare the date range. I am declaring this -- here for the demo, but this could be done anyway you like. DECLARE @date_from DATETIME; DECLARE @date_to DATETIM]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把SQL结果中几行值串起来的sum_string]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64453.html</link>
    <description><![CDATA[把SQL结果中几行值串起来的函数sum_string： 示例如下： CREATE OR REPLACE FUNCTION sum_string (tablename IN VARCHAR2,fieldname IN VARCHAR2,wherecondistion IN VARCHAR2) RETURN VARCHAR2 AS tmpsql VARCHAR2(4000); tmparray Dbms_]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语句应当如何使用内嵌视图与临时表]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64452.html</link>
    <description><![CDATA[许多情况下，查询需要将数据与其他一些可能只能通过执行 GROUP BY 然后执行标准查询才能收集的数据进行联接。例如，如果要查询最新五个定单的有关信息，您首先需要知道是哪些定单]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[导致checkpoint进程耗用大量CPU的情况]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64451.html</link>
    <description><![CDATA[Oracle数据库9i允许动态修改SGA的大小，但是，在实际的工作和学习中，经常有减少(resize/reduce) shared_pool_size不成功，反而导致checkpoint(CKPT) 进程耗用大量CPU的情况。 具体原因： 是由于在]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解如何检查使用空间大于90%的表空间]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64450.html</link>
    <description><![CDATA[检查使用空间大于90%的表空间示例： select a.tablespace_name, totalspace, nvl(freespace, 0) freespace, (totalspace - nvl(freespace, 0)) used, ((totalspace - nvl(freespace, 0)) / totalspace) * 100 %USED from (select tablespace]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解如何实现互联网上数据库的安全]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64449.html</link>
    <description><![CDATA[设置PRoxy Server和SQL Server实现互联网上的数据库安全： ◆首先，我们需要了解一下SQL Server在WinSock上定义协议的步骤： 1. 在”启动”菜单上，指向”程序/Microsoft Proxy Server”，然后点击”]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解SQL 2005数据库转到SQL 2000的步骤]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64448.html</link>
    <description><![CDATA[1. 生成for2000版本的数据库脚本 2005的manger studio -- 打开对象资源管理器(没有的话按F8), 连接到你的实例 -- 右键要转到2000的库 -- 任务 -- 生成脚本 -- 在脚本向导的选择数据库中, 确定]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握如何返回SQL Server列表]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64447.html</link>
    <description><![CDATA[返回网络中SQLServer列表: 示例如下： 功 能: 返回网络中SQLServer列表 参 数: List: 需要填充的TstringList 返回值: 成功: True,并填充List 失败 False 备 注: 版 本: 1.0 2002/10/02 22:44:00 =================]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用一个实例讲解connect resource权限]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64446.html</link>
    <description><![CDATA[connect resource权限； grant connect,resource to user; 后用户包括的权限: CONNECT角色： --是授予最终用户的典型权利，最基本的 ALTER session --修改会话 CREATE CLUSTER --建立聚簇 CREATE DATABASE LINK --建立]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入探讨如何解决数据库中的死锁问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64445.html</link>
    <description><![CDATA[说道死锁问题的解决,一般情况下我们都是选择KILL进程,但如果不查出引起死锁的原因,死锁的现象则会频繁出现，其实只要通过查找引起死锁的操作,就可以方便的解决死锁。 具体的解决]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速掌握创建一个相同权限用户的方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64444.html</link>
    <description><![CDATA[问题：怎样才能创建一个相同权限的用户？ 解答： 1.选择用工具 不少工具有以现有用户为模版，建立新用户的功能。似乎OEM,TOAD都有。 2.自己动手写Script 检察dba_users, dba_role_PRivs, dba_]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[仅允许指定的机器连接SQL Server服务器]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64443.html</link>
    <description><![CDATA[问题： 希望仅仅允许某个指定ip的计算机连接到SQL Server服务器，但不允许其他的客户端进行连接。 解决方法如下： 你可以直接在防火墙中做限制，只允许与指定的IP地址建立1433的通讯]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速解决日志文件满造成的无法写入问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64442.html</link>
    <description><![CDATA[在日志文件满造成SQL数据库无法写入文件时，我们可以采用以下两种方法来解决此问题：(建议大家使用第一种方法) 第一种方法：清空日志。 ◆1．打开查询分析器，输入命令 DUMP TRAN]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web环境下的SQL Server数据备份与恢复]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64441.html</link>
    <description><![CDATA[1、前言 实现磁带备份数据的功能有两方面的困难：首先，MS SQL Server（以下简称SQL）所提供的数据库的整体备份及恢复功能不能直接满足本系统要求的数据滚动备份。其次，需要解决如]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用一个存储过程实现分步删除数据表记录]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64440.html</link>
    <description><![CDATA[简介 在实际的工作和学习中，我们需要分步删除数据表的一些记录，分批提交用以减少对Undo的使用，在本中我们将介绍一个简单的存储过程用于实现此逻辑。 大家可以根据各自的需要]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[摆脱困惑正确认识隔离级别的标准定义]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64438.html</link>
    <description><![CDATA[虽然ANSI/ISO SQL92标准有很详细的说明，但许多人看完之后都是一头雾水，本文将对其定义进行详细的说明。 l 未提交读（read uncommitted） l 提交读（read committed） l 重复读（repeatable read）]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库差异备份与增量备份的不同之处]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64437.html</link>
    <description><![CDATA[对于许多初学者来说，很难将差异备份和增量备份这两个概念理解透彻，本文中，我们将把增量备份与差异备份的具体定义和不同之处分别进行讲解： 差异备份的定义： 备份自上一次]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解数据库及数据仓库建模方法的分类]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64434.html</link>
    <description><![CDATA[数据库及数据仓库建模方法主要分以下四个种类： 第一类是关系数据库的三范式建模，通常我们将三范式建模方法用于建立各种操作型数据库系统。 第二类是Inmon提倡的三范式数据仓库]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[比较一下看看自己掌握了多少SQL快捷键]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64432.html</link>
    <description><![CDATA[SQL Server数据库快捷键： 书签：清除所有书签。 CTRL-SHIFT-F2 书签：插入或删除书签（切换）。 CTRL+F2 书签：移动到下一个书签。 F2 功能键 书签：移动到上一个书签。 SHIFT+F2 取消查询。]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据物理独立和数据逻辑独立的实现方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64431.html</link>
    <description><![CDATA[数据独立性是指建立在数据的逻辑结构和物理结构分离的基础上，用户以简单的逻辑结构操作数据而无需考虑数据的物理结构，转换工作由数据库管理系统实现。 数据独立性分为数据的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用人工智能技术自动对SQL语句进行重写]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64428.html</link>
    <description><![CDATA[SQL语句的优化是将性能低下的SQL语句转换成目的相同的性能优异的SQL语句。 人工智能自动SQL优化就是使用人工智能技术，自动对SQL语句进行重写，从而找到性能最好的等效SQL语句。 数]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[启用数据库复制时为什么会出现18483错误]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64423.html</link>
    <description><![CDATA[在启用数据库复制时,许多人可能会遇到下面的情况： 18483错误：未能连接到服务器 'xx'，因为'distributor_admin'未在该服务器上定义为远程登录。 问题原因： 如果出现这种问题,肯定是你曾]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解SQLite数据库管理系统的适用范围]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64422.html</link>
    <description><![CDATA[1.客户端/服务器程序 如果你有许多的客户端程序要通过网络访问一个共享的数据库, 你应当考虑用一个客户端/服务器数据库来替代SQLite. SQLite可以通过网络文件系统工作, 但是因为和大]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语句：按a列分组后b列最大的所有列记录]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64421.html</link>
    <description><![CDATA[示例:test 表 a b c 1 5 abc 2 6 bcd 1 7 ade 2 8 adc 若取按a列分组后,b列最大,的所有列的记录： result a b c 1 6 bcd 2 8 adc 可以使用如下语句： select * from test where b in (select max(id) from test group by a) 适用]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解SQL Union和Union All的使用方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64415.html</link>
    <description><![CDATA[UNION指令的目的是将两个SQL语句的结果合并起来。从这个角度来看， 我们会产生这样的感觉，UNION跟JOIN似乎有些许类似，因为这两个指令都可以由多个表格中撷取资料。 UNION的一个限制]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用＂SQL＂语句自动生成序号的两种方式]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64414.html</link>
    <description><![CDATA[SQL Server2005数据库中利用SQL语句自动生成序号: 1.首先，我们来介绍第一种方式: ◆查询的SQL语句如下: select row_number() over (order by name) as rowid, sysobjects.[name] from sysobjects ◆运行的结果: ro]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[TEMP表空间肆意扩大无法继续扩展的现象]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64413.html</link>
    <description><![CDATA[问题：服务器出现TEMP表空间肆意扩大，达到极限，无法继续扩展。 解决方法： 1、使用下面的语句查一下是谁在用临时段 SELECT s.username, s.sid, s.serial#, s.sql_address, s.machine, s.PRogram, su.ta]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用SQL写出当M*N时的螺旋矩阵算法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64412.html</link>
    <description><![CDATA[算法问题:用SQL写出当M*N时的螺旋矩阵算法 以下是一个4*4的矩阵: 1 12 11 10 2 13 16 9 3 14 15 8 4 5 6 7 请照上面矩阵的规律, 用SQL写出当M*N时的矩阵算法。 实现的sql与效果: 代码:-----------------]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MS SQL Oracle MySQL查出值为NULL的替换]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64411.html</link>
    <description><![CDATA[在SQL Server Oracle MySQL当数据库中查出某值为NULL怎么办? 1.MSSQL: ISNULL() 语法 ISNULL ( check_exPRession , replacement_value ) 参数 check_expression 将被检查是否为 NULL的表达式。check_expression 可以是任何类]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种处理不规范日期数据的好方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64410.html</link>
    <description><![CDATA[在实际的工作中，我们经常会从各种管理软件中导出数据，也许你会遇到存在日期数据不规范的现象，下面我们来介绍一种处理不规范日期数据的方法。 例子: 从一个管理系统中导出的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详细介绍分级汇总实现的3种方法的比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64409.html</link>
    <description><![CDATA[分级汇总实现的3种方法比较 1.代码示例: -------------------------------------------------------- select code 代码 , substrb(' ',1,item_level*2-2)||b.reg_type 登记注册类型, cnt 家数 from ( (select substr(z01_08,1,1)||]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把二进制的字段以字符串形式Select出来]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64408.html</link>
    <description><![CDATA[首先我们以一个Table为例，某个字段为二进制形式(binary),在查询管理器中Select出来就是形如”0x0A1F8697FF0000000000”，问题是存储过程不能返回二进制字段，不知道有什么办法可以Select出来]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库链与分布式数据库全局名]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64406.html</link>
    <description><![CDATA[1.数据库链 为对过程数据库定义的一路径。数据库链对分布式数据库的用户是透明的，数据库链的名字与链所指向的数据库的全局名相同。其由二部分组成：远程账号和数据库串。例建]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解阻塞现象的产生原因及处理方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64405.html</link>
    <description><![CDATA[1. 使用 sp_who 这个存储过程, 查询sql上的当前进程, 观察 blk 列值是否有不为0的, 如果有不为 0 的, 表示有阻塞, 产生阻塞的进程的 spid 即是 blk 列值, 被阻塞的进程是 列 blk 值不为0的记录]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[优化数据库的方法及SQL语句优化的原则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64402.html</link>
    <description><![CDATA[优化数据库的方法： 1、关键字段建立索引。 2、使用存储过程，它使SQL变得更加灵活和高效。 3、备份数据库和清除垃圾数据。 4、SQL语句语法的优化。（可以用Sybase的SQL Expert，可惜我]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详细讲解提高数据库查询效率的实用方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64399.html</link>
    <description><![CDATA[1.对查询进行优化，应尽量避免全表扫描，首先应考虑在 where 及 order by 涉及的列上建立索引。 2.应尽量避免在 where 子句中对字段进行 null 值判断，否则将导致引擎放弃使用索引而进行]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个用于跟踪和发现程序错误的触发器]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64398.html</link>
    <description><![CDATA[本文主要介绍了一个用来发现程序错误的触发器，具体示例如下： --跟踪一个表的所有操作的触发器create trigger tr_teston testfor insert,update,deleteasset nocount on--用临时表保存exec('DBCC INPUTBUF]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解如何删除仅为第一列相同的记录]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64396.html</link>
    <description><![CDATA[问题：关系数据库中手工输入表InputData中有如下记录: TagName TimeStamp Value MM0008 2007-08-12 0:00:00 1000 MM0008 2007-08-13 0:00:00 1001 MM0008 2007-08-14 0:00:00 1002 MM0008 2007-08-15 0:00:00 1003 MM0008 2007-08-16 0:0]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix数据库中如何插入BYTE大对象]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64393.html</link>
    <description><![CDATA[环境： wmware + sco+informix +esql/c 表结构： create table blobdemo( col_1 ingeger, col_2 byte in blobdbs) in datadbs; 代码如下： #include #include #include #include EXEC SQL INCLUDESQLCA; int main() { EXEC SQL BEGIN DECLARE SEC]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样才能实现排序优化的层次关系表设计]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64391.html</link>
    <description><![CDATA[数据层次的概念: 数据层次是表达数据的一种重要关系，在数据库的设计中，如：组织结构分解、工作任务分解、行政区划的分解等都是层次关系数据的典型实例。 表达层次关系的数据]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松掌握密码有效性验证失败的处理方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64390.html</link>
    <description><![CDATA[用windows账号登录成功后，右键实例，在属性窗口中, 转到Security(安全性)项, 查看服务器身份验证中设置确为SQL Server和Windows身份验证模式,然后执行下面的语句启用sa用户, 同时更改]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改变默认设置并且给每个文件指定位置]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64387.html</link>
    <description><![CDATA[在缺省情况下，SQL Server把所有文件作为服务器放置在同一个驱动盘中。除此之外，它还将每一数据库的日志文件放置在同一个驱动盘中。这样，所有的磁盘访问都会使系统性能大大下降]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[根据SQL存储过程名取得存储过程的内容]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64386.html</link>
    <description><![CDATA[根据SQL存储过程名取得存储过程的内容： 示例如下：（此语句适用于SQL Server2000/2005） SET QUOTED_IDENTIFIER ON GOSET ANSI_NULLS ON GO-- GetContentByPRocedureName '[dbo].[存储过程名]'Create procedure GetConte]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用dbms_rowid获取rowid的详细信息]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64384.html</link>
    <description><![CDATA[我们知道，通过dbms_rowid包可以获得Rowid中包含的详细信息，在下文中，我们将通过一个定义自定义函数来介绍此package的使用方法: create or replace function get_rowid(l_rowid in varchar2)return varch]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何正确的使用or展开来改写SQL查询]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64382.html</link>
    <description><![CDATA[问题: 下面的这条sql应该怎么优化? select * from sys_user where user_code = 'zhangyong' or user_code in (select grp_code from sys_grp where sys_grp.user_code = 'zhangyong')Execution Plan-------------------------------------------]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松掌握数据库的具体分类及其相关概念]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64380.html</link>
    <description><![CDATA[数据库的分类： ◆模糊数据库 指能够处理模糊数据的数据库。一般的数据库都是以二直逻辑和精确的数据工具为基础的，不能表示许多模糊不清的事情。随着模糊数学理论体系的建立]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix中查询database和table的占用空间]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64378.html</link>
    <description><![CDATA[Informix数据库中查询database和table占用空间的实例脚本： #!/usr/bin/shif [ $# -ne 1 ]then echo Usage: dbsize.sh DBNAME exitfiDBNAME=$1; export DBNAMETMPFILE=/tmp/dbsize.tmpRESULT=dbsize.outexport TMPFILE RESULTdbaccess !]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你轻松接触一个可以自动创建过程的脚本]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64376.html</link>
    <description><![CDATA[本文中，我们将介绍一个可以能自动创建过程的脚本，大家直接输入源泉表名和目标表名就可以创建以下链接中的全表复制过程。 create or replace PRocedure hyf_create_sql(p_sour_tab varchar2,p_dst]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用分析函数来进行行和列的转换]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64375.html</link>
    <description><![CDATA[使用分析函数进行行转列的处理： 比如查询scott.emp表的用户SAL排序信息，大家可以使用下面的查询： SQL SELECT deptno, ename,2 ROW_NUMBER () OVER (PARTITION BY deptno ORDER BY sal DESC) seq3 FROM emp; DEPTN]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用PL/SQL读取数据库中的BLOB对象]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64374.html</link>
    <description><![CDATA[使用PL/SQL从数据库中读取BLOB对象: 1.首先，确认现有对象 SQL col fdesc for a30SQL select fid,fname,fdesc from eygle_blob; FID FNAME FDESC------------------------ ------------------------------ 1 ShaoLin.jpg 少林寺-康熙手]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[放弃连接消息出现在错误日志中的主要原因]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64373.html</link>
    <description><![CDATA[对于连接问题，服务器错误日志是有用的信息源。如果服务器是用“--log-warnings”选项启动的，在错误日志中可能会发现下述消息： 010301 14:38:23 Aborted connection 854 to db: 'users' user: 'josh']]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Forall与bulk collect快速复制表数据]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64372.html</link>
    <description><![CDATA[本文中介绍的几种写法分别是从代码的简易性,FORALL和bulk collect的使用,以及分批插入这三方面考虑得出的，大家可以根据自己的需要灵活选择。 三种不同的写法: 1.使用了BULK COLLECT,没有]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[某些更改的非事务性表不能被回滚的现象]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64371.html</link>
    <description><![CDATA[执行ROLLBACK（回滚）时，如果收到下述消息，表示事务中使用的1个或多个表不支持事务： 警告：某些更改的非事务性表不能被回滚。 这些非事务性表不受ROLLBACK语句的影响。 如果在事]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[适合数据库初学者学习的日期操作范例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64370.html</link>
    <description><![CDATA[1.显示本月第一天 SELECT DATEADD(mm,DATEDIFF(mm,0,getdate()),0)select convert(datetime,convert(varchar(8),getdate(),120)+'01',120) 2.显示本月最后一天 select dateadd(day,-1,convert(datetime,convert(varchar(8),dateadd(month,1,ge]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建一个表时表中列的顺序对性能的影响]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64369.html</link>
    <description><![CDATA[创建一个表时表中列的顺序在某些程度上对性能会有一定的影响。(表中的列有数据) 。 Oracle对行数据的存储结构ROW HEADER(行头)和COLUMN DATA(列数据)。ROW HEADER存储的信息是一个FLAG BYTE，一]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入理解CAST和CONVERT提供的具体功能]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64368.html</link>
    <description><![CDATA[CAST 和 CONVERT 提供的功能：将某种数据类型的表达式显式转换为另一种数据类型。 语法 使用 CAST： CAST ( exPRession AS data_type ) 使用 CONVERT： CONVERT (data_type[(length)], expression [, style]) 参数]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几种解决互联网应用程序开发的好方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64367.html</link>
    <description><![CDATA[开发互联网应用程序是非常复杂的：你不仅要实现定义应用程序的行为和逻辑，还必须在分布式环境下将多种产品、技术层次和标准结合在一起。示例代码展示了多种解决互联网应用程]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[where子句在编写过程中需要注意的问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64366.html</link>
    <description><![CDATA[在应用系统开发初期，由于开发数据库数据比较少，对于查询SQL语句，复杂视图的编写，刚开始不会体会出SQL语句各种写法的性能优劣，但是如果将应用系统提交实际应用后，随着数据]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详细讲解各种数据库使用JDBC连接的方式]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64365.html</link>
    <description><![CDATA[下文中罗列了各种数据库使用JDBC连接的方式，大家可以将其作为一个手册使用。 1、Oracle8/8i/9i数据库（thin模式） Class.forName(oracle.jdbc.driver.OracleDriver).newInstance(); String url=jdbc:oracle:th]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[循环插入一定时间范围内的随机日期值]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64363.html</link>
    <description><![CDATA[SQL Server中循环插入一定时间范围内的随机日期值 -- First, let's declare the date range. I am declaring this -- here for the demo, but this could be done anyway you like. DECLARE @date_from DATETIME; DECLARE @date_to DATETIM]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[同时使用数据库链和序列时的注意事项]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64362.html</link>
    <description><![CDATA[正常情况下，在一条语句中如果同时包括数据库链和序列，就会出现潜在的问题，而Oracle的官方文档在这里描述的并不是十分清楚。 以下通过一个例子对同时包括数据库链和序列的几种]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松解决SQL Server 2005中的常见问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64361.html</link>
    <description><![CDATA[问题1：使用.net2005自带的SQL-ExPRess连接不上。 解决方法： 1.网络防火墙阻止数据库连接； 2.默认SQL-Express没有启动Sa账户－下载一个management studio express界面工具管理SQL-Express 3.无线网络会]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对系统默认的约束名和索引名进行重命名]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64358.html</link>
    <description><![CDATA[对系统默认的约束名和索引名进行重命名的存储过程示例： create or replace PRocedure proc_rename_constraint as --查找用户所有表的游标 cursor cur_table is select table_name from user_tables; --查找某张表所]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据仓库实施过程所需要考虑的步骤]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64357.html</link>
    <description><![CDATA[对于大多数IT顾问来说，实现一个数据仓库的难度比以前做过的任何项目难度都要大。考虑到不同的数据结构、用途以及应用程序开发方法，以前所积累的经验和技巧大部分都无用武之]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[奇怪的SQL:排序方法不同但结果却是一样的]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64355.html</link>
    <description><![CDATA[错误现象：开发中发现一条SQL出现问题，唯一的不同之处就是GMT_CREATE的排序方法不同，但得到的结果却是一样的，下面是这句SQL。 @select rw ,id from 2 (select rownum rw, ID from CMM_MESSAGE t wher]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[依赖于其他表格的标准轻松在表格里删除列]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64354.html</link>
    <description><![CDATA[在这篇文章里我要描述一下如何从表格里删除列，要删除的这些列同时还要依赖于其他表格的标准。要解决这个问题就需要一个很聪明而且完全遵守SQL92子查询声明的应用程序。 我必须]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解数据挖掘中的“数据归约技术”]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64353.html</link>
    <description><![CDATA[一、数据归约基本知识： 对于小型或中型数据集，一般的数据预处理步骤已经足够。但对真正大型数据集来讲，在应用数据挖掘技术以前，更可能采取一个中间的、额外的步骤-数据归]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对外连接的表加上条件后将会使外连接失效]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64352.html</link>
    <description><![CDATA[现象：一条SQL的运行突然变得很慢。 select uidTable.column_value, first_name||' '||last_name, company, job_title, upper(member_level), upper(service_value) from (select * from table(select cast(multiset (select b from bbb)as Ta]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一些工作和学习中经常用到的＂SQL＂语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64351.html</link>
    <description><![CDATA[一些常用的SQL语句： 新建表： create table [表名] ( [自动编号字段] int IDENTITY (1,1) PRIMARY KEY , [字段1] nVarChar(50) default '默认值' null , [字段2] ntext null , [字段3] datetime, [字段4] money null , [字段]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解有关数据挖掘的10个常见问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64350.html</link>
    <description><![CDATA[一 Data Mining 和统计分析有什么不同？ 硬要去区分Data Mining和Statistics的差异其实是没有太大意义的。一般将之定义为Data Mining技术的CART、CHAID或模糊计算等等理论方法，也都是由统计学者]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[pl/sql developer中TIMESTAMP的显示格式]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64348.html</link>
    <description><![CDATA[Oracle中的TIMESTAMP数据类型很多人用的都很少，所以即使最简单的一个查询返回的结果也会搞不清楚到底这个时间是什么时间点。 例如： 27-1月 -08 12.04.35.877000 上午 这个时间到底是几点呢]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在SQL Server数据库中实现数据的转移]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64346.html</link>
    <description><![CDATA[以SQL Server中的Northwind示范数据库为例，利用DTS设计器，进行数据的转移。 转移任务的步骤： ◆1. 新建目的数据库NOrthwind_DTS ◆2. 激活DTS设计器 在EnterPRise Manager上右击数据转换服务图表]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解V$Datafile_Header相关字段的使用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64345.html</link>
    <description><![CDATA[V$Datafile_Header相关字段的使用： ◆1、FUZZY也是用于表示数据文件 status的一个选项。 ◆2、checkpoint_time用于查看何时发生了检查点，可用于判断一个操作是否会发出检查点。 在v9.0.1及之前]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个写的很不错的获取单据编号存储过程]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64344.html</link>
    <description><![CDATA[获取单据编号的存储过程： 示例： CREATE TABLE [dbo].[BillNo]( [Id] [int] IDENTITY(1,1) NOT NULL, [BillName] [varchar](20) COLLATE Chinese_PRC_CI_AS NOT NULL, [MaxNo] [int] NULL, [MaxDate] [varchar](20) COLLATE Chinese_PRC_CI_A]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松掌握＂SQL＂服务存储过程的实例脚本]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64343.html</link>
    <description><![CDATA[SQL服务存储过程： CREATE PROCEDURE SP_DAY_SERVICE AS UPDATE RES_USER SET RES_USER.BC=CQ_HB.XBC FROM RES_USER,CQ_HB WHERE RES_USER.ACCOUNT_ID=CQ_HB.ACCOUNT_ID AND DATEDIFF(DAY,CQ_HB.SXRQ,GETDATE())=0 DELETE FROM CQ_HB WHERE DATEDIFF(D]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[探讨基于不绑定变量与绑定变量的柱状图作用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64342.html</link>
    <description><![CDATA[本文从不绑定变量与绑定变量两种情况讨论柱状图的作用。 一、不绑定变量的情况： 大家可以考虑下面的数据： SQL select owner,count(1) from th group by owner; OWNER COUNT(1) -------------------------]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解＂database link＂的设置和使用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64341.html</link>
    <description><![CDATA[database link是用来做什么的？ database link，它是用来更方便的一个数据库中访问另一个数据库（包括本地和远程的，道理是一样的），一开始，很多人会发生误解，其实是在本地建立的。]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[视图上含有row_number分析函数没法走索引]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64340.html</link>
    <description><![CDATA[问题：有如下的sql性能差： select rowid,PKG_LIFE_QUERY_FUNC.F_GET_DEPOSIT_ACCOUNT_VALUE(DEPOSIT_ID,ACCOUNT_CODE) as ACCOUNT_VALUE,PKG_LIFE_QUERY_FUNC.F_GET_DEPOSIT_ACCOUNT_VALUE(DEPOSIT_ID,ACCOUNT_CODE) as ACCOUNT_VALUE,a.* from V]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解＂InnoDB＂和＂MyISAM＂的不同之处]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64339.html</link>
    <description><![CDATA[InnoDB和MyISAM是许多人在使用MySQL时最常用的两个表类型，这两个表类型各有优劣，视具体应用而定。基本的差别为：MyISAM类型不支持事务处理等高级处理，而InnoDB类型支持。MyISAM类型的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL端口改变后的远程连接和数据库连接]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64337.html</link>
    <description><![CDATA[1.连接数据库时连接字符串加上端口 SQL Server端口:我们可以通过服务器端网络试用工具和客户端实用工具 设定方法是: ·分别使用服务器端网络试用工具和客户端实用工具 ·设置]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[优化数据库的思想及sql语句优化的原则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64336.html</link>
    <description><![CDATA[优化数据库的思想： ================ 1、关键字段建立索引。 2、使用存储过程，它使SQL变得更加灵活和高效。 3、备份数据库和清除垃圾数据。 4、SQL语句语法的优化。（可以用Sybase的SQ]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解数据库中行级转换成列级的实际应用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64335.html</link>
    <description><![CDATA[讲解数据库中行级转换成列级的实际应用: 首先，我们需要建立一个表,详细内容请参考下文： create table score( Name varchar(10), Subject varchar(10), Result int)go -- Insert some data to score tableinsert in]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解触发器中的inserted表和deleted表]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64334.html</link>
    <description><![CDATA[触发器语句中使用了两种特殊的表：deleted 表和 inserted 表。Microsoft SQL Server 2000 自动创建和管理这些表。可以使用这两个临时的驻留内存的表测试某些数据修改的效果及设置触发器操作]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现一个用户取过的数据不被其他用户取到]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64332.html</link>
    <description><![CDATA[实现一个用户取过的数据不被其他用户取到: 问题： 在用ADO访问数据库时，从一个表中取一定的记录（比如20行），取出后在程序中使用，使用完后删除掉记录（不用更新或删除记录）]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql优化原则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64331.html</link>
    <description><![CDATA[1、使用索引来更快地遍历表。 缺省情况下建立的索引是非群集索引，但有时它并不是最佳的。在非群集索引下，数据在物理上随机存放在数据页上。合理的索引设计要建立在 对各种查]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握一些异常精妙的＂SQL＂语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64330.html</link>
    <description><![CDATA[精妙的SQL语句: ◆复制表(只复制结构,源表名：a 新表名：b) SQL: select * into b from a where 11 ◆拷贝表(拷贝数据,源表名：a 目标表名：b) SQL: insert into b(a, b, c) select d,e,f from b; ◆显示文章、]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在SQL Server 2005中实现异步触发器架构]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64329.html</link>
    <description><![CDATA[在SQL Server 2005中实现异步触发器架构: 在SQL Server 2005数据库中，通过新增的Service Broker可以实现异步触发器的处理功能。本文提供一种使用Service Broker实现的通用异步触发器方法。 在本这]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用＂hint＂设置视图内的SQL查询方式]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64328.html</link>
    <description><![CDATA[本文主要介绍了Oracle数据库如何在有视图的SQL中使用hint(提示)来设置视图内的SQL查询方式。 在实际的工作中，很多人经常会用到视图访问，且视图一般都是已经写好了，但在许多情况下]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你快速了解“存储过程”的定义及优点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64327.html</link>
    <description><![CDATA[“存储过程”的定义及优点 存储过程 sql语句执行的时候要先编译，然后执行。存储过程就是编译好了的一些sql语句。应用程序需要用的时候直接调用就可以了，所以效率会高。 存储过]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SAVEPOINT和ROLLBACK TO SAVEPOINT语法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64325.html</link>
    <description><![CDATA[SAVEPOINT和ROLLBACK TO SAVEPOINT语法: SAVEPOINT identifier ROLLBACK [WORK] TO SAVEPOINT identifierRELEASE SAVEPOINT identifier InnoDB支持SQL语句SAVEPOINT, ROLLBACK TO SAVEPOINT, RELEASE SAVEPOINT和自选的用于ROLLBACK的WORK关键词]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你轻松掌握一个纵表转横表的＂SQL＂]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64323.html</link>
    <description><![CDATA[纵表转横表的SQL示例： 纵表结构: fname ftype fvalue小乔 zaocan 10小乔 zhongcan 20小乔 wancan 5 转换后的表结构: fname zaocan_value zhongcan_value wancan_value小乔 10 20 5 纵表转横表SQL示例: select Fname, s]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解如何查找某个对象的定义情况]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64321.html</link>
    <description><![CDATA[在实际的工作中，我们经常需要查找某个对象的定义的情况，本文中我们将针对不同类型的对象分别进行讲解： 一、V$视图和X$视图 普通的用户不能访问V$视图： SQL conn lunar/lunar@test1已]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用数据库引擎优化Tuning Advistor和dta]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64320.html</link>
    <description><![CDATA[SQL Server 2005的实用特性──优化程序: 首先在SQL Server Management Studio中点击工具的数据库引擎优化顾问可以启动这个程序,另外，我们也可以通过开始菜单中的SQL2005下面的性能工具下]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库快照,自定义函数与计算列的概念]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64319.html</link>
    <description><![CDATA[本文主要讲述了数据库快照,自定义函数与计算列的标准概念，详细内容请参考下文： 1.数据库快照 数据库快照可以理解为保存某个数据库在快照那一瞬间的状态。快照和备份原理有所]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在SQL 2005中实现循环每一行做一定的操作]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64317.html</link>
    <description><![CDATA[如果我们想对一个表的每一行做出比较复杂的操作，大多会想到用游标，本文中，我们将换一种思路，用SQL Server 2005中的新函数ROW_NUMBER()和while循环来对每一行执行操作。详细的示例代]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过两个例子讲解PIVOT/UNPIVOT的用法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64316.html</link>
    <description><![CDATA[使用过SQL Server 2000的人都知道，要想实现行列转换,必须综合利用聚合函数和动态SQL，具体实现起来需要一定的技巧，而在SQL Server 2005中，使用新引进的关键字PIVOT/UNPIVOT，则可以很容易]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[向你推荐一个特别好用的分页存储过程]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64315.html</link>
    <description><![CDATA[分页存储过程示例： create PRocedure sp_GetCurentPage (@pagesize int, --页面的大小@pageindex int) --当然的页号asbegin with temptbl as (SELECT ROW_NUMBER() OVER (ORDER BY address desc)AS Row, * from test ) SELECT * FROM tem]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库优化之SQL语句性能调整原则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64306.html</link>
    <description><![CDATA[一、问题的提出 在应用系统开发初期，由于开发数据库数据比较少，对于查询SQL语句，复杂视图的的编写等体会不出SQL语句各种写法的性能优劣，但是如果将应用系统提交实际应用后，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL 在什么情况下使用全表扫描]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64296.html</link>
    <description><![CDATA[本文对 SQL 在什么情况下进行全表扫描的问题给出了全面解析，大家在实际运用中可以作个参考。 1：对返回的行无任何限定条件，即没有where 字句。 2：对数据表与任何索引主列相对应]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速了解分布式数据库的主要特点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64294.html</link>
    <description><![CDATA[分布式数据库系统通常使用较小的计算机系统，每台计算机可单独放在一个地方，每台计算机中都有DBMS的一份完整拷贝副本，并具有自己局部的数据库，位于不同地点的许多计算机通过]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握常见的几种数据库对象]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64291.html</link>
    <description><![CDATA[教你快速掌握常见的几种 数据库对象 。注释：数据库对象是数据库的组成部分，常见的有以下几种： 1.表(Table ) 数据库中的表与我们日常生活中使用的表格类似，它也是由行(Row) 和列]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速掌握SQL中几个值得注意的特殊符号]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64283.html</link>
    <description><![CDATA[1.在SQL中，表示字符串得引号强烈建议使用单引号（''''）。虽然MySQL也可以使用双引号（），但是为了和SQL Server和Oracle统一，建议都使用单引号。如果在字符串中也有单引号出现的话，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库备份过程中经常遇到的九种情况]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64281.html</link>
    <description><![CDATA[第一种情况: 有RAID，还需要做数据库备份吗？ 回答:需要。有了RAID，万一部份磁盘损坏，可以修复数据库，有的情况下数据库甚至可以继续使用。但是，如果哪一天，你的同事不小心删]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[更改数据库表中现有行内的任何或所有值]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64280.html</link>
    <description><![CDATA[在 Interactive SQL 中，可以更改数据库表中现有行内的任何或所有值。你必须在被修改的列上具有 UPDATE 权限。当编辑结果集时，一次只能对一行中的值进行更改。 编辑结果集中的行 1.单]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正确认识对象数据库与关系数据库之间的区别]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64277.html</link>
    <description><![CDATA[面向对象数据库系统 面向对象数据库系统（Object Oriented Data Base System，简称OODBS）是数据库技术与面向对象程序设计方法相结合的产物。 对于OO数据模型和面向对象数据库系统的研究主]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从算法入手讲解SQL Server的典型示例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64275.html</link>
    <description><![CDATA[本文从算法入手同时通过实例来讲解如何在SQL Server数据库中实现最优最简的整个过程。 算法是计算机科学中一个重要的研究方向，是解决复杂问题的关键。在计算机世界中，算法无处]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用日志转移代替集群来提供较高的可用性]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64273.html</link>
    <description><![CDATA[集群是一种实现高可用性的有效解决方案，有时它会适得其反。而且，它还非常昂贵。因此，数据库管理员可使用日志转移代替集群来提供较高的可用性。 日志转移是这样一种处理过程]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从三个不同的层次实现对数据库数据的加密]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64271.html</link>
    <description><![CDATA[数据库系统的安全性很大程度上依赖于数据库管理系统。如果数据库管理系统安全机制非常强大，则数据库系统的安全性能就较好。目前市场上流行的是关系式数据库管理系统，其安全]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解数据库性能调优技术中的索引调优]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64269.html</link>
    <description><![CDATA[一、概述 随着数据库在各个领域的使用不断增长，越来越多的应用提出了高性能的要求。数据库性能调优是知识密集型的学科，需要综合考虑各种复杂的因素：数据库缓冲区的大小、索]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精讲sql server数据库备份多种方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64268.html</link>
    <description><![CDATA[SQL Server数据库备份有两种方式，一种是使用BACKUP DATABASE将数据库文件备份出去，另外一种就是直接拷贝数据库文件mdf和日志文件ldf的方式。下面将主要讨论一下后者的备份与恢复。本文]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据复制的基本理念与复制技术面临的挑战]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64267.html</link>
    <description><![CDATA[数据复制复制就是在物理上完全不同的数据库之间共享数据。当应用程序在任一数据库中修改共享数据时，就会将所做的更改传播到复制系统中的其它数据库。可以使用不同的方法并通]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql分段处理删除大量数据]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64266.html</link>
    <description><![CDATA[最近在QQ群里面，有人问起如何使用分段处理，竟然忘记如何操作，当时只是COPY一本书里的内容，只记得大致的步骤，先重新温习，以便记忆： 实现功能： 1.分段处理 2.拆分操作 3.批量]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过数据仓库来实现少花钱多办事的目的]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64265.html</link>
    <description><![CDATA[实施数据仓库的建议 你知道你需要一个数据仓库，而且已经下定决心了：你的竞争对手比你更早的预测到了市场趋势，其它公司也在Web驱动的市场上比你反应得更迅速，而你没有足够得]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL中各数据类型的长度、精度]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64263.html</link>
    <description><![CDATA[在 Microsoft? SQL Server? 中，每个列、局部变量、表达式和参数都有一个相关的数据类型，这是指定对象可持有的数据类型（整型、字符、money 等等）的特性。SQL Server 提供系统数据类型集]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何恢复系统数据库如何恢复系统数据库？]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64261.html</link>
    <description><![CDATA[关于系统数据库的恢复总结如下: 在SQL Server数据库中，系统信息存储在系统数据库中，主要的系统数据库包括：master-从整体上控制用户数据库和SQL Server操作，在创建了任何用户定义的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决SQL Server虚拟内存不足情况]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64255.html</link>
    <description><![CDATA[症状 在具有 2 GB 或更多 RAM 的计算机上，除了 256 MB (SQL Server 7.0) 或 384 MB (SQL Server 2000) 虚拟地址空间之外，SQL Server 在启动过程中保留剩下的所有虚拟地址空间以供缓冲池使用。另外，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[只让指定的机器连接SQLServer服务器]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64254.html</link>
    <description><![CDATA[背景 只想使某个ip的计算机才能连接到SQL Server服务器，不允许其他客户端连接。 解决方法 可以直接在防火墙中做限制，只允许与指定的IP地址建立1433的通讯。当然，从更为安全的角度]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql存储过程分页算法研究]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64252.html</link>
    <description><![CDATA[1.“俄罗斯存储过程”的改良版 CREATE PRocedure pagination1 (@pagesize int, --页面大小，如每页存储20条记录 @pageindex int --当前页码) as set nocount on begin declare @indextable table(id int identity(1,1),nid int]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过维护表的索引来提高数据的访问速度]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64240.html</link>
    <description><![CDATA[大多数SQL Server表需要索引来提高数据的访问速度，如果没有索引，SQL Server要进行表格扫描读取表中的每一个记录才能找到索要的数据。索引可以分为簇索引和非簇索引，簇索引通过重]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[特殊sql语句及优化原则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64237.html</link>
    <description><![CDATA[1.按姓氏笔画排序: Select * From TableName Order By CustomerName Collate Chinese_PRC_Stroke_ci_as 2.数据库加密: select encrypt('原始密码') select pwdencrypt('原始密码') select pwdcompare('原始密码','加密后密码')]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[两表(多表)关联update的写法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64233.html</link>
    <description><![CDATA[今天凌晨因为要在数据库里做一些操作，是关于两表关联的update，但语句怎么写都不正确，老是报错，于是心惊肉跳（就怕不能及时完成操作）去查了一下，NND，原来把SQL写成了在SQL]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精妙sql语句集合]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64231.html</link>
    <description><![CDATA[下列语句部分是Mssql语句，不可以在access中使用。 SQL分类： DDL—数据定义语言(Create，Alter，Drop，DECLARE) DML—数据操纵语言(Select，Delete，Update，Insert) DCL—数据控制语言(GRANT，REVOKE，C]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一次大批量数据备份和导入工作]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64229.html</link>
    <description><![CDATA[有一个数据表的insert、delete操作频繁，空间无释放。唯有进行一次导出、DROP、导入操作。 当前数据量：接近6亿 估计其中有一部分数据太旧，所以使用带条件的导出。 $export NLS_LANG=AM]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使你的 SQL 语句完全优化]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64218.html</link>
    <description><![CDATA[我们要做到不但会写SQL,还要做到写出性能优良的SQL语句。 （1）选择最有效率的表名顺序(只在基于规则的优化器中有效)： Oracle的解析器按照从右到左的顺序处理FROM子句中的表名，FR]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现删除主表数据时, 判断与之关联的外键表是否有数据引用, 有标志, 无则删除]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64217.html</link>
    <description><![CDATA[问题描述： 某个基础信息表，与系统中30多个表存在外键关系，当删除基础数据时，需要判断是否已经被用过，如果用过则更改标志位，如果没有用过则直接删除，如何能很好实现这个]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何利用SQL查询返回庞大的整数序列表]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64214.html</link>
    <description><![CDATA[WITH Digits AS ( SELECT 0 as Number UNION SELECT 1 UNION SELECT 2 UNION SELECT 3 UNION SELECT 4 UNION SELECT 5 UNION SELECT 6 UNION SELECT 7 UNION SELECT 8 UNION SELECT 9 ) SELECT (d5.Number * 100000) + (d4.Number * 10000) + (d3.Number * 10]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sqlplus命令的使用大全]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64213.html</link>
    <description><![CDATA[Oracle的sql*plus是与oracle进行交互的客户端工具。在sql*plus中，可以运行sql*plus命令与sql*plus语句。 我 们通常所说的DML、DDL、DCL语句都是sql*plus语句，它们执行完后，都可以保存在一个被称]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql中的iif语句详解]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64211.html</link>
    <description><![CDATA[IIf 返回由逻辑测试确定的两个数值或字符串值之一。 语法 数字 IIf(laquo;Logical ExPRessionraquo;, laquo;Numeric Expression1raquo;, laquo;Numeric Expression2raquo;) 如果 laquo;Logical Expressionraquo; 取值为 TRUE，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样将Excel中的数据导入到SQLServer2000数据库中]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64210.html</link>
    <description><![CDATA[1、打开企业管理器，打开要导入数据的数据库，在表上按右键，所有任务--导入数据，弹出DTS导入/导出向导，按 下一步 ， 2、选择数据源 Microsoft Excel 97-2000，文件名 选择要导入的xls文]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一些在SQL帮助中找不到的系统存储过程－System stored procedures]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64208.html</link>
    <description><![CDATA[引用自 http://jtds.sourceforge.net/apiCursors.html System stored PRocedures This document contains information on undocumented stored procedures in Microsoft SQL Server. Name Function sp_cursor Update a cursor sp_cursorclose close a curs]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Sql Server 2005 数据库维护计划]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64194.html</link>
    <description><![CDATA[这个星期开始为了减轻工作压力开始使用数据库维护计划(SQL Server Maintenance Plan Wizard)维护数据库，由于以前都没用过，在个人使用的免费版(ExPRess)里也没有这个功能，所以现在好好学习]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL中使用关系代数合并数据]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64191.html</link>
    <description><![CDATA[使用关系代数合并数据 1 关系代数 合并数据集合的理论基础是关系代数，它是由E.F.Codd于1970年提出的。 在关系代数的形式化语言中： ? 用表、或者数据集合表示关系或者实体。 ? 用行]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分页实现方法的性能比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64188.html</link>
    <description><![CDATA[我们先给出几种主要的分页方法和核心语句,然后直接给出结论,有兴趣的读者可以看看后面的数据 几种常用存储过程分页方法 TopN方法 select Top(@PageSize) from TableName where ID Not IN (Select To]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语句导入导出大全]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64175.html</link>
    <description><![CDATA[正巧这两天要用到这个，上网找到一个，回来自己检测一下： /******* 导出到Excel EXEC master..xp_cmdshell 'bcp SettleDB.dbo.shanghu out c:\temp1.xls -c -q -SGNETDATA/GNETDATA -Usa -P' /*********** 导入Excel]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL数据库中工作日如何计算(方法与测试)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64174.html</link>
    <description><![CDATA[--方法一: create function f_workday ( @dt_begin datetime,--起始时间 @dt_end datetime --结束时间 )returns int as begin declare @dt datetime, @re int, @i int if @dt_begin @dt_end select @dt = @dt_begin, @dt_begin=@dt_end, @dt_end=@]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何修改数据库表或存储过程的所有者]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64170.html</link>
    <description><![CDATA[use dbname sp_changedbowner 'new_user' 更改当前数据库的所有者。 --批量修改数据库对象的所有者 新建一个存储过程：changename if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[changename]')]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL关于联合的基本概念和示例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64169.html</link>
    <description><![CDATA[联合的类型分为 INNER JOIN 内部联合,OUTER JOIN外部联合，这两种联合的本质区别在于ON子句，前者ON子句的条件必须为真，后者没有此限制 INNER JOIN 分为 等值与不等值联合 这种联合的子句]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分页存储过程]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64129.html</link>
    <description><![CDATA[create PRocedure ProgrameName (@nvar Int, @pagesize int, @pageindex int, @docount bit) as set nocount on if(@docount=1) select count(num) from TableName where 1=1 else begin declare @indextable table(id int identity(1,1),nid int) declare @P]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL数据库用户只有“名称”而无“登陆名”解决]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64123.html</link>
    <description><![CDATA[exec sp_change_users_login 'UPDATE_ONE',没有登陆名的数据库用户,'新的登陆名' go 原因: SQL备份的问题有一台SQL SERVER 服务器，将其中的数据库DataBase1备份成一个文件，在另外一台SQL SERVER服务器上]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库的分页问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64120.html</link>
    <description><![CDATA[随着数据库中存储的数据的增多，满足用户查询条件的数据也随之增加。而用户一般不可能一次性看完所有的数据， 很多时候也不需要看完所有数据。在这种情况下，分页返回用户查询]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精妙SQL语句收集]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64115.html</link>
    <description><![CDATA[SQL语句先前写的时候，很容易把一些特殊的用法忘记，我特此整理了一下SQL语句操作，方便自己写SQL时方便一点，想贴上来，一起看看，同时希望大家能共同多多提意见，也给我留一些]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语句优化技术分析]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64109.html</link>
    <description><![CDATA[操作符优化 IN 操作符 用IN写出来的SQL的优点是比较容易写及清晰易懂，这比较适合现代软件开发的风格。 但是用IN的SQL性能总是比较低的，从Oracle执行的步骤来分析用IN的SQL与不用IN的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL中查询数据表字段名称的查询语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/64103.html</link>
    <description><![CDATA[以下为在SQL Server中查看某个表的字段信息的查询语句（以数据库Pubs的jobs表为例） SELECT SysObjects.Name as TableName, SysColumns.Name as ColumnsName, SysTypes.Name as DateType, SysColumns.Length as DateLength, Sy]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[谈数据库中模糊数据的输入与判别]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63648.html</link>
    <description><![CDATA[前言 模糊数据库，是指能够处理模糊数据的数据库。一般的数据库都是以二直逻辑和精确的数据工具为基础的，不能表示许多模糊不清的事情。随着模糊数学理论体系的建立，人们可以]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在应用程序中避免死锁问题？]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63647.html</link>
    <description><![CDATA[任何基于锁的并发系统的一个不可避免的特点是在某些条件下系统可能阻塞。当一个连接占有一个锁而另一个连接试图改变锁的状态时，第二个连接要么等待第一个连接释放锁，要么因]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正确配置和使用SQL mail]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63646.html</link>
    <description><![CDATA[前段时间费了九牛二虎之力，终于搞掂了SQL mail的配置与使用。 _Rambo要我整理出来有关的文档大家共享。 我就把我配置SQL mail的过程描述一遍。 我用SQL mail主要是要完成这样的功能：]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[事务日志被填满的原因是什么？]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63645.html</link>
    <description><![CDATA[SQL Server事务日志可能会被填满，这会阻止之后的数据库操作，包括UPDATE， DELETE， INSERT 和CHECKPOINT。 事务日志填满会导致1105错误: Can't allocate space for object syslogs in database dbname because th]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库查询结果的动态排序(1)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63644.html</link>
    <description><![CDATA[在公共新闻组中，一个经常出现的问题是“怎样才能根据传递给存储过程的参数返回一个排序的输出？”。在一些高水平专家的帮助之下，我整理出了这个问题的几种解决方案。 一、用]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库查询结果的动态排序(2)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63642.html</link>
    <description><![CDATA[二、用列名字作为参数 另外一个选择是让查询以参数的形式接收一个列名字。Listing 2显示了修改后的GetSortedShippers存储过程。CASE表达式根据接收到的参数，确定SQL Server在ORDER BY子句中使]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语句性能调整原则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63640.html</link>
    <description><![CDATA[一、问题的提出 在应用系统开发初期，由于开发数据库数据比较少，对于查询SQL语句，复杂视图的的编写等体会不出SQL语句各种写法的性能优劣，但是如果将应用系统提交实际应用后，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库查询结果的动态排序(3)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63639.html</link>
    <description><![CDATA[为了避免出现这种转换错误，我们可以尝试把ShipperID转换成varchar数据类型。采用这种方法之后，nvarchar将作为最高优先级的数据类型被返回。Listing 3显示了修改后的GetSortedShippers存储过]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库查询结果的动态排序(4)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63636.html</link>
    <description><![CDATA[假设我们把更多的货主加入到表，如Listing 4所示（ShipperID列有IDENTITY属性，SQL Server自动为该列生成值）。 【Listing 4：向Shippers表插入一些记录】 INSERT INTO Shippers VALUES('Shipper4', '(111) 222]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库查询结果的动态排序(5)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63634.html</link>
    <description><![CDATA[为了解决这个问题，我们可以用前置的0补足ShipperID值，使得ShipperID值都有同样的长度。按照这种方法，基于字符的排序具有和整数排序同样的输出结果。修改后的存储过程如Listing 5所示]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库查询结果的动态排序(6)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63632.html</link>
    <description><![CDATA[现在，如果我们用任意三个列名字之一作为参数调用存储过程，存储过程都能够正确地返回结果。Richard Romley提出了一种巧妙的处理方法，如Listing 6所示。它不再要求我们搞清楚可能涉]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库查询结果的动态排序(7)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63629.html</link>
    <description><![CDATA[三、用列号作为参数 就象第一个方案所显示地那样，你也许更喜欢用列的编号作为参数，而不是使用列的名字（列的编号即一个代表你想要作为排序依据的列的数字）。这种方法的基本]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正确配置和使用SQL mail]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63623.html</link>
    <description><![CDATA[前段时间费了九牛二虎之力，终于搞掂了SQL mail的配置与使用。 _Rambo要我整理出来有关的文档大家共享。 我就把我配置SQL mail的过程描述一遍。 我用SQL mail主要是要完成这样的功能：]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库管理员制胜之宝]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63620.html</link>
    <description><![CDATA[数据库的调整和优化可能是一个数据库管理员的最主要也是最关键的任务之一。 遗憾的是，对像SQLServer这样的数据库进行调整和性能调节并不是一件容易的事。SQLServer带有几种监控和调]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库市场：甲骨文IBM和微软名列前三]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63558.html</link>
    <description><![CDATA[最新出炉的《2006年第三季度中国数据库软件市场数据监测》显示，2006年第三季度中国商业数据库市场整体规模达到4.63亿人民币，季度环比增长7.53％。 易观国际的梁新刚昨天分析认为]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个特别不错的开源数据库管理系统＂H2＂]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63553.html</link>
    <description><![CDATA[H2是一个采用java开发开源的嵌入式SQL数据库。它支持集群，提供JDBC和部分ODBC API,采用C/S模型。它还包括一个用于管理数据库的Web客户端，直接使用浏览器作为数据库的管理平台，同时也]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Sybase Analytic Appliance在美国正式上市]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63549.html</link>
    <description><![CDATA[2008年8月18日，Sybase公司正式宣布：具有卓越的分析性能、能够缓解数据仓库、数据集市及报告系统压力的Sybase数据分析固件——Sybase Analytic Appliance数据分析固件，已于8月5日在美国正式]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[《财富》访谈:Oracle为什么不会干掉MySQL]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63547.html</link>
    <description><![CDATA[新闻来源:IT168 曾经有人推断Oracle通过收购SUN进而取得近年表现得越来越勇的开源数据库MySQL，从而可以顺理成章地将其处死，但MySQL的前任首席执行官Mrten Mickos却有不同的看法，相反O]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Sun公司收购MySQL并不影响与Oracle的合作]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63546.html</link>
    <description><![CDATA[2008年2月14日，Sun公司全球媒体高峰论坛(Sun Microsystems Global Media Summit 2008)在美国旧金山Sun公司总部正式召开。Sun公司CEO Jonathan Schwartz先生在谈到收购MySQL的问题时表示：MySQL和Oracle的用户]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MySQL前CEO致信欧盟请求批准甲骨文Sun交易]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63544.html</link>
    <description><![CDATA[美国开源数据库厂商MySQL前CEO马顿·古斯塔夫·米科斯(Marten Gustaf Mickos)周四致信欧盟,要求欧盟尽快批准美国商用软件开发商甲骨文收购服务器和软件开发商Sun的交易. 2008年1月,MySQL被Sun收]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Sun完成收购开放源代码软件厂商MySQL]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63540.html</link>
    <description><![CDATA[Sun微系统周二宣布,公司已完成了对开放源代码软件厂商MySQL的收购工作.Sun微系统表示,公司未来将进行更多的收购. Sun首席执行官乔纳森·施瓦茨(Jonathan Schwartz)在周二举行的新闻发布会中]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MySQL倒下 开源数据库发展或受重创]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63539.html</link>
    <description><![CDATA[MySQL被称为是“最受欢迎的开源数据库”，如今，它的命运却取决于Oracle与Sun并购案的结果。有消息说，正在调查该交易的欧盟委员会将在11月19日做出是否批准该交易的决定。2008年2月]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分析评论 开源开发模式能否适合商业用户]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63535.html</link>
    <description><![CDATA[在使用开源软件时，公司企业通常会选择免费的社区支持版的应用软件或者付费方式的企业版软件(包括支持、服务、更新和其他功能)。 商业用户同时也会考虑他们使用开源软件的目的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MySQL创始人发邮件寻求中国帮助]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63534.html</link>
    <description><![CDATA[今早收到了MySQL的邮件，全文如下： 亲爱的拯救MySQL的中国签名支持者， 欧盟可能无法拯救MySQL, 中国和俄罗斯可能是拯救MySQL的希望之所在。中国拥有强大、独立以及自信的反垄断主管]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Server 2005最后的升级：SP3年底发布]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63533.html</link>
    <description><![CDATA[虽然SQL Server 2008已经发布了一段时间，但微软并没有忘记活了三年多的SQL Server 2005，最后一个升级服务包SP3也将在今年底如期推出。 SQL Server持续性服务首席项目经理Nosheen Syed表示，S]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[传甲骨文将增加对MySQL投资与微软竞争]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63531.html</link>
    <description><![CDATA[互联网有消息称，为了吸引竞争对手微软的客户，甲骨文将增加对广泛应用的开源软件数据库MySQL的投资。 MySQL是甲骨文收购Sun微系统公司的时候一起收购的。 甲骨文首席设计师Edward]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Facebook新开源项目Flashcache：加速MySQL]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63529.html</link>
    <description><![CDATA[Facebook发布了通过将数据缓存在SSD硬盘加速MySQL的内核模块Flashcache。代码已经放到Github上，目前只测试了linux kernel版本2.6.18和2.6.20。 Facebook 称，Flashcache是其内部开发用于帮助扩展InnoD]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用wu]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63522.html</link>
    <description><![CDATA[一、前言 当我们架设的网站需要提供下载功能时，除了使用http的方式连接外，也可以另外提供ftp服务供用户直接连线下载。事实上，ftp是个存在已久的服务，它的设计是用来传输两台]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[常见数据库系统之比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63520.html</link>
    <description><![CDATA[纵观当今的商用数据库市场，称之为群雄割据毫不为过。自20世纪70年代关系模型提出后，由于其突出的优点，迅速被商用数据库系统所采用。据统计，70年代以来新发展的DBMS系统中，近]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MySQL陷内忧外患已处于消亡的边缘?]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63519.html</link>
    <description><![CDATA[新闻来源:IT168 甲骨文为了在收购Sun交易中获得MySQL费尽心思，才最终获得监管机构的批准，目前来看这些努力可能是在浪费时间和金钱，人们或将突然发现，内忧外患的MySQL已经处于消]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Server 2005上市 竞争者称无新意]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63518.html</link>
    <description><![CDATA[数据库市场两大龙头厂商Oracle及IBM，对于今日在台上市的微软新版SQL数据库软件，有著一致性的评语：“功能无新意”。 于今日在台正式发表上市的微软最新版数据库软件SQL Server 200]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MySQL浴火重生 最新企业版全新发布]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63516.html</link>
    <description><![CDATA[5月21日消息，甲骨文自收购SUN以来，首次发布SUN旗下MySQL产品线的最新版本—MySQL EnterPRise。甲骨文表示，MySQL Enterprise最新版本即将面市，并以此显示甲骨文公司正在持续投资MySQL。 甲骨]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[甲骨文收购Sun后Java和MySQL命运变好]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63513.html</link>
    <description><![CDATA[开源商业智能公司Jaspersoft最近发布的一项开发者研究报告显示，甲骨文收购Sun后，java和MySQL的命运都不错。 Java和MySQL在现代开源软件栈中根基很深。值得庆幸的是，用户对甲骨文领导]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[谈谈最近的Oracle与Google之争]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63509.html</link>
    <description><![CDATA[新闻来源:CSDN博客 近日获悉，Oracle将对Google提起诉讼，理由是Android系统侵犯到Oracle所拥有的专利和著作权。同样是JCP成员，同样是java技术的使用以及支持者，Oracle与Google之间为什么会]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[甲骨文放弃开源项目OpenSolaris]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63507.html</link>
    <description><![CDATA[新闻来源:新浪科技 据国外媒体报道，甲骨文已正式放弃开源项目OpenSolaris。甲骨文将继续开源Solaris，但源代码将在每一个主要版本发布之后才会公开，这意味着每一个版本的开发都将]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[安防有道：实施自动的SQL注入攻击测试]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63506.html</link>
    <description><![CDATA[SQL注入是一种安全漏洞。攻击者可以利用这个安全漏洞向网络表格输入框中添加SQL代码以获得访问权。手工测试SQL注入的方法过去一直是确定数据库是否存在安全漏洞的惟一方法。挖掘]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Oracle的逆OOS姿态]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63504.html</link>
    <description><![CDATA[Oracle开始显露出它对开源软件的真实立场了吗？才过几个月，Oracle收购Sun Microsystems之后的效应开始显露。其中，就有一系列对开源软件的打击。 Oracle最开始是在2009年四月宣布计划收购]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如此高效通用的分页存储过程是带有sql注入漏洞的]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63502.html</link>
    <description><![CDATA[在google中搜索“分页存储过程”会出来好多结果，是大家常用的分页存储过程，今天我却要说它是有漏洞的，而且漏洞无法通过修改存储过程进行补救，如果你觉得我错了，请读下去也]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防止Access数据库被非法下载的方法比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63499.html</link>
    <description><![CDATA[防止access数据库被非法下载的方法比较 一、密码式 给数据库起一个随机复杂的名称，避免被猜到被下载，这种方式在以前很流行，因为大家都对自己的代码很有自信。但随着错误提示]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[安全入门:SQL注入漏洞全接触]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63498.html</link>
    <description><![CDATA[ＳＱＬ注入是从正常的WWW端口访问，而且表面看起来跟一般的Web页面访问没什么区别，所以目前市面的防火墙都不会对ＳＱＬ注入发出警报，如果管理员没查看IIS日志的习惯，可能被入]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库系统防黑客入侵技术综述]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63497.html</link>
    <description><![CDATA[1. 前言 随着计算机技术的飞速发展，数据库的应用十分广泛，深入到各个领域，但随之而来产生了数据的安全问题。各种应用系统的数据库中大量数据的安全问题、敏感数据的防窃取和]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库系统防黑客入侵技术综述]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63496.html</link>
    <description><![CDATA[1. 前言 随着计算机技术的飞速发展，数据库的应用十分广泛，深入到各个领域，但随之而来产生了数据的安全问题。各种应用系统的数据库中大量数据的安全问题、敏感数据的防窃取和]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL注入奇招致胜 UNION查询轻松免费看电影]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63495.html</link>
    <description><![CDATA[此文发表在2004年黑客X档案第4期 周末无聊，同学想让我帮他下载一些电影看，我爽快的答应了。看了这么多期X档案，水平自然长进不少，也没事玩玩鸡。这次想免费下载些电影，没问]]></description>
    <pubDate>暂无</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[针对SQL INJECTION的SQL SERVER安全设置初级篇]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63492.html</link>
    <description><![CDATA[日前SQL INJECTION的攻击测试愈演愈烈，很多大型的网站和论坛都相继被注入。这些网站一般使用的多为SQL SERVER数据库，正因为如此，很多人开始怀疑SQL SERVER的安全性。其实SQL SERVER 2000已]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[有孔就入 SQL Injection的深入探讨]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63491.html</link>
    <description><![CDATA[SQL Injection这个话题越来越热了，很多的论坛和hack站点都或多或少地在谈论这个问题，当然也有很多革命前辈写了N多的关于这方面的文章，所利用的也是许多知名的程序，比如动网，尘]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL注入不完全思路与防注入程序]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63490.html</link>
    <description><![CDATA[一SQL注入简介 许多网站程序在编写时，没有对用户输入数据的合法性进行判断，使应用程序存在安全隐患。用户可以提交一段数据库查询代码，（一般是在浏览器地址栏进行,通过正常]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL注入攻击的原理及其防范措施]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63489.html</link>
    <description><![CDATA[asp编程门槛很低，新手很容易上路。在一段不长的时间里，新手往往就已经能够编出看来比较完美的动态网站，在功能上，老手能做到的，新手也能够做到。那么新手与老手就没区别了]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[黑客攻破SQL服务器系统的十种方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63487.html</link>
    <description><![CDATA[无论是使用手工试探还是使用安全测试工具，恶意攻击者总是使用各种诡计从你的防火墙内部和外部攻破你的SQL服务器系统。既然黑客在做这样的事情。你也需要实施同样的攻击来检验]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据安全防护之打造安全.mdb数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63484.html</link>
    <description><![CDATA[什么是mdb数据库呢?凡是有点制作网站经验的网络管理员都知道，目前使用“IIS+asp+access”这套组合方式建立网站是最流行的，大多数中小型Internet网站都使用该“套餐”，但随之而来的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[保障Web数据库安全运行]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63482.html</link>
    <description><![CDATA[随着Web数据库的应用越来越广泛，Web数据库的安全问题日益突出，如何才能保证和加强数据库的安全性已成为目前必须要解决的问题。 数据库系统安全控制模式 Web数据库是数据库技术]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[系统安全之SA弱口令带来的安全隐患]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63481.html</link>
    <description><![CDATA[存储过程是存储在SQLServer中的预先写好的SQL语句集合，其中危险性最高的扩展存储过程就是xp_cmdshell了，它可以执行操作系统的任何指令，而SA是Microsoft SQLServer的管理员帐号，拥有最高]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库的安全为什么要侧重于网络系统]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63480.html</link>
    <description><![CDATA[来源：赛迪网 作者：limeinan 随着Internet的发展普及，越来越多的公司将其核心业务向互联网转移，各种基于网络的数据库应用系统如雨后春笋般涌现出来，面向网络用户提供各种信息服]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库下载漏洞攻击技术]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63479.html</link>
    <description><![CDATA[作为脚本漏洞的头号杀手锏——数据库下载漏洞，现在已经被越来越多的人所熟知。在这个信息化技术更新飞快的时代，漏洞产生后随之而来的就是各种应对的招数，比如改数据库的后]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js asp c# 防止sql注入]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63478.html</link>
    <description><![CDATA[SQL注入式攻击是利用是指利用设计上的漏洞，在目标服务器上运行Sql命令以及进行其他方式的攻击 动态生成Sql命令时没有对用户输入的数据进行验证是Sql注入攻击得逞的主要原因。 比]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL注入实战]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63477.html</link>
    <description><![CDATA[作者：覆灭之魔 文章来源：影子鹰安全网络 刚刚开始学习SQL注入入侵，有写的不对和不好的地方希望各位师哥，师姐们多多指导。 在一个供求信息发布的网站上测试了一下，页面Htt]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[什么是SQL注入法攻击]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63475.html</link>
    <description><![CDATA[此文章是对网上大量同类文章的分析与总结，并结合自己实施过程中的体会综合而成，其中有不少直接引用，没有注意出处，请原作者见谅) 随着B/S模式应用开发的发展，使用这种模式]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[3个步骤结束网站恶梦]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63473.html</link>
    <description><![CDATA[许多网站程序在编写时，没有对用户输入数据的合法性进行判断，使应用程序存在安全隐患。 SQL注入是什么? 许多网站程序在编写时，没有对用户输入数据的合法性进行判断，使应用程]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[突破一流信息监控拦截系统进行SQL注射]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63471.html</link>
    <description><![CDATA[by lake2 (http://lake2.0x54.org) 上回渗透一站点，SQL Injection测试时返回这个页面（图1） 我晕，原来服务器上装了一个叫“一流信息监控拦截系统”的BT玩意儿，扫兴！查查它老底先。 Google一]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL指令植入式攻击的危害及其防范措施]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63470.html</link>
    <description><![CDATA[什么是SQL 指令植入式攻击？ 在设计或者维护Web网站时，你也许担心它们会受到某些卑鄙用户的恶意攻击。的确，如今的Web网站开发者们针对其站点所在操作系统平台或Web 服务器的安全]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[攻防实战：注水漏洞的利用和防范]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63468.html</link>
    <description><![CDATA[参加IT认证考试前，笔者习惯到网上去搜搜。乱逛之余，不小心就来到了PROMETRIC的中文站。笔者发现整个站点都是asp程序，况且刚才还有个考场的登录界面，要是能发现什么漏洞就]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如此高效通用的分页存储过程是带有sql注入漏洞的]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63467.html</link>
    <description><![CDATA[在google中搜索“分页存储过程”会出来好多结果，是大家常用的分页存储过程，今天我却要说它是有漏洞的，而且漏洞无法通过修改存储过程进行补救，如果你觉得我错了，请读下去也]]></description>
    <pubDate>暂无</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防止Access数据库被非法下载的方法比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63466.html</link>
    <description><![CDATA[防止access数据库被非法下载的方法比较 一、密码式 给数据库起一个随机复杂的名称，避免被猜到被下载，这种方式在以前很流行，因为大家都对自己的代码很有自信。但随着错误提示]]></description>
    <pubDate>暂无</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[安防有道：实施自动的SQL注入攻击测试]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63465.html</link>
    <description><![CDATA[SQL注入是一种安全漏洞。攻击者可以利用这个安全漏洞向网络表格输入框中添加SQL代码以获得访问权。手工测试SQL注入的方法过去一直是确定数据库是否存在安全漏洞的惟一方法。挖掘]]></description>
    <pubDate>暂无</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不需xp_cmdshell支持在有注入漏洞的SQL服务器上运行CMD命令]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63464.html</link>
    <description><![CDATA[我的BLOG里有一篇文章介绍了关于SQL注入的基本原理和一些方法。最让人感兴趣的也许就是前面介绍的利用扩展存储过程xp_cmdshell来运行操作系统的控制台命令。这种方法也非常的简单，]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL注入防御：用三种策略应对SQL注入攻击]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63463.html</link>
    <description><![CDATA[这篇论坛文章（赛迪网技术社区）着重介绍了有关SQL注入防御的防御策略及实施步骤，详细内容请参考下文： 从去年下半年开始，很多网站被损害，他们在用于生成动态网页的SQL数据库]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[著名的SQL流量注入(SQL注入)攻击法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63462.html</link>
    <description><![CDATA[之所以旧事重提，只是想给那些还没接触到的人提个醒，顺便听听众位高手们的看法，好学习学习。 我们在编程过程中，经常会把用户输入的数据拼成一个SQL语句，然后直接发送给服务]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[注意那些容易被忽略的SQL注入技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63461.html</link>
    <description><![CDATA[下面我要谈到一些Sqlserver新的Bug，虽然本人经过长时间的努力，当然也有点幸运的成分在内，才得以发现，不敢一个人独享，拿出来请大家鉴别。 1．关于Openrowset和Opendatasource 可能这个]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Oracle 2008年7月紧急补丁更新修复多个漏洞]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63460.html</link>
    <description><![CDATA[Oracle Database是一款商业性质大型数据库系统。Oracle发布了2008年7月的紧急补丁更新公告，修复了多个Oracle产品中的多个漏洞。这些漏洞影响Oracle产品的所有安全属性，可导致本地和远程]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[甲骨文数据库曝漏洞 黑客可从远程访问]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63459.html</link>
    <description><![CDATA[2月4日消息 据了解，一位计算机安全专家发现广泛应用的甲骨文软件中存在一些安全漏洞。黑客利用这些安全漏洞能够远程访问企业和政府数据库中的敏感信息。 英国的一家计算机安全]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网站入侵过程！]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63456.html</link>
    <description><![CDATA[本文的写作目的仅仅是为了给某些粗心大意的网络管理人员一个警告——internet是 有趣但十分脆弱的，当你的计算机放在互联网上给人们提供信息与服务的同时，会引 来网络中的“好奇]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网管，你的防火墙上也有“洞”吗]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63454.html</link>
    <description><![CDATA[防火墙对于网络防范黑客来说好比是一个家庭中的防盗门，它的功效的确不小。但是，有了防盗门并不意味着你的家庭就彻底安全了，最简单的例子就是防盗门没上锁，这样一来防盗的]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让SQL注入攻击危害最小化三大措施]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63452.html</link>
    <description><![CDATA[使用用户提供的数据进行数据库查询的任何应用程序是SQL注入攻击的一个潜在目标。数据库管理员可能无法完全阻止针对其数据库服务器的SQL注入式攻击；但是，管理员们和应用程序开]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[调整重心]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63451.html</link>
    <description><![CDATA[从codered到nimda等，一大堆蠕虫把原来需要人工利用的漏洞都变成了程序自动利用了，大家还想去手工操作这些IIS漏洞么？让我们调整重心，去看看服务器常用的数据库吧。 一般网站都是]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库安全性策略(1)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63446.html</link>
    <description><![CDATA[数据库安全性策略 数据库安全性问题一直是围绕着数据库管理员的恶梦，数据库数据的丢失以及数据库 被非法用户的侵入使得数据库管理员身心疲惫不堪。本文围绕数据库的安全性问]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63444.html</link>
    <description><![CDATA[为什么我SQL2005里面那个SQL configuration manager打不开？是不是我SQL装错了！！怎么连多连不上数据库``怀疑是断口问题 想改端口的``manager死也不肯给我打开``NND....高手告诉我下｀｀是不是]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库安全性策略 (2)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63443.html</link>
    <description><![CDATA[讨论主题: 数据库安全性策略 在Oracle Web Server里设置使用SSL协议 1998/6/18 在Oracle Web Server里产生安全认证请求 %genreq /* 在 ORACLE_HOME路径下运行 */ Certificate Request Generator /* 提示信息 */ G -]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[mysql 的 Load data infile 之曲折路]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63442.html</link>
    <description><![CDATA[MySQL 的 Load data infile 之曲折路 前因： 开发一个数据统计系统，需要分析Apache日志，在把日志Load data infile到mysql表的时候， 才发现Ubuntu所在分区的磁盘空间不足... 一，增加磁盘容量 因]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈数据库的攻击]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63440.html</link>
    <description><![CDATA[浅谈数据库的攻击(荐) 1。突破script的限制。 例如，某网页上有一文本框，允许你输入用户名称，但是它限制你只能输入4个字符。许多程序都是在客户端限制，然后用msgbox弹出错误提示]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Sql语句密码验证的安全漏洞]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63439.html</link>
    <description><![CDATA[Sql语句作为国际标准的数据库查询语句，在各种编程环境中得到了广泛的应用。作为一个成熟、稳定的系统，用户登陆和密码验证是必不可少的。笔者在平时的编程工作中发现，许多程]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL数据库的一些攻击]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63437.html</link>
    <description><![CDATA[SQL数据库的一些攻击 转载：inburst（闯入） 来源：Hectic SQL数据库的一些攻击 Hectic 关于数据库的简单入侵和无赖破坏，以天融信做例子 对于国内外的很多新闻，BBS和电子商务网站都采用]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL注入攻击]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63435.html</link>
    <description><![CDATA[SQL注入攻击是黑客对数据库进行攻击的常用手段之一。随着B/S模式应用开发的发展，使用这种模式编写应用程序的程序员也越来越多。但是由于程序员的水平及经验也参差不齐，相当大]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL数据库的一些攻击]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63434.html</link>
    <description><![CDATA[SQL数据库的一些攻击 具体内容: 对于国内外的很多新闻，BBS和电子商务网站都采用asp+SQL设计，而写 ASP的程序员很多（有很多刚刚毕业的），所以，ASP+SQL的攻击成功率 也比较高。这类攻]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防范SQL注入式攻击]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63433.html</link>
    <description><![CDATA[SQL注入式攻击是利用是指利用设计上的漏洞，在目标服务器上运行Sql命令以及进行其他方式的攻击 动态生成Sql命令时没有对用户输入的数据进行验证是Sql注入攻击得逞的主要原因。 比]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[新的SQL注入攻击已经感染12.5万个网站]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63432.html</link>
    <description><![CDATA[据互联网安全和监视公司ScanSaf说，从11月末开始出现的一种新的和非常复杂的SQL注入攻击已经感染了12.5万过个网站。感染网站的木马程序将收集用户的信用卡号码和其它银行信息。 据]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不当编写SQL语句导致系统不安全]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63431.html</link>
    <description><![CDATA[在一般的多用户应用系统中，只有拥有正确的用户名和密码的用户才能进入该系统。我们通常需要编写用户登录窗口来控制用户使用该系统，这里以Visual Basic+ADO为例： 一、漏洞的产生]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL概述及在网络安全中的应用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0824/63430.html</link>
    <description><![CDATA[1.网络应用和SQL注射 1.1概述 有些网络数据库没有过滤客户提供的数据中可能有害的字符，SQL注射就是利用插入有害字符进行攻击的技术。尽管非常容易防范，但因特网上仍然有惊人数量]]></description>
    <pubDate>2011-08-24</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正确认识对象数据库与关系数据库之间的区别]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17711.html</link>
    <description><![CDATA[面向对象数据库系统 面向对象数据库系统（Object Oriented Data Base System，简称OODBS）是数据库技术与面向对象程序设计方法相结合的产物。 对于OO数据模型和面向对象数据库系统的研究主]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库设计中的14个技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17710.html</link>
    <description><![CDATA[1. 原始单据与实体之间的关系 可以是一对一、一对多、多对多的关系。在一般情况下，它们是一对一的关系：即一张原始单据对应且只对应一个实体。在特殊情况下，它们可能是一对多]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库设计过程]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17709.html</link>
    <description><![CDATA[数据库也不是独立存在的，它总是与具体的应用相关的，为具体的应用而建立的。因此在设计数据库之前我们必须明确应用的目的，在设计数据库的时候也应时刻考虑用户需求，数据库]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何定义数据库表之间的关系]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17708.html</link>
    <description><![CDATA[在设计关系型数据库时，最主要的一部分工作是将数据元素如何分配到各个关系数据表中。一旦完成了对这些数据元素的分类，对于数据的操作将依赖于这些数据表之间的关系，通过这]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解数据库的具体分类及其相关概念]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17707.html</link>
    <description><![CDATA[数据库的分类： ◆模糊数据库 指能够处理模糊数据的数据库。一般的数据库都是以二直逻辑和精确的数据工具为基础的，不能表示许多模糊不清的事情。随着模糊数学理论体系的建立]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据挖掘的研究现状]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17706.html</link>
    <description><![CDATA[一、时代的挑战 近十几年来，人们利用信息技术生产和搜集数据的能力大幅度提高，无数个数据库被用于商业管理、政府办公、科学研究和工程开发等，这一势头仍将持续发展下去。于]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[元数据初步探索]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17705.html</link>
    <description><![CDATA[真实世界是复杂和动态的,科学研究的大部分工作是实现对现实问题的形式化描述和建立模型。模型是以某种形式对一个系统的本质属性的描述,以揭示系统的功能、行为及其变化规律。]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库的查询优化技术]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17704.html</link>
    <description><![CDATA[数据库系统是管理信息系统的核心，基于数据库的联机事务处理（OLTP）以及联机分析处理(OLAP)是银行、企业、政府等部门最为重要的计算机应用之一。从大多数系统的应用实例来看，查]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻量级数据仓库的实现方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17703.html</link>
    <description><![CDATA[1 引言 数据库现在已经成为大型软件不可缺少的一部分，数据库在软件体系中扮演着越来越重要的角色，数据库设计正日益成为影响软件性能、健壮性的重要因素。随着软件体系结构的]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用WEKA进行数据挖掘，第3部分 最近邻和服务器端]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17702.html</link>
    <description><![CDATA[简介 在这个 用 WEKA 进行数据挖掘 系列之前的两篇文章中，我介绍了数据 挖掘的概念。如果您还未曾阅读过 用 WEKA 进行数据挖掘，第 1 部分：简介和 回归 和 用 WEKA 进行数据挖掘，第]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何提高数据库的访问速度]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17701.html</link>
    <description><![CDATA[不同数据库类型的速度排序从快到慢大致如下：Paradox Access DBISAM dBase。 要提高数据库访问速度，尤其是遍历速度，还可采用以下措施。 1、用字段序号读写数据而不要通过字段名，我对]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[大型MIS软件的开发必须重视数据库设计]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17700.html</link>
    <description><![CDATA[80年代初以来，国内许多计算机专家先后深入一些大型企业，力图开发出理想的大型MIS。实践证明，开发出的大型MIS，多数不很理想。原因何在？据作者一孔之见，其中一条重要的原因]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种以ID特征为依据的数据分片（Sharding）策略]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17699.html</link>
    <description><![CDATA[假如您有一个应用程序，随着业务越来越有起色，系统所牵涉到的数据量也 就越来越大，此时您要涉及到对系统进行伸缩（Scale）的问题了。一种典型的 扩展方法叫做向上伸缩（Scale]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库设计指南(1)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17698.html</link>
    <description><![CDATA[如果把企业的数据比做生命所必需的血液，那么数据库的设计就是应用中最重要的一部分。有关数据库设计的材料汗牛充栋，大学学位课程里也有专门的讲述。不过，就如我们反复强调]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库主键设计之思考]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17697.html</link>
    <description><![CDATA[主键的必要性: 有些朋友可能不提倡数据库表必须要主键，但在我的思考中，觉得每个表都应该具有主键，不管是单主键还是双主键，主键的存在就代表着表结构的完整性，表的记录必]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈SQLite：浅析Lemon]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17696.html</link>
    <description><![CDATA[1、概述 Lemon是一个LALR(1)文法分析器生成工具。虽然它是SQLite作者针对SQLite 写的一个分析器生成工具，但是它与bison和yacc类似，是一个可以独立于 SQLite使用的开源的分析器生成工具。而]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库设计指南(2)]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17695.html</link>
    <description><![CDATA[第3部分 选择键和索引 1.数据采掘要预先计划 我所在的市场部门一度要处理8 万多份联系方式，同时填写每个客户的必要数据（这绝对不是小活）。我从中还要确定出一组客户作为市场]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在数据库中使用对象的好处]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17694.html</link>
    <description><![CDATA[我们都知道如何从Mysql获取我们需要的行（记录），读取数据，然后存取一些改动。很明显也很直接，在这个过程背后也没有什么拐弯抹角的。然而对于我们使用面对对象的程序设计（]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[空间换时间的数据库设计]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17693.html</link>
    <description><![CDATA[我们的系统中很常会用到SMS、Email等的发送，在我们的设计中通常会创建 一个Tb_outbox表，当产生数据时，插入到Tb_outbox 表，由定时器去读取 Tb_outbox的数据进行发送，发送完了再修改T]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自动生成清空数据库的SQL语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17692.html</link>
    <description><![CDATA[有时候需要把数据库中表记录都删除掉，为了方便我们有必要制作一个清空数据库的脚本， 这里主要是考虑存在外键约束和标识列问题。 存在外键关系时候就要查询出，先要删除哪一]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库系统设计全面介绍]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17691.html</link>
    <description><![CDATA[数据库设计(Database Design)是指对于一个给定的应用环境，构造最优的数据库模式，建立数据库及其应用系统，使之能够有效地存储数据，满足各种用户的应用需求(信息要求和处理要求]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库管理安全战略]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17690.html</link>
    <description><![CDATA[大家都很清楚对于企业和政府而言，其数据库所保存的数据非常重要，但让人不解的是，这些数据库安全却总有种被莫名忽视的感觉，至少对于那些涉嫌数据被窃和泄漏而若上官司的企]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库已死]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17689.html</link>
    <description><![CDATA[现代软件和以往传统软件主要区别在于：现代软件基于internet互联网技术，运行于开放的网络环境，不象传统软件只是运行在封闭的局域网，运行环境的区别就决定了软件操作用户的多]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单谈谈关系数据库中范式理论]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17688.html</link>
    <description><![CDATA[第一范式： 所有的属性都是不可分割的原子单位。 第二范式： 如果关系模式R（U，F）中的所有非主属性都完全依赖于任意一个候选关键字，则称关系R 是属于第二范式。 第三范式：]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[主数据管理详解]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17687.html</link>
    <description><![CDATA[什么是主数据管理(Master Data Management ，MDM) 主数据是指在整个企业范围内各个系统( 操作/事务型应用系统以及分析型系统)间要共享的数据，比如，可以是与客户(customers), 供应商 (suppli]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[模式与数据库设计之一]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17686.html</link>
    <description><![CDATA[一直以来我就有个想法希望能够把数据库设计的方式能够与模式挂上钩的,这里我所列出的内容可能还算不上模式,但与之有些类似,因此希望大家能够给予一些好的建议.有问题还请大家踊]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对象数据库与关系数据库利弊谈]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17685.html</link>
    <description><![CDATA[在20世纪60年代后期引入的面向对象技术引起了一场革命。到20世纪80年代后，面向对象的技术已经成为了行业的主流，其原因多种多样：面向对象不仅简化了界面的开发，而且也提供了]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Order by的数值型灵活使用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17684.html</link>
    <description><![CDATA[代码: select * from table_a where id=p_id order by decode(函数,'asc',1,'desc',-1)*jsny; 控制试图的访问时间： 6.代码: create view ... as select ...from where exists(select x from dual where sysdate=8:00am and sysdate=5:00pm) 妙]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈数据库管理系统在近些年内的发展趋势]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17683.html</link>
    <description><![CDATA[数据库管理系统在近些年内的发展趋势： 1. 用户界面的改进。这方面，也许MS依靠自己操作系统的优势，做得最让普通用户能够接受。但是，别的商用数据库，真的让人不敢苟同。目前]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Sql语句密码验证安全漏洞]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17682.html</link>
    <description><![CDATA[Sql语句作为国际标准的数据库查询语句，在各种编程环境中得到了广泛的应用。作为一个成熟、稳定的系统，用户登陆和密码验证是必不可少的。笔者在平时的编程工作中发现，许多程]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL查询语句高级应用技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17681.html</link>
    <description><![CDATA[一、简单查询 简单的Transact-SQL查询只包括选择列表、FROM子句和WHERE子句。它们分别说明所查询列、查询的表或视图、以及搜索条件等。 例如，下面的语句查询testtable表中姓名为张三的]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库的三重境界]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17680.html</link>
    <description><![CDATA[很难想象，现在还有什么应用跟数据库无关。就连微软的下一代操作系统Vista，也要用其数据库来组织其新式的文件系统。可以说，经过多年的发展，数据已经成为整个信息化进程和下]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用WEKA进行数据挖掘，第1部分 简介和回归]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17679.html</link>
    <description><![CDATA[简介 什么是 数据挖掘？您会不时地问自己这个问题，因为这个主题 越来越得到技术界的关注。您可能听说过像 Google 和 Yahoo! 这样的公司都在 生成有关其所有用户的数十亿的数据点，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[优化SQL的另类思考]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17678.html</link>
    <description><![CDATA[今天给大家介绍一个SQL优化案例，这是statpack中逻辑读排名第一的SQL.当前创建的索引建在 (username,ends,approve_status,promoted_status)上。 以下是引用片段： Buffer Gets Executions Gets per Exec %Total]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[商业智能三步走：报表 分析 挖掘]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17677.html</link>
    <description><![CDATA[经过几年的积累，大部分中大型的企事业单位已经建立了比较完善的CRM、ERP、OA等基础信息化系统。这些系统的统一特点都是:通过业务人员或者用户的操作，最终对数据库进行增加、修]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用WEKA进行数据挖掘，第2部分 分类和群集]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17676.html</link>
    <description><![CDATA[简介 在 用 WEKA 进行数据挖掘，第 1 部分：简介和回归，我介绍了数据挖掘的 概念以及免费的开源软件 Waikato Environment for Knowledge Analysis （WEKA），利用它可以挖掘数据来获得趋势和模式]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库迁移几种方式]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17675.html</link>
    <description><![CDATA[我们常常需要对数据进行迁移，迁移到更加高级的主机上、迁移到远程的机房上、迁移到不同的平台下 一、exp/imp： 这也算是最常用最简单的方法了，一般是基于应用的owner级做导出导]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[讲解数据库加密技术的功能特性与实现方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17674.html</link>
    <description><![CDATA[信息安全的核心就是数据库的安全，也就是说数据库加密是信息安全的核心问题。数据库数据的安全问题越来越受到重视，数据库加密技术的应用极大的解决了数据库中数据的安全问题]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql事务处理]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17673.html</link>
    <description><![CDATA[数据库的更新通常都是由客观世界的所发生的事件引起的。为保证数据库内容的一致，就要将数据库的一组操作作为一个整体来进行，要么全部成功完成，要么全部失败退出。如果由于]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[下一代数据访问：使概念级别成为现实]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17672.html</link>
    <description><![CDATA[技术和行业的明显发展趋势已从根本上改变了应用程序的生成方式。在 10 至 20 年前，很多行业 (LOB) 应用程序是以一个关系数据库系统为中心作为各个整体构建而成，而如今它们必须与]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何知道active transaction正在操作的对象]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17671.html</link>
    <description><![CDATA[这个问题的研究是一步一步来的。 最开始，客户想知道对于一个已经kill掉的数据库会话， 如何评估SMON需要多久才能回滚成功这个会话之前做过的事务，其实也就是这个会话多久才会被]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你使用数据库建模工具进行数据库建模]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17670.html</link>
    <description><![CDATA[很多人在进行数据库设计的时候，还是喜欢使用word文档的格式设计好数据库结构以后，再进行物理数据库的创建；而真正使用数据库建模工具进行数据库设计的就很少了；如果你讯问那]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[专家谈:数据库及其应用专题分析]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17669.html</link>
    <description><![CDATA[题一 活期存款中，储户通过存取款单和存储所发生联系。假定储户包括：账号、姓名、电话、地址、存款额；储蓄所包括：储蓄所编号、名称、电话、地址。（假定一个储户可以在不同]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[三层数据库与应用程序服务器的澄清事实]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17668.html</link>
    <description><![CDATA[大家对应用程序服务器并不很了解，所以把我的理解说一下。 应用程序服务器主要解决两个问题 一客户/服务器模式中：数据库服务器负责连接问题（项羽兄遇到了） 二网站要动态地更]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ERWin设计数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17666.html</link>
    <description><![CDATA[作者结合自己多年的实践经验，系统阐述了利用ERWin进行数据库建模的思想、方法和注意事项，具有一定实用价值。 ERWin Data Modeler是CA公司的数据库建模工具，目前在关系数据库的设计]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[高效能DBA的七个习惯]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17665.html</link>
    <description><![CDATA[1.专业的多面手(Be an expert generalist) 熟知存储、操作系统等领域的知识, 跨平台数据库的技术也是必须要掌握的，不能离开了Windows环境到了Unix下什么都作不了.看上去这一点似乎有些苛求]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[《高性能的数据库》二]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17664.html</link>
    <description><![CDATA[编程准则：（简单说说） 数据逻辑的放在一块 业务逻辑的放在一块 作界面的只做界面 最小网络传输 －－－－－－－－－－－－ 1、数据逻辑的放在一块 比如，表：History 那么，存储过]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL数据查询语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17663.html</link>
    <description><![CDATA[查询是SQL语言的核心，SQL语言只提供唯一一个用于数据库查询的语句，即SELECT语句。用于表达SQL查询的SELECT语句是功能最强也是最复杂的SQL语句，它提供了很多选项和使用方法。SELECT语]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个数据文件最小能够到多小？]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17662.html</link>
    <description><![CDATA[一个数据文件最小能够到多小?以8K block size为例。 在Locally Managed Tablespace(LMT)中，如果是System Allocate的话。 1.LMT的数据文件需要1个block存储datafile header，还需要7个block存储bitmap block，这样]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[《高性能的数据库》三]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17661.html</link>
    <description><![CDATA[到现在已经是第三讲了，也不知道听众几何说得好的话，送之鲜花，说得不好的话，丢个鸡蛋把！好歹也让我chair3知道有几个人听了。 好，废话少说，now begin: 要点： 约束 默认值 计算]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql数据添加语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17660.html</link>
    <description><![CDATA[SQL提供了两种用于向数据库关系表中添加新行的方法，它们是单行INSERT语句和多行INSERT语句。下面我们简单地介绍这两种语句的功能和使用方法。 （1）单行INSERT语句 单行INSERT语句用于]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[LogExplore详细操作手册]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17659.html</link>
    <description><![CDATA[这篇文章最早是我3年前在mblogger上发表的,那时候csdn的blog经常down,在那边保留了一些文档,现在那个blog早已停止更新了,而这篇文档有时候还会用到,所以干脆搬了过来.原来的地址:http://]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql数据删除语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17658.html</link>
    <description><![CDATA[SQL语言中用于删除数据库中某个关系表中的数据的语句是DELETE。它可用于完成删除一关系表中一行或若干行，甚至全部行的操作。其使用格式如下： DELETE FROM 表名 [WHERE搜索条件] 这里]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[《高性能的数据库》四]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17657.html</link>
    <description><![CDATA[第四讲 编程细节 触发器 游标 函数 存储过程 事务 1、触发器。 定义： 何为触发器？在SQL Server里面也就是对某一个表的一定的操作，触发某种条件，从而执行的一段程序。触发器是一]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL存储过程学习]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17656.html</link>
    <description><![CDATA[一、SQL存储过程的概念，优点及语法 整理在学习程序过程之前，先了解下什么是存储过程?为什么要用存储过程，他有那些优点 定义：将常用的或很复杂的工作，预先用SQL语句写好并用]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql数据修改语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17655.html</link>
    <description><![CDATA[SQL语言中用于修改数据库中某个关系表中数据的语句是UPDATE，它可用于完成修改一关系表中的选定行中的一列或若干列的值，其使用格式如下： UPDATA 表名 SET 列名=表达式,...,列名=表达]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[来自微软漏洞研究与防御BLOG的SQL注入防范]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17654.html</link>
    <description><![CDATA[自去年下半年开始，很多网站被恶意代码说困扰，攻击者在动态网页的SQL数据库中注入恶意的HTML script标签。这种脚本攻击行为在2008年第一季度开始加速传播，并继续影响有漏洞的Web应]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样将数据库设计移植到主数据管理系统]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17653.html</link>
    <description><![CDATA[许多年来，大多数公司都主张将一些信息如客户资料，产品列表，销售纪录等作为核心的存储库。将这些信息放在中心位置的好处是显而易见的并且它将给支持的公司的所有部分都带来]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[感悟:与数据库一起飘泊的日子]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17651.html</link>
    <description><![CDATA[还记得若干年前，那时大学毕业的我，只为找到一份能解决温饱问题的工作而四处奔波，顶着烈日，穿梭在北京各个人才交流会场，些许胆怯。。。些许无助。。。那时我只有一个小小]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[远程数据自动导入的设计与实现]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17650.html</link>
    <description><![CDATA[一、需求 有两个部门，部门A和部门B，部门B需要部门A提供一些数据，而这些数据存放在部 门A的数据库中（这些数据会不定期的更新），要求将这些数据的变更（主要是添加）定期自动]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql视图操作语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17649.html</link>
    <description><![CDATA[数据库中关系表中定义了表的结构和编排方式。然而，SQL语言又提供另外一种数据组织方法，通过它，用户可以按其它组织形式对原来表中的数据进行重新组织。这种方法就是视图。视]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[主数据管理系统削减IT成本的七个途径]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17648.html</link>
    <description><![CDATA[在当前经济危机的情况下，IT经理身陷一个进退两难的境地：虽然开支缩减，但是企业并不希望降低 IT部门提供给用户的服务等级。 那么，你如何在维持甚至提升服务水平的同时，保证]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松掌握面向业务主题数据库的基本特征]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17647.html</link>
    <description><![CDATA[1．面向业务主题(不是面向单证报表)。主题数据库是面向业务主题的数据组织存储，例如，企业中需要建立的典型的主题数据库有：产品、客户、零部件、供应商、订货、员工、文件资]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[sql安全操作语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17646.html</link>
    <description><![CDATA[SQL语言所提供的有关安全性操作的语句，主要是GRANT和REVOKE这两种。 （1）GRANT语句 该语句被用来对特定的用户授予关于数据库对象安全性的权限。通常GRANT语句由表或视图的拥有者来使]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[PL/SQL关联数组]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17645.html</link>
    <description><![CDATA[当你想搜索某一个特定元素的值而不是整个数组的时候，PL/SQL关联数组对于名称-值对类型的数组 是非常有用的。应用11g文档的话它就像一个SQL表的简单版本，你可以基于主键的值来提]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[细化解析数据库管理系统的层次安全技术]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17644.html</link>
    <description><![CDATA[数据库系统的安全性很大程度上依赖于数据库管理系统。如果数据库管理系统安全机制非常强大，则数据库系统的安全性能就较好。目前市场上流行的是关系式数据库管理系统，其安全]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库的安全为什么要侧重于网络系统]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17643.html</link>
    <description><![CDATA[随着Internet的发展普及，越来越多的公司将其核心业务向互联网转移，各种基于网络的数据库应用系统如雨后春笋般涌现出来，面向网络用户提供各种信息服务。可以说网络系统是数据]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Adaptive Server Anywhere的主要用途]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17642.html</link>
    <description><![CDATA[Adaptive Server Anywhere 提供一系列用来存储和管理数据的工具。您可以使用这些工具将数据输入数据库中，更改数据库结构，以及查看或变更数据。 Adaptive Server Anywhere 关系数据库管理系统]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语言概述]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17641.html</link>
    <description><![CDATA[SQL语言是一种用于和关系数据库进行交互通信的计算机语言。当用户想检索数据库中的数据时，就可以用SQL语言发出此请求，DBMS对SQL请求进行处理，检索到所要求的数据，并将其返回给]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入探讨：宿主操作系统的层次安全技术]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17640.html</link>
    <description><![CDATA[操作系统是大型数据库系统的运行平台，为数据库系统提供一定程度的安全保护。目前操作系统平台大多数集中在Windows NT 和Unix，安全级别通常为C1、C2级。主要安全技术有操作系统安全]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[启动Adaptive Server Anywhere服务器]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17639.html</link>
    <description><![CDATA[运行示例数据库的 Adaptive Server Anywhere 数据库服务器。 Adaptive Server Anywhere 包括两个版本的数据库服务器。个人数据库服务器供单一用户在同一台计算机上使用。网络数据库服务器支持通]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL的元素]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17638.html</link>
    <description><![CDATA[1. 模式对象 模式为数据逻辑结构或模式对象(schema object)的集合，它为一个数据库用户所占有，模式名与该用户名同名。模式对象是由SQL建立和操纵的，它包含下列类型。对这些元素一理]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过消息从数据中心提取数据]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17637.html</link>
    <description><![CDATA[最近的 SQL Anywhere Studio 版本包含了 QAnywhere，它是构建基于消息应用的平台。当手持或其他远程设备间断连接网络时，基于消息的应用是移动计算的可行选择。 QAnywhere 实现了 iAnywhere.Q]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[请求处理引擎在两种服务器上是否等同]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17636.html</link>
    <description><![CDATA[请求处理引擎在这两种服务器上是等同的。 编程接口 应用程序使用编程接口与数据库服务器通信。您可以使用 ODBC、 JDBC、 OLE DB、 Sybase Open Client 或嵌入式SQL。 许多应用程序开发工具提]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语言语句]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17635.html</link>
    <description><![CDATA[在讲述sql语言之前，我们先定义一个小型销售公司关系数据库的内容，该数据库所包含的关系表有： ▲OFFICE表。该表的列有：OFFICE，CITY，REGION，MGR，TARGET和SALES；分别表示销售处编号，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[细化解析在数据库中用子类型设计关系表]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17634.html</link>
    <description><![CDATA[理论上，在设计过程中揭示的每一个实体都会产生一个表。如果应用程序处理员工，就会建立一个员工表；如果那些员工中有经理，就会有一个经理表。 但实际上，如果两个实体十分相]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[应用程序和数据库服务器如何协同工作]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17633.html</link>
    <description><![CDATA[数据库系统的组成部分 任何信息系统都包含以下组成部分： 数据库 数据存储在数据库中。在本文档的各图示中，数据库是Adaptive Server Anywhere 数据库是一个文件，通常以 .db 作为扩展名]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Anywhere Studio数据库管理和复制]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17632.html</link>
    <description><![CDATA[可以使用 SQL Anywhere Studio 给整个组织中的工作组、移动和嵌入式数据库系统发送信息。 SQL Anywhere Studio 包含以下组件。 关系数据库系统 Adaptive Server Anywhere 产品核心的关系数据库是基于]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过同步从数据中心提取数据]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17631.html</link>
    <description><![CDATA[MobiLink 是一个基于会话的同步系统，它支持在一个主数据库通常称为统一数据库与许多远程数据库之间的双向同步。配合 AdaptiveServer Anywhere 和 UltraLite，它提供了连接远程数据库与中心]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库基础知识ABC]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17630.html</link>
    <description><![CDATA[数据库系统 数据模型 关系数据模型 关系数据库系统 关系数据库理论 SQL语言概述 SQL的元素 SQL语言语句 1.SQL数据查询语句 2.sql数据添加语句 3.sql数据删除语句 4.sql数据修改语句 5.sql数据]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Adaptive Server Anywhere和UltraLite]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17629.html</link>
    <description><![CDATA[比较 Adaptive Server Anywhere 和 UltraLite 本文重点介绍 Adaptive Server Anywhere 和 UltraLite 之间的差别，帮助您确定哪种技术更适合您的需要。 如果您了解已有的资源，便很容易在 Adaptive Server A]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解析SQL Anywhere Studio与.NET 集成]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17628.html</link>
    <description><![CDATA[开发人员能使用.NET 提供的大多数服务将 SQL Anywhere Studio 的功能增加到应用中。 1.通过.NET 访问数据：SQL Anywhere 实现了 ADO .NET 命名空间，提供访问关系型数据的接口。 2.SQL Anywhere 也提供]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库系统]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17627.html</link>
    <description><![CDATA[数据库系统本身是一个较为模糊的概念,它很难用一两句话来将其下一个确切的定义.但是,为了使读者对它有一个在总体上的了解,笔者就试着给出一个关于数据库系统的定义.即数据库系]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松了解统一数据库和远程数据库的概念]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17626.html</link>
    <description><![CDATA[MobiLink 和 SQL Remote 都可在一个统一数据库和一组远程数据库之间提供数据复制。 统一数据库包含要复制的所有数据。远程数据库是统一数据库的副本，它可以与统一数据库位于相同的站]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Adaptive Server Anywhere的web服务]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17625.html</link>
    <description><![CDATA[Adaptive Server Anywhere 在数据库服务器中集成了一个 HTTP 服务器和一个 SOAP 管理器。它允许您通过 HTTP 发送一个 SOAP 请求给Adaptive Server Anywhere，然后 Adaptive Server Anywhere 将应答返回至请求]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据模型]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17624.html</link>
    <description><![CDATA[我们知道，所谓数据是信息的一种表达形式。那些成千上万的数据有没有共性呢？如果有的话，我们应该采用什么样的方式来描述它们的共性呢。由此，我们就引入了数据模型的概念。]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[UltraLite的概念和体系结构]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17623.html</link>
    <description><![CDATA[UltraLite简介 随着小型计算设备 （手持电脑、寻呼机和移动电话）的出现，开始需要内存要求小于 Adaptive Server Anywhere 的数据库。一个显而易见的选择是生产更小的关系数据库引擎，但经]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Adaptive Server Anywhere访问web服务]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17622.html</link>
    <description><![CDATA[Adaptive Server Anywhere 拥有灵活的编程语言，使用其编写存储过程、触发器、事件、Java 存储过程和调度让您在数据库中增加更多业务逻辑。Adaptive Server Anywhere 数据库能够从一台机器拷贝到]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关系数据模型]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17621.html</link>
    <description><![CDATA[关系模型是由E.F.Codd在1970年引入到数据库领域中来的。在这之后，数据库的专家们又定义了关系数据库的基本概念，引进了规范化的理论，提出了关系代数和关系演算等数据操纵语言，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Anywhere Studio产品中的应用程序]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17620.html</link>
    <description><![CDATA[本文介绍在 SQL Anywhere Studio 产品中与 Adaptive Server Anywhere 一起提供的一些数据库应用程序。这些应用程序可帮助您设计、建立和管理数据库。 您安装哪些组件取决于以下几个方面：正使]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[建立数据库链的同义词时所应注意的问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17619.html</link>
    <description><![CDATA[建立包含数据库链的同义词时需要额外的注意，否则很可能会出现问题。 如果同义词指向当前用户的对象，那么不会存在任何问题： SQL CONN YANGTK/YANGTK@YTK已连接。 SQL CREATE DATABASE LINK]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关系数据库系统]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17618.html</link>
    <description><![CDATA[关系数据库系统的应用开始于20世纪80年代，到目前为止它已成为最为流行的数据库系统。在关系数据库系统中，其数据库中的数据是基于关系进行逻辑组织的。一个关系数据库是由若干]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样正确了解链接存储的概念]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17617.html</link>
    <description><![CDATA[链接存储 在顺序存储中，每个存侗含有所存元素本身的信息，元素之间的逻辑关系是通过数组下标位置简单计算出来彭线性表的顺序存储中，若一个元素存储在对应数组中的下标位置为]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Anywhere Studio的主要特点及组件]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17616.html</link>
    <description><![CDATA[SQL Anywhere Studio 是一个用于服务器、桌面、移动、嵌入式和远程办公环境的数据管理和同步解决方案。SQL Anywhere 的主要特点小如指印、企业级特性、出色的高性能、方便易用已成为成千]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关系数据库理论]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17615.html</link>
    <description><![CDATA[本文主要介绍与建立关系数据库中的关系模式（即关系表结构）密切相关的关系数据库设计的理论基础，也就是关系范式的有关基本知识。范式理论为判断关系模式的好坏提供了理论标]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[load date infile语法错误的解决方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17614.html</link>
    <description><![CDATA[如果load date infile总是出现语法错误.自定义使用符号时经常出错. 我们可以不使用自定义,所有文档使用默认方法。 示例 LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE file_name.txt [REPLACE | IGNOR]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Adaptive Server Anywhere数据库服务器]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17613.html</link>
    <description><![CDATA[在产品中包括两个版本的 Adaptive Server Anywhere 数据库服务器： 个人数据库服务器 此类服务器是为单个用户在同一计算机上使用提供的；例如，作为嵌入式数据库服务器。它还适用于开发]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握JDBC连接Informix IDS]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17612.html</link>
    <description><![CDATA[本文主要介绍了JDBC连接Informix IDS的具体过程，主要包括环境说明、JDBC配置以及演示代码。 1.环境说明 OS: Windows XP Informix: IDS V10.00.TC1 JDBC: Informix JDBC Embedded SQLJ V2.20JC2 2.JDBC配置 安装完]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据挖掘在CRM中的核心作用]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17611.html</link>
    <description><![CDATA[企业发展CRM，目的是两方面，一是帮助营销人员管理好自己的销售过程，二是从客户数据分析中挖掘服务发展方向。其中后者更是重中之重 面临残酷的市场竞争，所有的企业都在不遗余]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库管理员最应熟悉和了解的“DBA视图”]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17610.html</link>
    <description><![CDATA[DBA视图示例如下: dba_data_files ◆关于数据库文件的信息 dba_db_links ◆数据库中的所有数据库链路 dba_extents ◆数据库中包括所有分区 dba_free_space ◆所有表空间中自由分区 dba_indexes ◆数据库]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[细化解析web2.0与数据库之间的四点启示]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17609.html</link>
    <description><![CDATA[一：专业数据库太贵，Web2.0通常承担不起 web2.0在承担数据管理任务的同时也要花很少的钱才行，web2.0应用通常是个人或者一个小组织建立起来的，大量的数据需要很大的cluster支撑，这]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入浅出：数据库设计模式范例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17608.html</link>
    <description><![CDATA[关系数据库设计之时是要遵守一定的规则的。尤其是数据库设计范式现简单介绍1NF（第一范式），2NF（第二范式），3NF（第三范式）和BCNF，另有第四范式和第五范式留到以后再介绍。在]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IBM Informix 11与Oracle 11g的角逐]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17607.html</link>
    <description><![CDATA[继甲骨文（Oracle）上月发表新版数据库软件Database 11g后，IBM今天也发表代号为Cheetah的数据库软件Informix Dynamic Server（IDS）11，微软的SQL Server也预计在明年初推出新版本。IBM软件产品处经]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Adaptive Server Anywhere中的编程接口]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17606.html</link>
    <description><![CDATA[Adaptive Server Anywhere 支持多种编程接口，使您在使用各种类型的应用程序和应用程序开发环境时更具灵活性。 支持的接口和协议 以下图示显示支持的接口以及所使用的接口库。在大多数]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[模糊、统计、网状、演绎数据库内容小结]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17605.html</link>
    <description><![CDATA[模糊数据库 指能够处理模糊数据的数据库。一般的数据库都是以二直逻辑和精确的数据工具为基础的，不能表示许多模糊不清的事情。随着模糊数学理论体系的建立，人们可以用数量来]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IBM公司已在台湾发布了新版Informix数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17604.html</link>
    <description><![CDATA[IBM旗下两大数据库软件产品线之一的Informix,现在推出了原开发代号为Cheetah的新版本Informix Dynamic Server(IDS) 11。IBM表示，新版本再度提升了Informix向来强调的高可用性特点，在既有的企业备]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Adaptive Server Anywhere对系统的要求]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17603.html</link>
    <description><![CDATA[Adaptive Server Anywhere 要求以下配置： 操作系统和 CPU必须具有以下系统之一，才可以运行Adaptive Server Anywhere 数据库服务器： Windows Windows 95、 Windows 98、 Windows Me、Windows NT、 Windows 2000 或]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据存储管理ABC]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17602.html</link>
    <description><![CDATA[过去20年里，计算领域发生了很大的变化，无论如何变化，计算机处理和产生数据的重要性却没有改变，数据一旦丢失，所有的计算能力变得毫无价值。作为信息化的规划者和建设者，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix动态服务器表分片策略的计划和调整]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17601.html</link>
    <description><![CDATA[数据分片允许在表一级对数据存储进行控制。表分片是INFORMIX数据库的一个特征。用户可以对表中的记录或索引进行分组，并且存储在不同的位置，这样可以将数据存储到多个磁盘上，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[突破瓶颈 数据库性能优化“路线图”]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17600.html</link>
    <description><![CDATA[数据交互复杂度与频度的提升，导致了数据库在运维、迁移和规模扩展进程中的性能问题。作为一项确保企业IT基础部件健康运营的关键技术，数据库性能优化的实现路径和IT系统管理架]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库理论：学习基于SQL数据库的算法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17599.html</link>
    <description><![CDATA[算法是计算机科学中一个重要的研究方向，是解决复杂问题的关键。在计算机世界中，算法无处不在。数据库是存储数据和执行大批量计算的场所，在数据库中使用一些简单的SQL命令，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix Dynamic Server数据库分段存储]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17598.html</link>
    <description><![CDATA[Informix Dynamic Server分段存储，也称之为分片存储，其原理是对数据表中的记录或索引有规则地分散存储在磁盘不同的区域，达到将数据存储在多个磁盘上，通过减少对磁盘I/O的竞争，来]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用开发工具和编程语言开发ODBC应用程序]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17597.html</link>
    <description><![CDATA[ODBC 应用程序 您可以使用多种开发工具和编程语言开发 ODBC 应用程序。 例如，在与 SQL Anywhere Studio 一起提供的应用程序中， InfoMaker和 SQL Modeler 使用 ODBC 连接到数据库。 嵌入式 SQL 应用]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网格环境下数据库系统探究]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17596.html</link>
    <description><![CDATA[数据库技术和其他计算机技术相结合，能够产生新的研究领域。例如，数据库技术和面向对象技术相结合就产生了面向对象数据库;数据库技术和网格技术相结合也就产生一个新的研究内]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你轻松了解Informix数据库调优方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17595.html</link>
    <description><![CDATA[Informix IDS数据库广泛的应用在金融、电信和邮政等各个行业中，它是一个多线程的关系数据库服务器，采用对称的多处理器技术和单处理器体系结构，并具有先进的技术、性能与高可靠]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解析数据库应用程序体系结构的内部结构]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17594.html</link>
    <description><![CDATA[数据库内部结构 Adaptive Server Anywhere 数据库中的所有信息通常都存储在单个数据库文件中，可以从一台计算机复制到另一台计算机。还可以为若干文件生成数据库，但通常只有非常大的]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web数据库安全 审计追踪与备份双管齐下]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17593.html</link>
    <description><![CDATA[随着Web数据库的应用越来越广泛，Web数据库的安全问题日益突出，如何才能保证和加强数据库的安全性已成为目前必须要解决的问题。 数据库系统安全控制模式 Web数据库是数据库技术]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[备份Informix-OnLine的三个方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17592.html</link>
    <description><![CDATA[Informix-OnLine数据库因其具有高性能、高可靠性、支持数据完整性定义/检查等特性而得到广泛应用。本文主要针对Informix-Online数据库常用的三种数据备份方式加以归纳和比较。（注释：本]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解析数据库应用程序体系结构的内在特性]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17591.html</link>
    <description><![CDATA[Adaptive Server Anywhere 内在特性 尽管您永远不需要处理数据库服务器的内部结构，但如果对其内部结构有一定的了解，可以帮助您更好地理解相关进程。 数据库服务器内在特性 Adaptive Se]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分析中小企业老板如何选择一个优秀的DBA]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17590.html</link>
    <description><![CDATA[在每个企业的发展过程中，几乎都需要设立一个DBA的职位。问题是应该什么时候招聘公司的DBA，以及该如何选择合适的DBA。 如果你是一家中小型企业的老板，那么当企业发展到一定阶段]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样来正确的掌握online的备份]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17589.html</link>
    <description><![CDATA[1. 使用ontape 命令 OnLine动态服务器7.1为数据库管理员提供一种联机的增量备份工具，在命令行时，数据库 管理员可以用ontape来作数据备份和逻辑日志备份。还提供了一个具有交互界面和]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[合理选择数据挖掘工具]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17588.html</link>
    <description><![CDATA[摘 要：数据挖掘作为一项从海量数据中提取知识的信息技术引起了国内外学术界和产业界的广泛关注，它在商业方面的成功应用使得软件开发商不断开发新的数据挖掘工具，改进现有的]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详细分析不同类型数据库的死锁问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17587.html</link>
    <description><![CDATA[论坛中有很多关于死锁问题的讨论，在理论方面，R.Ramakrishnan的《Database management systems》也有非常精辟的阐述。就实际开发而言，不同的数据库环境有着不同的处理方法，不同的体系架]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix ON-Bar备份解决方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17586.html</link>
    <description><![CDATA[ON-Bar 简述 ON-Bar 是一个完全可伸缩的备份产品，用于Informix 数据库。它让您可以并行地运行备份和恢复，根据您选择要运行的线程数量，这可以让您大大提高它们的速度。ON-Bar 适用于任]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库设计三大范式应用实例剖析]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17585.html</link>
    <description><![CDATA[引言 数据库的设计范式是数据库设计所需要满足的规范，满足这些规范的数据库是简洁的、结构明晰的，同时，不会发生插入（insert）、删除（delete）和更新（update）操作异常。反之则]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[移动开发：第一次亲密接触移动数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17584.html</link>
    <description><![CDATA[移动数据库这个概念，在五年前也许很多人闻所未闻。但是现在，其具体的应用已经十分广泛。刚接触这个概念的读者可能会疑惑，什么是移动数据库呢?简单地说，数据并不是纯粹地存]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[合格DBA所应遵守的四个生存守则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17583.html</link>
    <description><![CDATA[1.备份重于一切 我们必需知道,系统总是要崩溃的，没有有效的备份只是等哪一天死!我经常开玩笑的说,唯一会使DBA在梦中惊醒的就是,没有有效的备份. 2.三思而后行 任何时候都要清楚你]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Adaptive Server Anywhere的技术特点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17582.html</link>
    <description><![CDATA[Adaptive Server Anywhere 是在以下技术特点的基础上建立的： 完全 SQL 关系数据库管理系统 Adaptive Server Anywhere 是事务处理关系数据库管理系统 (Relational Database-Management System,RDBMS)，它具备多种]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库名词解释之主题数据库的基本特征]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17581.html</link>
    <description><![CDATA[我们推出一系数据库名词解释，这次来讲解的是主题数据库的基本特征。 主题数据库的基本特征有： 1．面向业务主题(不是面向单证报表)。主题数据库是面向业务主题的数据组织存储]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库性能调优技术]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17580.html</link>
    <description><![CDATA[一、概述 随着数据库在各个领域的使用不断增长，越来越多的应用提出了高性能的要求。数据库性能调优是知识密集型的学科，需要综合考虑各种复杂的因素：数据库缓冲区的大小、索]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[细化解析向外扩展数据库系统的两个选项]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17579.html</link>
    <description><![CDATA[当我提到向外扩展数据库系统时，我实际上只是讨论对数据库系统进行分割或划分，以便你能利用那些部分，把它们分配到单独的数据库服务器上。这允许你在许多服务器间分散处理能]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[informix7.X安装指南]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17578.html</link>
    <description><![CDATA[自informix5.x以后，INFORMIX公司推出新一代数据库引擎ONLINE DYNAMIC SERVER动态服务，一般我们简称ONLINE7.x，ONLINE是一个关系数据管理(RDBMS)，它的任务是提供一个存储、检索、修改和删除数据]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[本地管理表空间与字典管理表空间的比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17577.html</link>
    <description><![CDATA[本地管理表空间与字典管理表空间相比大大提高了管理效率和数据库性能，其优点如下： 1.减少了递归空间管理 本地管理表空间是自己管理分配，而不是象字典管理表空间需要系统来管]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DBA在企业可持续发展中的价值]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17576.html</link>
    <description><![CDATA[在当今竞争激烈的市场环境下，成本控制毫无疑问是各个企业提升竞争力非常重要的一个部分，由于众多竞争对手会提供同质化产品和服务，企业必须从控制内部成本做起，做为企业内]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分析各种数据库优点 帮你做出准确选择]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17575.html</link>
    <description><![CDATA[Access数据库 美国Microsoft公司于1994年推出的微机数据库管理系统。它具有界面友好、易学易用、开发简单、接口灵活等特点，是典型的新一代桌面数据库管理系统。其主要特点如下：]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[合理使用索引查询的七个通用原则]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17574.html</link>
    <description><![CDATA[索引查询是数据库中重要的记录查询方法，要不要进入索引以及在那些字段上建立索引都要和实际数据库系统的查询要求结合来考虑，下面给出实际中的一些通用的原则： 1. 在经常用作]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分析数据库备份过程中九种易出现的情况]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17573.html</link>
    <description><![CDATA[如果你做DBA时间不长，对数据库的备份有些担心，希望能找到一种让你放心的备份方案，那么本文绝对适合你。 关于数据库的备份恢复原理，大家多少都比较熟悉了。但是，你目前做的]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[帮助你分析如何快速成为高级数据库人才]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17572.html</link>
    <description><![CDATA[高级数据库工程师不仅要解决技术问题，还应该逐步提升解决业务问题的能力，并且培养优秀的综合素质。要站得高、看得远，整体规划能力很重要。 要找牛新庄可不是很容易的事情，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带你快速了解编程语言的数据库性能比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17571.html</link>
    <description><![CDATA[随着计算机技术不断发展，各种数据库编程工具也随着发展，使当今的大多数程序开发人员可以摆脱枯燥无味的用计算机指令或汇编语言开发软件，而是利用一系列高效的、具有良好可]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库技术趋势发展三大特征]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17570.html</link>
    <description><![CDATA[纵观数据库发展，三大数据库巨头公司纷纷推出其最新产品，数据库市场竞争日益加剧。从最新的IDC报告显示，在关系数据库管理系统(RDBMS)软件市场上，Oracle继续领先对手IBM和微软，但]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用快速建立数据库字典设计小型数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17569.html</link>
    <description><![CDATA[当我们手头没有VISIO等数据库设计软件,往往是我们直接在SQL企业管理器中直接设计数据库,再添加数据库字典,以方便以后的工作及管理。有时我很苦恼，因为我们不得不打两次相现的数]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[六个方法解决应用程序中死锁现象的出现]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17568.html</link>
    <description><![CDATA[在应用程序中就可以采用下面的一些方法来避免死锁： （1）合理安排表访问顺序。 （2）在事务中尽量避免用户干预，尽量使一个事务处理的任务少些, 保持事务简短并在一个批处理中]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对象数据库系统与关系数据库间特性解析]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17567.html</link>
    <description><![CDATA[本文针对众多网友关于对象数据库系统与关系数据库系统间的疑惑来详细分析。 面向对象数据库系统 面向对象数据库系统（Object Oriented Data Base System，简称OODBS）是数据库技术与面向对]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库解析：数据离散化和概念分层]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17566.html</link>
    <description><![CDATA[通过将属性值域划分为区间，数据离散化技术可以用来减少给定连续属性值的个数。区间的标记可以替代实际的数据值。用少数区间标记替换连续属性的数值，从而减少和简化了 原来的]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[设计数据库前必须了解的十二个实用技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17565.html</link>
    <description><![CDATA[1. 考察现有环境 在设计一个新数据库时，你不但应该仔细研究业务需求而且还要考察现有的系统。大多数数据库项目都不是从头开始建立的；通常，机构内总会存在用来满足特定需求的]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实践出真知 有关数据库设计经验简介]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17564.html</link>
    <description><![CDATA[如果将数据库设计比作是福尔摩斯破案，根据各种条件，限制，规则，抽丝拨茧，寻找其中的相互联系，一步一步深入案件的中间，最终解决案件。但破案首先需要有方法，那么对于数]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库基础：为什么要进行预处理数据]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17563.html</link>
    <description><![CDATA[当今现实世界的数据库极易受噪声、丢失数据和不一致数据的侵扰，因为数据库太大(常常多达数千兆字节，甚至更多)，并且多半来自多个异构数据源。低质量的数据将导致低质量的挖]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关系数据库设计的规范化与非规范化之争]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17562.html</link>
    <description><![CDATA[关系数据库设计是对数据进行组织化和结构化的过程，核心问题是关系模型的设计。关系模型是数学化的、用二维表格数据描述各实体之间的联系的模型；它是所有的关系模式、属性名]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库名词解释之数据库连接及无缝连接]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17561.html</link>
    <description><![CDATA[数据库连接池概述 数据库连接是一种关键的有限的昂贵的资源，这一点在多用户的网页应用程序中体现得尤为突出。对数据库连接的管理能显著影响到整个应用程序的伸缩性和健壮性，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[避开十大错误 找到数据库开发捷径]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17560.html</link>
    <description><![CDATA[尽管软件发展中的热点技术层出不穷，不断地变化，有一些东西却一直未曾改变，其中之一就是开发人员对数据库的使用和设计开发 你可能会兴奋地紧跟时尚创建一个AJAX Web界面，或者]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库应用需求与对象关系数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17559.html</link>
    <description><![CDATA[一 数据管理技术随着应用进步而迅速发展 应用的发展始终是数据管理技术进步的动力。或者说,应用发展与技术进步是互相推动、互相促进的。回顾数据管理领域的发展历史,正说明了这]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[什么是网格数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17558.html</link>
    <description><![CDATA[网格计算已经成为热点，它所带来的低成本、高性能以及方便的计算资源共享正是众多企业所追求的。未来的数据库将构筑在网格计算环境之上。 RAC(Real Application Cluster，真正应用集群]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库归档要考虑的四大问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17557.html</link>
    <description><![CDATA[IT 存储专业人员将面临越来越大的压力，-随着结构化数据的增长，对这类数据的归档需求日益迫切，尤其是数据库数据。 与电子邮件等未结构化的数据相比，归档市场这方面受到的关]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库新型销售的几个主要支撑点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17556.html</link>
    <description><![CDATA[数据库的建设与使用在各个不同时期发挥的作用不太一样，在熟悉与利用数据上有许多文章可做，我们把数据库本身看作是量化的一个标准，就是数据的安全性、有效性与来源率，数据]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何构建Informix分布式数据库访问]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17555.html</link>
    <description><![CDATA[分布式数据库是在集中式数据库系统成熟技术的基础上发展起来的，它使物理分布的数据构成了一个逻辑整体。对用户来说，一个分布式数据库系统逻辑上就如同一个集中式数据库，用]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于WEB服务的异构数据库集成中间件]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17554.html</link>
    <description><![CDATA[1 背景 企业在信息化过程中遗留下来大量基于各种业务流程和异构数据源的应用系统。这些系统满足了企业某一特定的业务需求，数据有自身的特点，其它子系统很难使用别的子系统的]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库系统专用词汇集锦之四]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17553.html</link>
    <description><![CDATA[数据流图(Data Flow Diagram)： 是从数据和对数据的加工两方面表达数据处理系统工作过程的一种图形表示法, 具有直观、易于被用户和软件人员双方理解的特点。 数据字典(Data Dictionary) 是]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[非结构化数据库与异构数据库区别]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17552.html</link>
    <description><![CDATA[问：非结构化数据库与异构数据库是一样的吗？有什么区别？ 答：不一样。 非结构化数据库，是指其字段长度可变，并且每个字段的记录又可以由可重复或不可重复的子字段构成的数]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix OnLine动态服务器运行模式管理]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17551.html</link>
    <description><![CDATA[管理 INFORMIX-OnLine 动态服务器的操作模式 1. OnLine的操作模式 off-Line（离线模式） Quiescent（静态模式） On_Line（联机模式） Shutdown（关闭模式） Recovery（恢复模式） OnLine系统有以下几种工]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库正规化和设计技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17550.html</link>
    <description><![CDATA[在动态网站的设计中，数据库设计的重要性不言而喻。如果设计不当,查询起来就非常吃力，程序的性能也会受到影响。无论你使用的是mySQL或者Oracle数据库，通过进行正规化的表格设计]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速理解多维数据库的概念]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17549.html</link>
    <description><![CDATA[多维数据库（Multi Dimesional Database,MDD）可以简单地理解为：将数据存放在一个n维数组中，而不是像关系数据库那样以记录的形式存放。因此它存在大量稀疏矩阵，人们可以通过多维视图]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix Online for Linux安装方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17548.html</link>
    <description><![CDATA[1、创建INFORMIX用户组和informix用户 home=/usr/informix 2、给informix加密码 3、展开informix安装文件： rpm-i******************.rpm(共三个) 4、修改root的profile，增加 INFORMIXDIR=/usr/informix exportINFORMIXDIR 执]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML与面向Web的数据挖掘技术]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17547.html</link>
    <description><![CDATA[面向Web的数据挖掘 Web上有海量的数据信息，怎样对这些数据进行复杂的应用成了现今数据库技术的研究热点。数据挖掘就是从大量的数据中发现隐含的规律性的内容，解决数据的应用质]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[理解OLAP的多维数据结构]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17546.html</link>
    <description><![CDATA[数据在多维空间中的分布总是稀疏的、不均匀的。在事件发生的位置，数据聚合在一起，其密度很大。因此，OLAP系统的开发者要设法解决多维数据空间的数据稀疏和数据聚合问题。事实]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Linux+Informix后台数据库系统编程设置]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17545.html</link>
    <description><![CDATA[一：下载informix-online数据库服务器LINUX试用系统 地址： !--[if !vml]--!--[endif]--http://www.intraware.com， 注册成为informix试用系统的用户，并告诉正确的email地址，然后intraware会给你发一封邮件]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库设计范式深入浅出]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17544.html</link>
    <description><![CDATA[关系数据库设计之时是要遵守一定的规则的。尤其是数据库设计范式现简单介绍1NF（第一范式），2NF（第二范式），3NF（第三范式）和BCNF，另有第四范式和第五范式留到以后再介绍。在]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库应用系统的开发步骤]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17543.html</link>
    <description><![CDATA[数据库应用系统的开发是一项软件工程。一般可分为以下几个阶段： 1.规划 2.需求分析 3.概念模型设计 4. 逻辑设计 5.物理设计 6.程序编制及调试 7.运行及维护。 这些阶段的划分目前尚]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[搭建基于LINUX平台的Informix开发环境]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17542.html</link>
    <description><![CDATA[Informix关系数据库管理系统是一个跨平台、全功能的RDBMS，后改造为ORDBMS，它具有各种特性，并且能够十分方便地与各种GUI前端工具相连接。目前Informix数据库产品在我国的金融和保险行]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络数据库的复制和同步]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17541.html</link>
    <description><![CDATA[数据库复本是复制数据库的技术,利用这种技术,可以是数据库的几个拷贝保持同步。数据库的每个拷贝称为一个复本，并且每个复本都包含一个公共的表、查询、窗体、报表、宏和模块]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库实用问答]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17540.html</link>
    <description><![CDATA[1. 为什么关系中的元组没有先后顺序? 2. 为什么关系中不允许有重复元组? 3．关系与普通的表格、文件有什么区别? 4．笛卡尔积、等值联接、自然联接三者之间有什么区别? 1．答：因为]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样使用Informix用户和informix组]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17539.html</link>
    <description><![CDATA[1.应该使用informix帐号来管理数据库，例如：grant/revoke权限，创建/删除表，dbload等等。 2.应该创建一个单独的帐号来作这些事情吗？为什么？ 3.是否应该用informix帐号来管理数据库应用程]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库规范化技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17538.html</link>
    <description><![CDATA[摘要：本文为开发人员提供了一些技巧，使用这些技巧可以在设计 Access 表时避免某些问题。本文适用于 Microsoft Access 数据库 (.mdb) 和 Microsoft Access 项目 (.adp)。 简介 在设计数据库时，最]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[13个常用数据库术语]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17537.html</link>
    <description><![CDATA[1．关系模型：用二维表格结构表示实体集，外键表示实体间联系的数据模型称为关系模型。关系模型是由若干个关系模式组成的集合。 2．关系模式：关系模式实际上就是记录类型。它]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在Informix数据库中加快查询的速度]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17536.html</link>
    <description><![CDATA[问：为什么在一个有30000条记录并且建立有索引的表进行操作很慢，怎么办？ 答：30000条记录并不是太多，你感觉有些慢可能是记录数太多的缘故，原因可能是每条记录太长，或者你的]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库规范化三个范式应用实例]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17535.html</link>
    <description><![CDATA[规范化为什么重要？目前很多的数据库由于种种原因还没有被规范化。本文中解释了其中一些原因，并用不同形式的范式（normal form）规范化了一个保险公司的理赔表。在这个过程中表]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分布式计算的概念]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17534.html</link>
    <description><![CDATA[分布式计算的英文为 Distributed Computing 。如果我们说某项工作是分布式的，那么，参与这项工作的一定不只是一台计算机，而是一个计算机网络。我们的计算机具有两种功能，一是它能]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix SQL使用技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17533.html</link>
    <description><![CDATA[一、加快sql的执行速度 1.select 语句中使用sort,或join 如果你有排序和连接操作，你可以先select数据到一个临时表中，然后再对临时表进行处理。因为临时表是建立在内存中，所以比建立]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据挖掘技术简介]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17532.html</link>
    <description><![CDATA[摘要：数据挖掘是目前一种新的重要的研究领域。本文介绍了数据挖掘的概念、目的、常用方法、数据挖掘过程、数据挖掘软件的评价方法。对数据挖掘领域面临的问题做了介绍和展望]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样看待Informix所在的操作系统与硬件]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17531.html</link>
    <description><![CDATA[1.从全局着眼 通常只观察系统性能量度是不够的，需要考虑整个系统如磁盘/控制器、CPU、网络的使用情况。 2.操作系统工具：sar,vmstat,iostat等 UNIX供应商提供了多种系统监视实用程序，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[OnLine非正常结束后的处理方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17530.html</link>
    <description><![CDATA[OnLine非正常结束时，描述有关OnLine进入脱机方式原因的信息将写入日志，下面是OnLine结束时系统日志中登陆日志的示例： Process Aborted Abnormally: pid=22500 user=210 us=c003f15c flags=a01 Process Abo]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络数据库站点的技术保护措施]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17529.html</link>
    <description><![CDATA[问：在网络 数据库 站点检索信息时往往需要验证用户的合法性，请分析这样的站点有哪几种技术保护措施？ 答: 身为一个网管，都知道数据库就是网站的核心机密，黑客的目的往往也]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix Online数据库的查询优化策略]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17528.html</link>
    <description><![CDATA[Informix－Online 动态服务器（IDS,Informix－Online Dynamic Server）作为Informix数据库产品技术的核心，以其动态可伸缩体系结构，高效的并行处理能力、共享内存技术及易管理性等特点，将硬件]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[OnLine进程挂起后的处理办法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17527.html</link>
    <description><![CDATA[OnLine挂起的最明显的原因是逻辑日志已充满而且需要备份。在tbstat输出中检查逻辑日志的状态。在逻辑日志填满后备份日志，就会让OnLine继续处理事务。 进程必须等待检查点完成。检查]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何理解异构数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17526.html</link>
    <description><![CDATA[问：什么是异构数据库? 答：异构数据库系统是相关的多个数据库系统的集合，可以实现数据的共享和透明访问，每个数据库系统在加入异构数据库系统之前本身就已经存在，拥有自己]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[UNIX下的Informix online中合理地组织表]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17525.html</link>
    <description><![CDATA[众所周知，数据库由表构成，实际运用中，表是动态变化的，并且有的表增长的很快。当一个表在dbspace中有大于8个交错区间时，就会影响其访问效率，随着交错区间的进一步增多，甚]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JDBC连接Informix IDS的过程]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17524.html</link>
    <description><![CDATA[本文主要介绍了JDBC连接Informix IDS的具体过程，主要包括环境说明、JDBC配置以及演示代码。 1.环境说明 OS: Windows XP Informix: IDS V10.00.TC1 JDBC: Informix JDBC Embedded SQLJ V2.20JC2 2.JDBC配置 安装完]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Informix OnLine数据库维护技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17523.html</link>
    <description><![CDATA[一、 数据库查询用户的建立 Informix_on_Line数据库由于存储了储户的大量重要信息，为了数据库的安全性必需要对数据的操作有严格的规定，如进入on_Line数据库要履行严格的手续，这在某]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库计算机的概念和发展方向]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17522.html</link>
    <description><![CDATA[数据库 计算机 databasecomputer 实现数据库的存储、管理和控制的一种专用计算机系统。它能十分快速而有效地完成各种数据库操作，并能适应大型数据库的管理。由于微处理机技术和简约]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何进行数据库的设计]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17521.html</link>
    <description><![CDATA[数据库设计 (Database Design)是指对于一个给定的应用环境，构造最优的数据库模式，建立数据库及其应用系统，使之能够有效地存储数据，满足各种用户的应用需求（信息要求和处理要求]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库名词解释之层次型 基因型 关系型]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17520.html</link>
    <description><![CDATA[什么是层次型数据库？ 层次型数据库管理系统是紧随网状数据库而出现的。现实世界中很多事物是按层次组织起来的。层次数据模型的提出，首先是为了模拟这种按层次组织起来的事物]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库中的九种数据库对象]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17519.html</link>
    <description><![CDATA[数据库对象是 数据库 的组成部分，常见的有以下几种： 1.表（Table ） 数据库中的表与我们日常生活中使用的表格类似，它也是由行（Row） 和列（Column）组成的。列由同类的信息组成，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[大批量的数据如何进行数据库的优化]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17518.html</link>
    <description><![CDATA[数据库 系统是管理信息系统的核心，基于数据库的联机事务处理（OLTP）以及联机分析处理(OLAP)是银行、企业、政府等部门最为重要的计算机应用之一。从大多数系统的应用实例来看，]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈数据库设计技巧]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17517.html</link>
    <description><![CDATA[说到数据库，我认为不能不先谈数据结构。1996年，在我初入大学学习计算机编程时，当时的老师就告诉我们说：计算机程序＝数据结构＋算法。尽管现在的程序开发已由面向过程为主逐]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库应用系统中的数据库完整性]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17516.html</link>
    <description><![CDATA[数据库 完整性（Database Integrity）是指数据库中数据的正确性和相容性。数据库完整性由各种各样的完整性约束来保证，因此可以说数据库完整性设计就是数据库完整性约束的设计。数据]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于第三范式数据库表的基本设计]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17515.html</link>
    <description><![CDATA[本文首先讨论了基于 第三范式 的数据库表的基本设计，着重论述了建立主键和索引的策略和方案，然后从数据库表的扩展设计和库表对象的放置等角度概述了数据库管理系统的优化方]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创新性应用 数据建模经验谈]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17514.html</link>
    <description><![CDATA[笔者从98年进入 数据库 及数据仓库领域工作至今已经有近八年的时间，对数据建模工作接触的比较多，创新性不敢谈，本文只是将工作中的经验总结出来，供大家一同探讨和指正。 提]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分布式数据库系统的概念]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17513.html</link>
    <description><![CDATA[分布式 数据库 系统有两种：一种是物理上分布的，但逻辑上却是集中的。这种分布式数据库只适宜用途比较单一的、不大的单位或部门。另一种分布式数据库系统在物理上和逻辑上都]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库管理员的职责包括哪些]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17512.html</link>
    <description><![CDATA[一、 一般监视 1． 监控数据库的警告日志。Alert.log,定期做备份删除。 2． Linstener.log的监控，/network/admin/linstener.ora。 3． 重做日志状态监视，留意视图v$log，v$logfile，该两个视图存储重]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你快速掌握创建和修改表格]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17511.html</link>
    <description><![CDATA[当你使用这些指令时一定要小心它很容易删去你的数据库中的主要结构令您丢失数据。所以，在您开始修改数据库之前，您需要知道数据库是什么。 数据库之间的差异 本文中的样品查]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分布式数据库的主要特点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17510.html</link>
    <description><![CDATA[分布式 数据库 的主要特点 (1)、数据独立性与位置透明性。数据独立性是数据库方法追求的主要目标之一，分布透明性指用户不必关心数据的逻辑分区，不必关心数据物理位置分布的细]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[dba是做什么的]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17509.html</link>
    <description><![CDATA[DBA 的相关职责 1.安装和升级数据库服务器（如Oracle、Microsoft SQL server），以及应用程序工具。 2.数据库设计系统存储方案，并制定未来的存储需求计划。 3.一旦开发人员设计了一个应用]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[多个表格查询合并至单一声明的常用方式]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17508.html</link>
    <description><![CDATA[在对跨多个表格的 数据 进行组合时，有时很难搞清楚要使用哪一个SQL句法。我将在这里对将多个表格中的查询合并至单一声明中的常用方式进行阐述。 在这篇文章中的样本查询符合]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分布式数据库系统的目标]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17507.html</link>
    <description><![CDATA[分布式 数据库 系统的目标，也就是研制分布式数据库系统的目的、动机，主要包括技术和组织两方面的目标． 1．适应部门分布的组织结构，降低费用 使用数据库的单位在组织上常常]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DBA（数据库管理员）的个性特点]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17506.html</link>
    <description><![CDATA[很多时候管理人员都忽视了 DBA 的个性特点，他们只关注DBA的技术能力。实际上，上面谈到的每个职责都意味着：DBA需要跟各种人员打交道，这些人员可能是销售商、用户、开发人员或]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松掌握数据独立性概念和实现方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17505.html</link>
    <description><![CDATA[数据 独立性是指建立在数据的逻辑结构和物理结构分离的基础上，用户以简单的逻辑结构操作数据而无需考虑数据的物理结构，转换工作由数据库管理系统实现。 数据独立性分为数据]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库系统优化]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17504.html</link>
    <description><![CDATA[SQL语句的优化是将性能低下的SQL语句转换成目的相同的性能优异的SQL语句。 人工智能自动SQL优化就是使用人工智能技术，自动对SQL语句进行重写，从而找到性能最好的等效SQL语句。 数]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DBA（数据库管理员）的等级]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17503.html</link>
    <description><![CDATA[DBA的等级并不是很严格的。按照对数据库的掌握情况，我简单地分成三个等级：初级Primary、中级Intermediate和高级Senior。 初级DBA又称为DBBS，是英文Database Baby Sitter的缩写。初级DBA常常是]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库技术的全新概念：文档数据库]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17502.html</link>
    <description><![CDATA[从1989年起，Lotus通过其群件产品Notes提出了数据库技术的全新概念-文档数据库，文档数据库区别于传统的其它数据库，它是用来管理文档。在传统的数据库中,信息被分割成离散的数据段]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[多媒体数据库的关键技术问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17501.html</link>
    <description><![CDATA[多媒体 数据 模型 多媒体数据模型主要采用文件系统管理方式、扩充关系数据库的方式和面向对象数据库的方式。 文件系统管理方式 多媒体资料是以文件的形式在计算机上存储的，所]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[目前比较流行的数据库系统]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17500.html</link>
    <description><![CDATA[如果你打算做一个DBA，建议你选择那些现在比较流行的数据库系统。这意味着你将有更多的就业机会、交流和培训机会，而且，流行自有流行的理由，你可以因此省心很多。当然，就业]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关系型数据库的优势及所面临的问题]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17499.html</link>
    <description><![CDATA[回望 数据库 的发展历程，数据库技术从60年代末开始，经历了层次数据库、网状数据库和关系数据库而进入数据库管理系统( DBMS)阶段至今, 数据库技术的研究也不断取得进展。80年代]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库模式定义语言]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17498.html</link>
    <description><![CDATA[数据库 模式定义语言DDL(Data Description Language)，是用于描述数据库中要存储的现实世界实体的语言。一个数据库模式包含该数据库中所有实体的描述定义。这些定义包括结构定义、操作方]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[智能数据仓库的设计方法]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17497.html</link>
    <description><![CDATA[商业智能 的深入实施和应用是中国银行业的必然选择，但是只有把技术的发展与业务需求真正的融合起来，商业智能的实际价值才能得到的体现。 金融改革不断深入的今天，伴随着对]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Notes数据库与关系型数据库的概念比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17496.html</link>
    <description><![CDATA[我们知道在数据库理论中，有外模式、模式和内模式之分。外模式（又称子模式或用户模式）是数据库用户使用的局部数据的逻辑结构和特征的描述，是数据库用户的数据视图，如视图]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为何面向对象的数据库不普及]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17495.html</link>
    <description><![CDATA[中国的软件为什么发展这么慢.还有就是现在主流的三层架构或者是多层架构,而瓶颈就在于数据库的性能 跟不上需求,换句话说,也就是数据库的设计拖了现在软件的后腿. 所以就郁闷,为]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几大数据仓库方案特性比较]]></title>
    <link>http://im.vc/db/Dbfundamentals/2011/0702/17494.html</link>
    <description><![CDATA[IBM、 Oracle 、Sybase、CA、NCR、Informix、Microsoft、和SAS等有实力的公司相继（通过收购或研发的途径）推出了自己的数据仓库解决方案，BO和Brio等专业软件公司也在前端在线分析处理工具市]]></description>
    <pubDate>2011-07-02</pubDate>
    <category>数据库基础/原理</category>
    <author>admin</author>
    <comments>未知</comments>
</item>

</channel>
</rss>

