﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>博客园-.NET人字拖-随笔分类-Database</title><link>http://www.cnblogs.com/xdotnet/category/70566.html</link><description /><language>zh-cn</language><lastBuildDate>Sat, 17 May 2008 16:45:10 GMT</lastBuildDate><pubDate>Sat, 17 May 2008 16:45:10 GMT</pubDate><ttl>60</ttl><item><title>[Sql Server]重新设置IDENTITY列重新从1开始记数</title><link>http://www.cnblogs.com/xdotnet/archive/2008/02/21/sqlserver_identity_reseed.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Thu, 21 Feb 2008 02:42:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2008/02/21/sqlserver_identity_reseed.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/1076137.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2008/02/21/sqlserver_identity_reseed.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/1076137.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/1076137.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: DBCC CHECKIDENT([mytable],RESEED,0);<br>[mytable]表示表名称；<br>0还可以改成N，接着就从N+1开始记数；&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2008/02/21/sqlserver_identity_reseed.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/1076137.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2008-02-21 10:42 <a href="http://www.cnblogs.com/xdotnet/archive/2008/02/21/sqlserver_identity_reseed.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[LinQ2SQL一]SQL四大护法在LinQ中的应用</title><link>http://www.cnblogs.com/xdotnet/archive/2007/09/11/linq2sql_sql_select_insert_update_delete_paging.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Tue, 11 Sep 2007 14:04:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2007/09/11/linq2sql_sql_select_insert_update_delete_paging.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/890197.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2007/09/11/linq2sql_sql_select_insert_update_delete_paging.html#Feedback</comments><slash:comments>8</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/890197.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/890197.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 在前一些日子我在博客上写了一些关于.NET 3.x(C#3.0)的一些特性，其中也提到了一些关于LinQ的一些查询句法(语法)，从今天开始我们来看看LinQ to SQL(以后简写为LinQ2SQL)，就是对数据库的查询，以前叫做DLinQ。经常看到LinQ那到底是什么呢？他是Language Integrated Query的缩写，以一种类似SQL语句的形式来对对象进行操作的编程方法。&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2007/09/11/linq2sql_sql_select_insert_update_delete_paging.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/890197.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2007-09-11 22:04 <a href="http://www.cnblogs.com/xdotnet/archive/2007/09/11/linq2sql_sql_select_insert_update_delete_paging.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[SqlServer]数据库中自定义拆分字符串函数Split()</title><link>http://www.cnblogs.com/xdotnet/archive/2007/08/18/sql_split_string.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Sat, 18 Aug 2007 05:49:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2007/08/18/sql_split_string.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/860806.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2007/08/18/sql_split_string.html#Feedback</comments><slash:comments>7</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/860806.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/860806.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要:     经常我们要用到批量操作时都会用到字符串的拆分，郁闷的是SQL Server中却没有自带Split函数，所以我们只能自己动手来解决一下。为了减少和数据库的通讯次数，我们都会利用这种方法来实现批量操作。当然有时我们会借助Execute这个方法来实现，利用这个方法有一个不好的地方就是她只认识以","分割的字符串，在传IDs批量操作的时候还是可以达到目的，但是经常我们要用到更复杂的操作时我们就需要自己动手来完成了......&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2007/08/18/sql_split_string.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/860806.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2007-08-18 13:49 <a href="http://www.cnblogs.com/xdotnet/archive/2007/08/18/sql_split_string.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>从Microsoft SqlServer 2005中返回有一定顺序的记录集</title><link>http://www.cnblogs.com/xdotnet/archive/2007/05/06/sqlserver2005_feature_rankedresult.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Sat, 05 May 2007 18:56:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2007/05/06/sqlserver2005_feature_rankedresult.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/736797.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2007/05/06/sqlserver2005_feature_rankedresult.html#Feedback</comments><slash:comments>7</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/736797.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/736797.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 应用SqlServer2005开发也已经有一段时间了，但是很多时候都是把SqlServer2005当做SqlServer2000来用，因此很多 SqlServer2005的新特性我都没有用到，有一个原因就是要兼容SqlServer2000的用户。新特性出来的当然就要用于实际当中，要想知道 SQLServer2005的新特性可以参看微软网站的What's New in SQL Server 2005? ，特性有很多本篇文章主要介绍的是在数据库中返回特定顺序的记录集。&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2007/05/06/sqlserver2005_feature_rankedresult.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/736797.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2007-05-06 02:56 <a href="http://www.cnblogs.com/xdotnet/archive/2007/05/06/sqlserver2005_feature_rankedresult.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>把SQL数据库部署到远程数据库服务器中</title><link>http://www.cnblogs.com/xdotnet/archive/2007/01/16/sql_publisher.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Tue, 16 Jan 2007 10:16:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2007/01/16/sql_publisher.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/621878.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2007/01/16/sql_publisher.html#Feedback</comments><slash:comments>5</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/621878.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/621878.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 今天在Scott Guthrie的BLOG上发现了SQL Server Hosting Toolkit，不知道大家开始用它了没，在园子里好像我也没有看到有关这个东东的文章，所以拿出来和大家分享一下。SQL Server Hosting Toolkit这个工具包使部署SQL解决方案到数据库服务器变的更佳容易。这个工具包允许你在本地操作SQL Express，SQL Server 2000，和 SQL Server 2005数据库，然后把你的数据定义和数据轻松地迁移，安装到一个共享的远程主机SQL Server账号上。&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2007/01/16/sql_publisher.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/621878.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2007-01-16 18:16 <a href="http://www.cnblogs.com/xdotnet/archive/2007/01/16/sql_publisher.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[EnterpriseLibrary]ConfiguraionSource节点及多个配置文件的应用</title><link>http://www.cnblogs.com/xdotnet/archive/2007/01/04/enterpriselibrary_configurationsource_view.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Thu, 04 Jan 2007 14:24:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2007/01/04/enterpriselibrary_configurationsource_view.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/611852.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2007/01/04/enterpriselibrary_configurationsource_view.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/611852.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/611852.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要:   今天终于开始了EnterpriseLibrary的进程了，边看边学，在这里要感谢TerryLee前辈，看了你的文章得到了不少知识，让我更容易进入状态。由于刚刚接触到这个咚咚对他还有点陌生，无论是哪个项目配置文件肯定是我们研究的切入点，所以首先当然是要看看Enterprise Library对配置文件的一些做法。&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2007/01/04/enterpriselibrary_configurationsource_view.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/611852.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2007-01-04 22:24 <a href="http://www.cnblogs.com/xdotnet/archive/2007/01/04/enterpriselibrary_configurationsource_view.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[EnterpriseLibrary]SqlConnection.ConnectionString相关关键字</title><link>http://www.cnblogs.com/xdotnet/archive/2007/01/03/sqlconnection_connectionstring.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Wed, 03 Jan 2007 12:53:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2007/01/03/sqlconnection_connectionstring.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/610799.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2007/01/03/sqlconnection_connectionstring.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/610799.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/610799.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 由于本人出生贫寒，还未能领略Orcle,DB2等大哥哥，以前经常用ACCESS在学校中玩耍，后来就是SQL。对于ACCESS的连接字符串没什么变化，都是那么一句或许有其他的Provider；对于SQL我也经常用Visual Studio连接数据库，然后在服务器的属性中复制连接字符串，一直以来都没有对他的字符串真正认真过。现在由于要接触EnterpriseLibrary所以就从网上网罗了一下，把他总结下来，顺便可以巩固一下，从此不再模糊…&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2007/01/03/sqlconnection_connectionstring.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/610799.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2007-01-03 20:53 <a href="http://www.cnblogs.com/xdotnet/archive/2007/01/03/sqlconnection_connectionstring.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>SQL Server连接中三个常见的错误分析</title><link>http://www.cnblogs.com/xdotnet/archive/2006/12/04/sql_server_2005_error.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Mon, 04 Dec 2006 09:16:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2006/12/04/sql_server_2005_error.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/581704.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2006/12/04/sql_server_2005_error.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/581704.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/581704.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 一."SQL Server 不存在或访问被拒绝" <br>二."无法连接到服务器,用户xxx登陆失败"<br>三.提示连接超时<br>&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2006/12/04/sql_server_2005_error.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/581704.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2006-12-04 17:16 <a href="http://www.cnblogs.com/xdotnet/archive/2006/12/04/sql_server_2005_error.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>应用实体类EntitySet实现类似的范型功能</title><link>http://www.cnblogs.com/xdotnet/archive/2006/09/20/EntitySet_Class_So_Good.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Wed, 20 Sep 2006 13:16:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2006/09/20/EntitySet_Class_So_Good.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/510041.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2006/09/20/EntitySet_Class_So_Good.html#Feedback</comments><slash:comments>5</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/510041.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/510041.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要:     在制做项目时我们都会将数据库中的字段名写成一个类,也就是将数据库中的每一张表写成一个类,我们将它称为实体类.EntitySet类能构将类的很多个实例对象封装在Entities属性中,同时可以记录查询记录的总数,对数据库分页很有用;拥有类是List<>范型功能,应用于所有实体类,能减少我们很多代码.&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2006/09/20/EntitySet_Class_So_Good.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/510041.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2006-09-20 21:16 <a href="http://www.cnblogs.com/xdotnet/archive/2006/09/20/EntitySet_Class_So_Good.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>在存储过程中实现分页.</title><link>http://www.cnblogs.com/xdotnet/archive/2006/09/19/procedure_for_paging_select.html</link><dc:creator>网魂小兵</dc:creator><author>网魂小兵</author><pubDate>Tue, 19 Sep 2006 13:23:00 GMT</pubDate><guid>http://www.cnblogs.com/xdotnet/archive/2006/09/19/procedure_for_paging_select.html</guid><wfw:comment>http://www.cnblogs.com/xdotnet/comments/508853.html</wfw:comment><comments>http://www.cnblogs.com/xdotnet/archive/2006/09/19/procedure_for_paging_select.html#Feedback</comments><slash:comments>18</slash:comments><wfw:commentRss>http://www.cnblogs.com/xdotnet/comments/commentRss/508853.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/xdotnet/services/trackbacks/508853.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: &nbsp;&nbsp;&nbsp;&nbsp;我不是一个很有经验的程序员,在做项目的过程中会遇到很多的问题,在数据库中使用分页就是我做项目中遇到的一个问题.我从网上查了很多资料,有很多种方法.但我...&nbsp;&nbsp;<a href='http://www.cnblogs.com/xdotnet/archive/2006/09/19/procedure_for_paging_select.html'>阅读全文</a><img src ="http://www.cnblogs.com/xdotnet/aggbug/508853.html?type=1" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://xdotnet.cnblogs.com/" target="_blank">网魂小兵</a> 2006-09-19 21:23 <a href="http://www.cnblogs.com/xdotnet/archive/2006/09/19/procedure_for_paging_select.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>