<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/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>點部落-SQL資料庫技術</title>
        <link>http://www.dotblogs.com.tw/jameswu/category/1380.aspx</link>
        <description>SQL資料庫技術</description>
        <language>zh-TW</language>
        <copyright>James Wu</copyright>
        <generator>Subtext Version 1.9.6.309</generator>
        <item>
            <title>MS SQL Server 2005 版SchemaGen(Export Meta Data)</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/08/06/4818.aspx</link>
            <description>我想很多人在專案進行中,大部分都會遇到要把資料庫的Schema匯出來,&lt;br/&gt;若有好習慣的話會在每個資料欄位作描述註解,這時若可以直接由資料庫匯出所有資料表的Meta Data的話,&lt;br/&gt;那就太好了可不是嗎?&lt;br/&gt;&lt;br/&gt;當然我也曾遇過這個問題,當時幸好有孤影的SchemaGen,己解決了我大部分的問題,&lt;br/&gt;不過他的指支援MS SQL 2000,我暫時還沒找到有MS SQL 2005版本.所以,花了點時間研究一下MS SQL 2005的作法,&lt;br/&gt;以下是我的方法,可匯出所有資料表每個欄位名稱、資料型態、資料長度、描述&lt;br/&gt;&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/08/06/4818.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/4818.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>James Wu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/08/06/4818.aspx</guid>
            <pubDate>Tue, 05 Aug 2008 17:12:32 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/4818.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/08/06/4818.aspx#feedback</comments>
            <slash:comments>5</slash:comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/4818.aspx</wfw:commentRss>
        </item>
        <item>
            <title>使用PATINDEX()判斷欄位有[A-Z]、[a-z]、[0-9]之外的字元</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/07/25/4715.aspx</link>
            <description>這是一個MS SQL 的判斷欄位值內是否有包含英文大小寫及數字以外的字元，&lt;br/&gt;我們可以利用PATINDEX()函數來處理這個問題，&lt;br/&gt;這也是看了大鈞判斷資料欄位是否有中文字(使用ASCII比對及PATINDEX兩種方法）文章的靈感，&lt;br/&gt;也剛好論壇的朋友恰好遇到此問題，於是我還是把這個ㄤ法做一下紀錄囉!&lt;br/&gt;&lt;br/&gt;&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/07/25/4715.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/4715.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>James Wu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/07/25/4715.aspx</guid>
            <pubDate>Fri, 25 Jul 2008 15:27:35 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/4715.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/07/25/4715.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/4715.aspx</wfw:commentRss>
        </item>
        <item>
            <title>直接使用SQL SERVER 2005 開啟XML檔案並讀取內容(二)-應用BULK INSERT</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/07/23/4707.aspx</link>
            <description>延續著上一篇直接使用SQL SERVER 2005 開啟XML檔案並讀取內容(一)-應用xp_cmdshell文章，我在提供另一個方法來處理XML檔，當然還有許多種方法可以做處理，等有閒時在多加補充幾個方法。&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/07/23/4707.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/4707.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>James Wu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/07/23/4707.aspx</guid>
            <pubDate>Wed, 23 Jul 2008 15:41:09 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/4707.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/07/23/4707.aspx#feedback</comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/4707.aspx</wfw:commentRss>
        </item>
        <item>
            <title>直接使用SQL SERVER 2005 開啟XML檔案並讀取內容(一)-應用xp_cmdshell</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/07/22/4701.aspx</link>
            <description>實務上有時候需要直接在SQL SERVER上讀取XML檔案內容後，與現有的資料庫資料表內容做合併，當然首先要想辦法將XML檔案讀出來，然後將原本的XML內容轉換成資料表的欄位格式後，再將原本要整合的資料表資料合併。&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/07/22/4701.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/4701.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>James Wu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/07/22/4701.aspx</guid>
            <pubDate>Tue, 22 Jul 2008 15:50:33 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/4701.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/07/22/4701.aspx#feedback</comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/4701.aspx</wfw:commentRss>
        </item>
        <item>
            <title> MS SQL SERVER 簡易取得資料表實體檔案大小</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3083.aspx</link>
            <description>摘要: MS SQL SERVER 簡易取得資料表實體檔案大小&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3083.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/3083.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>jameswu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3083.aspx</guid>
            <pubDate>Tue, 22 Apr 2008 16:16:14 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/3083.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3083.aspx#feedback</comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/3083.aspx</wfw:commentRss>
        </item>
        <item>
            <title> 如何將辨識欄位重新編號?</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3082.aspx</link>
            <description>摘要: 如何將辨識欄位重新編號?&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3082.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/3082.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>jameswu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3082.aspx</guid>
            <pubDate>Tue, 22 Apr 2008 16:15:45 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/3082.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3082.aspx#feedback</comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/3082.aspx</wfw:commentRss>
        </item>
        <item>
            <title> 如何跨資料庫下條件來更新(Update)某資料庫的資料</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3081.aspx</link>
            <description>摘要: 如何跨資料庫下條件來更新(Update)某資料庫的資料&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3081.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/3081.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>jameswu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3081.aspx</guid>
            <pubDate>Tue, 22 Apr 2008 16:15:22 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/3081.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3081.aspx#feedback</comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/3081.aspx</wfw:commentRss>
        </item>
        <item>
            <title> 由 SQL Server 2000 資料庫取得全球性的唯一值</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3080.aspx</link>
            <description>摘要: 由 SQL Server 2000 資料庫取得全球性的唯一值&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3080.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/3080.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>jameswu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3080.aspx</guid>
            <pubDate>Tue, 22 Apr 2008 16:14:31 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/3080.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3080.aspx#feedback</comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/3080.aspx</wfw:commentRss>
        </item>
        <item>
            <title> 壓縮資料庫的交易記錄檔的三個步驟</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3079.aspx</link>
            <description>摘要: 壓縮資料庫的交易記錄檔的三個步驟&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3079.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/3079.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>jameswu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3079.aspx</guid>
            <pubDate>Tue, 22 Apr 2008 16:14:01 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/3079.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3079.aspx#feedback</comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/3079.aspx</wfw:commentRss>
        </item>
        <item>
            <title>日期在SQL Server 2000的處理方法</title>
            <link>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3078.aspx</link>
            <description>摘要:日期在SQL Server 2000的處理方法&lt;a href='http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3078.aspx'&gt;閱讀全文&lt;/a&gt;&lt;img src="http://www.dotblogs.com.tw/jameswu/aggbug/3078.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>jameswu</dc:creator>
            <guid>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3078.aspx</guid>
            <pubDate>Tue, 22 Apr 2008 16:13:42 GMT</pubDate>
            <wfw:comment>http://www.dotblogs.com.tw/jameswu/comments/3078.aspx</wfw:comment>
            <comments>http://www.dotblogs.com.tw/jameswu/archive/2008/04/23/3078.aspx#feedback</comments>
            <wfw:commentRss>http://www.dotblogs.com.tw/jameswu/comments/commentRss/3078.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>