<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>ojuju10的专栏</title><link>http://blog.csdn.net/ojuju10/</link><description /><dc:language>zh-CN</dc:language><lastUpdateTime>Wed, 23 Apr 2008 11:53:27 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>ojuju10</dc:creator><title>不同格式的Access文件导入Mssql数据库中</title><link>http://blog.csdn.net/ojuju10/archive/2008/04/23/2317359.aspx</link><pubDate>Wed, 23 Apr 2008 11:53:00 GMT</pubDate><guid>http://blog.csdn.net/ojuju10/archive/2008/04/23/2317359.aspx</guid><wfw:comment>http://blog.csdn.net/ojuju10/comments/2317359.aspx</wfw:comment><comments>http://blog.csdn.net/ojuju10/archive/2008/04/23/2317359.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ojuju10/comments/commentRss/2317359.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2317359</trackback:ping><description>&lt;p&gt;到目前为止Access文件的格式有2种，一种是mdb格式文件，而另外一种是Accdb格式的文件，他们导入到Mssql数据库中方法都不一样。 &lt;/p&gt;&lt;p&gt;1、Mdb格式导入： &lt;/p&gt;&lt;p&gt;SELECT&amp;nbsp; * into newtab&amp;nbsp;&amp;nbsp; FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'C:\database.mdb';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'admin';'',link) &lt;/p&gt;&lt;p&gt;GO&lt;/p&gt;&lt;p&gt;Microsoft.Jet.OLEDB.4.0为ODBC驱动，C:\database.mdb为要导入的Mdb文件的物理路径，特别说明要导入的文件必须要上传到数据库所在的服务器，Link为Access表名。&lt;/p&gt;&lt;p&gt;2、Accdb格式导入： &lt;/p&gt;&lt;p&gt;SELECT *&amp;nbsp;into newtab&amp;nbsp; FROM OPENROWSET('Microsoft.Ace.OLEDB.12.0',&amp;nbs&lt;img src ="http://blog.csdn.net/ojuju10/aggbug/2317359.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ojuju10</dc:creator><title>asv格式的文件导入到数据库中</title><link>http://blog.csdn.net/ojuju10/archive/2007/12/17/1943996.aspx</link><pubDate>Mon, 17 Dec 2007 17:19:00 GMT</pubDate><guid>http://blog.csdn.net/ojuju10/archive/2007/12/17/1943996.aspx</guid><wfw:comment>http://blog.csdn.net/ojuju10/comments/1943996.aspx</wfw:comment><comments>http://blog.csdn.net/ojuju10/archive/2007/12/17/1943996.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ojuju10/comments/commentRss/1943996.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1943996</trackback:ping><description>Asv格式的文件不同于文本文件，也不同Excel文件，同样是运用系统Openrowset()函数，但导入数据库的方式不一样，通过查询大量的资料，现在整理一下：&lt;img src ="http://blog.csdn.net/ojuju10/aggbug/1943996.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ojuju10</dc:creator><title>数据库随机查询</title><link>http://blog.csdn.net/ojuju10/archive/2007/11/19/1893094.aspx</link><pubDate>Mon, 19 Nov 2007 17:36:00 GMT</pubDate><guid>http://blog.csdn.net/ojuju10/archive/2007/11/19/1893094.aspx</guid><wfw:comment>http://blog.csdn.net/ojuju10/comments/1893094.aspx</wfw:comment><comments>http://blog.csdn.net/ojuju10/archive/2007/11/19/1893094.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ojuju10/comments/commentRss/1893094.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1893094</trackback:ping><description>在mssql数据库中，结合系统函数rand()、round()、newid()在表中随机查询2列到3列，再将随机查询出来的列用逗号分隔开，并合并成一列输出！&lt;img src ="http://blog.csdn.net/ojuju10/aggbug/1893094.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ojuju10</dc:creator><title>优化SQL Server数据库</title><link>http://blog.csdn.net/ojuju10/archive/2007/08/16/1746074.aspx</link><pubDate>Thu, 16 Aug 2007 10:19:00 GMT</pubDate><guid>http://blog.csdn.net/ojuju10/archive/2007/08/16/1746074.aspx</guid><wfw:comment>http://blog.csdn.net/ojuju10/comments/1746074.aspx</wfw:comment><comments>http://blog.csdn.net/ojuju10/archive/2007/08/16/1746074.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ojuju10/comments/commentRss/1746074.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1746074</trackback:ping><description>优化SQL Server数据库&lt;img src ="http://blog.csdn.net/ojuju10/aggbug/1746074.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ojuju10</dc:creator><title>全表搜索</title><link>http://blog.csdn.net/ojuju10/archive/2007/08/16/1746057.aspx</link><pubDate>Thu, 16 Aug 2007 10:05:00 GMT</pubDate><guid>http://blog.csdn.net/ojuju10/archive/2007/08/16/1746057.aspx</guid><wfw:comment>http://blog.csdn.net/ojuju10/comments/1746057.aspx</wfw:comment><comments>http://blog.csdn.net/ojuju10/archive/2007/08/16/1746057.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ojuju10/comments/commentRss/1746057.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1746057</trackback:ping><description>     用游标的方法实现:已知一个字符串去查询满足这个字符串所有的记录&lt;img src ="http://blog.csdn.net/ojuju10/aggbug/1746057.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ojuju10</dc:creator><title>从Mssql导出数据到excel表中</title><link>http://blog.csdn.net/ojuju10/archive/2007/05/16/1611431.aspx</link><pubDate>Wed, 16 May 2007 13:19:00 GMT</pubDate><guid>http://blog.csdn.net/ojuju10/archive/2007/05/16/1611431.aspx</guid><wfw:comment>http://blog.csdn.net/ojuju10/comments/1611431.aspx</wfw:comment><comments>http://blog.csdn.net/ojuju10/archive/2007/05/16/1611431.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ojuju10/comments/commentRss/1611431.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1611431</trackback:ping><description>将mssql server数据库中的记录导入到excel表中！&lt;img src ="http://blog.csdn.net/ojuju10/aggbug/1611431.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>