<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>bestlong 怕失憶論壇 - MS SQL Server</title>
    <link>http://www.bestlong.idv.tw/forum.php?mod=forumdisplay&amp;fid=5</link>
    <description>Latest 20 threads of MS SQL Server</description>
    <copyright>Copyright(C) bestlong 怕失憶論壇</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Sun, 19 Apr 2026 20:31:29 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.bestlong.idv.tw/static/image/common/logo_88_31.gif</url>
      <title>bestlong 怕失憶論壇</title>
      <link>http://www.bestlong.idv.tw/</link>
    </image>
    <item>
      <title>write failure on backup device 'device.name' Operating system error 112</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=1795</link>
      <description><![CDATA[檢查 MSSQL 伺服器運行狀況，在系統日誌內發現備份作業執行失敗的錯誤訊息，重點內容如下：

BackupMedium::ReportIoError: write failure on backup device 'D:\MSSQL2005Backup\devdb\devdb_backup_201210121350.trn'. Operating system error 112(磁碟的空間不足。). ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Fri, 12 Oct 2012 06:46:37 +0000</pubDate>
    </item>
    <item>
      <title>讓 MS SQL Server 2008 可以接受遠端連線</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=1184</link>
      <description><![CDATA[MSSQL Server 2008 安裝好之後，其他電腦無法連線，這是因為為了提升安全性所以預設就不會啟用大家最常用的 具名管道 與 TCP/IP 通訊協定。



啟用具名管道可以在通訊協定名稱上按右鍵選擇啟用即可



當然 TCP/IP 也可以直接右鍵啟用，不過還需要多做指定通訊埠的設定 ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Thu, 25 Aug 2011 05:35:27 +0000</pubDate>
    </item>
    <item>
      <title>MSSQL 資料庫用 SQL 語法進行備份、還原、新增</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=684</link>
      <description><![CDATA[新增資料庫備份資料庫還原資料庫]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Thu, 25 Mar 2010 06:00:08 +0000</pubDate>
    </item>
    <item>
      <title>MSSQL Log 出現 錯誤: 15457，重要性: 0，狀態: 1</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=668</link>
      <description><![CDATA[Windows 2000 SP4, SQL 2000 Std 8.00.040(SP4 ), 3G Ram

出現的錯誤訊息如下：]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Thu, 18 Mar 2010 00:30:11 +0000</pubDate>
    </item>
    <item>
      <title>如何識別 SQL Server 的版本</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=667</link>
      <description><![CDATA[http://support.microsoft.com/kb/321185/en-us
http://support.microsoft.com/kb/321185/zh-tw

SQL Server 2005
http://www.krell-software.com/mssql-builds.asp?version=90

SQL Server 2000/MSDE 2
http://www.krell-software.com/mssql-builds.asp?version=80
]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Mon, 15 Mar 2010 02:25:53 +0000</pubDate>
    </item>
    <item>
      <title>Failed to obtain TransactionDispenserInterface: Result Code = 0x8004d01b</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=666</link>
      <description><![CDATA[MSSQL 8.00.194 (RTM) 直接升級到 8.00.2039 (SP4) 之後發現 SQL Server 記錄檔中出現下列錯誤

Failed to obtain TransactionDispenserInterface: Result Code = 0x8004d01b

錯誤內容如下：PS：升級 SP4 用 SQL2000-KB884525-SP4-x86-CHT.EXE ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Mon, 15 Mar 2010 01:56:39 +0000</pubDate>
    </item>
    <item>
      <title>MSSQL 分頁處理</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=655</link>
      <description><![CDATA[分頁的技巧有兩種，一種是直接透過 T-SQL，另一種是透過 Store Procedure

假設 Northwind 有一個 Customer的 Table，你需要取回 41~50 筆的記錄，T-SQL語法該如何作呢？

T-SQL：Store Procedure：資料參考 http://blog.sina.com.tw/4907/article.php?pbgid=4907&amp;entry ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Thu, 25 Feb 2010 05:51:19 +0000</pubDate>
    </item>
    <item>
      <title>MSSQL 日期與時間處理方法</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=654</link>
      <description><![CDATA[取得目前時間（日期時間型態資料）

select getdate()

取得 YY/MM/DD（字串型態資料）

select convert(char,getdate(),11)

取得 YYYY/MM/DD（字串型態資料）

select convert(char,getdate(),111)

取得 YYMMDD（字串型態資料）

select convert(char,getdate(),12)
 ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Wed, 24 Feb 2010 09:04:12 +0000</pubDate>
    </item>
    <item>
      <title>MSSQL自動產生編號格式</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=614</link>
      <description><![CDATA[怎樣由 SQL Server 2000 系統自動編號產生格式如:BV+YYYYMM+編號
BV是固定字串 
YYYYMM是年月 
編號是0到9的數字

使用觸發器來處理上面建好後執行： 
insert into test(sname) values('test') 
id欄位就會自動編好號 ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Thu, 04 Dec 2008 09:24:47 +0000</pubDate>
    </item>
    <item>
      <title>MSSQL 6.5 出現 Error : 925 錯誤</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=580</link>
      <description><![CDATA[由於測試環境的資料庫硬碟故障更換後，有部份的資料庫流失需要重建
完成重建環境後設定好從正式環境 Transfer 資料的排程上線運行

結果發現有部份排程作業出現如下錯誤訊息
2008/01/16 08:06:37.60 spid17   Error : 925, Severity: 19, State: 1
2008/01/16 08:06:37. ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Wed, 16 Jan 2008 04:21:31 +0000</pubDate>
    </item>
    <item>
      <title>如何將SQL 2000/2005 Server資料庫備份檔還原到不同的主機</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=555</link>
      <description><![CDATA[在 SQL2005 下建立一個新的資料庫名為 TestDB 
產生相關檔案有 TestDB.mdf 與 TestDB_log.ldf 放置在 D:\MSSQLData 目錄下
而想要還原的資料庫的來源是在另一台SQL2000所備份的
其中備份檔共有一個完整備份的資料檔以及兩個交易紀錄備份檔

然後使用 SQL 命令進行還原作 ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Tue, 30 Oct 2007 07:40:41 +0000</pubDate>
    </item>
    <item>
      <title>安裝 SQL Serrver 2005 出現效能監視器計數器需求 (錯誤)</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=537</link>
      <description><![CDATA[因為要測試一些步驟，所以移除掉 SQL Server 2005 Express 後，要重新安裝 SQL Server 2005 測試版。安裝過程中就檢測出下列錯誤問題


不過按照微軟官方的解決方案 http://technet.microsoft.com/zh-tw/library/ms143215.aspx 處理，過程內容如下：



卻發現 Perflib\ ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Tue, 10 Jul 2007 03:08:19 +0000</pubDate>
    </item>
    <item>
      <title>解決MSSQL6.5設定TempDB in RAM過大導致SQL Server無法啟動問題</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=510</link>
      <description><![CDATA[因為 MSSQL 6.5 Server 出現 TempDB 空間不足的訊息，所以通知所有用戶離線並進行系統調教增加空間，然後重新啟動服務就出現下列錯誤訊息：

kernel udactivate(IN_RAM): Operating system error 8(Not enough storage is available to process this command.) encounte ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Tue, 05 Jun 2007 00:34:32 +0000</pubDate>
    </item>
    <item>
      <title>群組資料取 Top 1</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=316</link>
      <description><![CDATA[整理使用三種方法來取得資料： 、[SubQuery]、[ROW_NUMBER()]，檢視其執行計畫後，
成本最低是：[SubQuery]。

請參考以下的範例：Best Regards
Derrick Chen 德瑞克]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Thu, 21 Dec 2006 04:23:50 +0000</pubDate>
    </item>
    <item>
      <title>MSSQL 資料庫升級精靈由 6.5 升級到 2000 碰到問題</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=294</link>
      <description><![CDATA[為了測試升級程序，建立兩台伺服器安裝資料庫如下：
主機 A 安裝 NT4 +  SQL 6.5 (更新到 SP5)
主機 B 安裝 Windows 2000 server + SQL 2000 (更新到 SP4)
然後在主機 B 使用 SQL Server 升級精靈處理
作業過程中出現了 &quot;Couldn't create or register the SQLUpgrade DS ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Fri, 24 Nov 2006 07:37:09 +0000</pubDate>
    </item>
    <item>
      <title>用TSQL建立50萬筆紀錄的大資料表</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=246</link>
      <description><![CDATA[經常做資料庫效能測試時，需要用到資料量很大的資料表，自己動手寫一段 TSQL 語法即可。

TSQL_建立資料表結構：



TSQL_產生資料：]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Thu, 02 Nov 2006 05:08:33 +0000</pubDate>
    </item>
    <item>
      <title>無法執行組件</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=218</link>
      <description><![CDATA[執行組件時出現下列錯誤訊息

這是安全性問題，請執行 SQL Server 2005 Surface Area Configuration 點選 Surface Area Configuration for Feature 後將 CLR Integration 啟動後就可以了。]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Thu, 12 Oct 2006 06:06:57 +0000</pubDate>
    </item>
    <item>
      <title>Microsoft SQL Server 2005 Express Edition</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=217</link>
      <description><![CDATA[Microsoft SQL Server 2005 Express Edition 是免費又簡單好用的 SQL Server 2005 輕量型版本。您可以快速且輕鬆地學會如何使用這個版本，以快速開發及部署動態資料驅動應用程式。SQL Server Express 提供功能強大而且可靠的資料管理工具，以及豐富的功能、資料保護與高 ...]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Thu, 12 Oct 2006 03:22:13 +0000</pubDate>
    </item>
    <item>
      <title>遷移 MySQL 到 MS SQL</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=69</link>
      <description><![CDATA[微軟官方說明
http://www.microsoft.com/china/technet/prodtechnol/iis/deploy/depovg/mysql.asp]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Mon, 21 Aug 2006 15:50:24 +0000</pubDate>
    </item>
    <item>
      <title>計算時間間隔</title>
      <link>http://www.bestlong.idv.tw/forum.php?mod=viewthread&amp;tid=63</link>
      <description><![CDATA[登入時間紀錄

理想中的萃取結果為：


準備測試環境


萃取資料


得到結果]]></description>
      <category>MS SQL Server</category>
      <author>bestlong</author>
      <pubDate>Tue, 08 Aug 2006 04:19:40 +0000</pubDate>
    </item>
  </channel>
</rss>