<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msmvps.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results for 'app:weblogs' matching tags 'SQL 2005' and 'sql 2000'</title><link>http://msmvps.com/search/SearchResults.aspx?q=app:weblogs&amp;tag=SQL+2005,sql+2000&amp;orTags=0&amp;o=DateDescending</link><description>Search results for 'app:weblogs' matching tags 'SQL 2005' and 'sql 2000'</description><dc:language>en-US</dc:language><generator>CommunityServer 2008.5 SP2 (Build: 40407.4157)</generator><item><title>Moving MSDB to new location</title><link>/http://feedproxy.google.com/~r/SqlServerCitation/~3/Zv8-Y-k2KAc/moving-msdb-to-new-location.html</link><pubDate>Tue, 06 Mar 2012 06:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1807058</guid><dc:creator>Anonymous</dc:creator><description>&lt;div dir="ltr" style="text-align:left;"&gt;
&lt;div align="justify"&gt;
&lt;span style="font-family:Trebuchet MS;font-size:small;"&gt;In recent past we have a situation where in we required to move MSDB, Model and Master databases to new location, the reason being faulty drive. While moving system databases to new location we need to be extra cautious. Let’s see the process step-by-step.&lt;/span&gt;&lt;/div&gt;
&lt;span style="font-family:Trebuchet MS;font-size:small;"&gt;Step 1: Let’s query sys view and note down the location for database files
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family:Trebuchet MS;font-size:small;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;pre class="sql"&gt;SELECT
NAME,
PHYSICAL_NAME AS &amp;#39;PhysicalFilePath&amp;#39;,
STATE_DESC AS &amp;#39;DB Status&amp;#39;
FROM SYS.MASTER_FILES
&lt;/pre&gt;
&lt;a href="http://lh5.ggpht.com/-CGmdOj0WIR0/T1b37x-_XYI/AAAAAAAAD9M/9bU_nP2_B2A/s1600-h/Screen001%25255B5%25255D.jpg"&gt;&lt;img alt="Screen001" border="0" height="137" src="http://lh5.ggpht.com/-TeifGRcxUjY/T1b3-uA0k6I/AAAAAAAAD9U/AMBynowHJtk/Screen001_thumb%25255B3%25255D.jpg?imgmax=800" style="background-image:none;border-width:0px;display:inline;padding-left:0px;padding-right:0px;padding-top:0px;" title="Screen001" width="582" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style="font-family:Trebuchet MS;font-size:small;"&gt;Step 2: Run alter database and specify new location for database&lt;/span&gt;&lt;br /&gt;
&lt;pre class="sql"&gt;SELECT
ALTER DATABASE MSDB
MODIFY FILE
(
NAME = MSDBData,
FILENAME= &amp;#39;C:\SQLDB\Demo\MSDBData.mdf&amp;#39;
)
GO
ALTER DATABASE MSDB
MODIFY FILE
(
NAME = MSDBLog,
FILENAME= &amp;#39;C:\SQLDB\Demo\MSDBLog.mdf&amp;#39;
)
GO
&lt;/pre&gt;
&lt;a href="http://lh4.ggpht.com/-jWL-qMKG8sI/T1b4AlOzCqI/AAAAAAAAD9c/hoIKPQ952Zg/s1600-h/Screen002%25255B5%25255D.jpg"&gt;&lt;img alt="Screen002" border="0" height="129" src="http://lh5.ggpht.com/-99ujQd5Ywqc/T1b4Ck9ACvI/AAAAAAAAD9k/SpPk0cKmlaM/Screen002_thumb%25255B3%25255D.jpg?imgmax=800" style="background-image:none;border-width:0px;display:inline;padding-left:0px;padding-right:0px;padding-top:0px;" title="Screen002" width="584" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style="font-family:Trebuchet MS;font-size:small;"&gt;Step 3: Stop SQL Server service&lt;/span&gt;&lt;br /&gt;
&lt;a href="http://lh3.ggpht.com/-pakSiwsG2GY/T1b4E8Zd3MI/AAAAAAAAD9s/ClKaT_JhVWE/s1600-h/Screen003%25255B5%25255D.jpg"&gt;&lt;img alt="Screen003" border="0" height="131" src="http://lh6.ggpht.com/-j0ZkLbL88aE/T1b4GpmxLCI/AAAAAAAAD90/LliIfvKuVjw/Screen003_thumb%25255B3%25255D.jpg?imgmax=800" style="background-image:none;border-width:0px;display:inline;padding-left:0px;padding-right:0px;padding-top:0px;" title="Screen003" width="584" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style="font-family:Trebuchet MS;font-size:small;"&gt;Step 4: Once SQL Server service is stopped move MSDB database to new location&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family:Trebuchet MS;font-size:small;"&gt;Step 5: Now, start SQL Server service. This time it will use the new path that we have configured in Step 2.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family:Trebuchet MS;font-size:small;"&gt;Note: If you have enabled and configure Database Mail, please make sure it works after you moved MSDB to new location.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family:Trebuchet MS;"&gt;Tomorrow, I will post about how to relocate Master database.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family:Trebuchet MS;font-size:small;"&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com/"&gt;http://www.sql-server-citation.com/&lt;/a&gt;) &lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/8332641-279216802019920076?l=www.sql-server-citation.com" alt="" /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=Zv8-Y-k2KAc:kvElBSA0i3c:V_sGLiPBpWU" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=Zv8-Y-k2KAc:kvElBSA0i3c:KwTdNBX3Jqk" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=Zv8-Y-k2KAc:kvElBSA0i3c:gIN9vFwOqvQ" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0" alt="" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Zv8-Y-k2KAc:kvElBSA0i3c:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0" alt="" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/Zv8-Y-k2KAc" height="1" width="1" alt="" /&gt;</description></item><item><title>[MS KBs] New KB Articles At Microsoft 23 Aug 2010 - Weekly Summary</title><link>http://msmvps.com/blogs/chobbs/archive/2010/08/24/ms-kbs-new-kb-articles-at-microsoft-23-aug-2010-weekly-summary.aspx</link><pubDate>Tue, 24 Aug 2010 05:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1776504</guid><dc:creator>Anonymous</dc:creator><description>.NET Framework 2.0 2255379 Error message when you run an ADO.NET Framework application to remotely perform read or write operations on FILESTREAM data on a SQL Server 2008 server Outlook 2003 2317686 Outlook 2007 Troubleshooting Methodology: Crashes SQL...(&lt;a href="http://myitforum.com/cs2/blogs/chobbs/archive/2010/08/24/ms-kbs-new-kb-articles-at-microsoft-23-aug-2010-weekly-summary.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://myitforum.com/cs2/aggbug.aspx?PostID=150810" width="1" height="1" alt="" /&gt;</description></item><item><title>[MS KBs] New KB Articles At Microsoft 23 Jun 2010 - Weekly Summary</title><link>http://msmvps.com/blogs/chobbs/archive/2010/06/24/ms-kbs-new-kb-articles-at-microsoft-23-jun-2010-weekly-summary.aspx</link><pubDate>Thu, 24 Jun 2010 05:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1774215</guid><dc:creator>Anonymous</dc:creator><description>.NET Framework 2.0 220686 Microsoft Advisory Services Engagement Scenario - .Net Application Consuming High Memory &amp;#160; 221234 Microsoft Advisory Services Engagement Scenario - .Net Application Performing Slow &amp;#160; &amp;#160; Outlook 2003 224204 The &amp;quot;Import...(&lt;a href="http://myitforum.com/cs2/blogs/chobbs/archive/2010/06/24/ms-kbs-new-kb-articles-at-microsoft-23-jun-2010-weekly-summary.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://myitforum.com/cs2/aggbug.aspx?PostID=150094" width="1" height="1" alt="" /&gt;</description></item><item><title>[MS KBs] New KB Articles At Microsoft 19 May 2010 - Weekly Summary</title><link>http://msmvps.com/blogs/chobbs/archive/2010/05/19/ms-kbs-new-kb-articles-at-microsoft-19-may-2010-weekly-summary.aspx</link><pubDate>Wed, 19 May 2010 05:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1771704</guid><dc:creator>Anonymous</dc:creator><description>Outlook 2003 981725 Description of the Office Outlook 2003 Junk E-mail Filter update: May 11, 2010 &amp;#160; 202836 Outlook crashes on Windows Server 2008 R2 Terminal Server when DEP is enabled &amp;#160; &amp;#160; Outlook 2007 981726 Description of the Office...(&lt;a href="http://myitforum.com/cs2/blogs/chobbs/archive/2010/05/19/ms-kbs-new-kb-articles-at-microsoft-19-may-2010-weekly-summary.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://myitforum.com/cs2/aggbug.aspx?PostID=149445" width="1" height="1" alt="" /&gt;</description></item><item><title>[MS KBs] New KB Articles At Microsoft 28 Apr 2009 - Weekly Summary</title><link>http://msmvps.com/blogs/chobbs/archive/2009/04/28/ms-kbs-new-kb-articles-at-microsoft-28-apr-2009-weekly-summary.aspx</link><pubDate>Tue, 28 Apr 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1691601</guid><dc:creator>Anonymous</dc:creator><description>.NET Framework 2.0 970519 You receive a &amp;quot;The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect&amp;quot; exception when using NVarchar parameters with Sqlclient Internet Information Services 6.0 967853 FIX: IIS...(&lt;a href="http://myitforum.com/cs2/blogs/chobbs/archive/2009/04/28/ms-kbs-new-kb-articles-at-microsoft-28-apr-2009-weekly-summary.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://myitforum.com/cs2/aggbug.aspx?PostID=135667" width="1" height="1" alt="" /&gt;</description></item><item><title>[MMS] 2009 Early Bird Registration Closes on April 3rd!</title><link>http://msmvps.com/blogs/chobbs/archive/2009/03/18/mms-2009-early-bird-registration-closes-on-april-3rd.aspx</link><pubDate>Wed, 18 Mar 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1685035</guid><dc:creator>Anonymous</dc:creator><description>Make sure you get in before 3rd April to get your discount... Register by April 3 rd and save over $300! Reserve your place now at the premiere technical event of the year for IT Management Professionals. Register before April 3 rd 2009 and you’ll save...(&lt;a href="http://myitforum.com/cs2/blogs/chobbs/archive/2009/03/18/mms-2009-early-bird-registration-closes-on-april-3rd.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://myitforum.com/cs2/aggbug.aspx?PostID=133827" width="1" height="1" alt="" /&gt;</description></item><item><title>[MS KBs] New KB Articles At Microsoft 17 Feb 2009 - Weekly Summary</title><link>http://msmvps.com/blogs/chobbs/archive/2009/02/18/ms-kbs-new-kb-articles-at-microsoft-17-feb-2009-weekly-summary.aspx</link><pubDate>Wed, 18 Feb 2009 06:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1672813</guid><dc:creator>Anonymous</dc:creator><description>Expression Web 967682 HTML template created in Expression Web is not seen within Expression Media Internet Explorer 6.0 960715 Microsoft Security Advisory: Update Rollup for ActiveX Kill Bits 967728 You cannot deploy favorites with URLs that contain the...(&lt;a href="http://myitforum.com/cs2/blogs/chobbs/archive/2009/02/18/ms-kbs-new-kb-articles-at-microsoft-17-feb-2009-weekly-summary.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://myitforum.com/cs2/aggbug.aspx?PostID=130739" width="1" height="1" alt="" /&gt;</description></item><item><title>[SQL] KB  967576 - Microsoft SQL Server Database Engine Input/Output Requirements</title><link>http://msmvps.com/blogs/chobbs/archive/2009/02/09/sql-kb-967576-microsoft-sql-server-database-engine-input-output-requirements.aspx</link><pubDate>Mon, 09 Feb 2009 06:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1670603</guid><dc:creator>Anonymous</dc:creator><description>SQL Server requires systems to support ‘ guaranteed delivery to stable media ’ as outlined under the Microsoft SQL Server Always-On Storage Solution Review program ( http://www.microsoft.com/sqlserver/2005/en/us/storage-solutions-review.aspx This requirement...(&lt;a href="http://myitforum.com/cs2/blogs/chobbs/archive/2009/02/09/sql-kb-967576-microsoft-sql-server-database-engine-input-output-requirements.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://myitforum.com/cs2/aggbug.aspx?PostID=129779" width="1" height="1" alt="" /&gt;</description></item><item><title>[SMS 2003]Link to SQL 2005 SP3 added to SMS 2003 SQL Page</title><link>http://msmvps.com/blogs/chobbs/archive/2008/12/18/sms-2003-link-to-sql-2005-sp3-added-to-sms-2003-sql-page.aspx</link><pubDate>Thu, 18 Dec 2008 06:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1657170</guid><dc:creator>Anonymous</dc:creator><description>Download link to SQL 2005 SP3 added to SQL page [18/12/08] Contributed By: Cliff Hobbs [MVP ConfigMgr/ SMS] I&amp;#39;ve added a link to SQL 2005 SP3 to the SQL Page......(&lt;a href="http://myitforum.com/cs2/blogs/chobbs/archive/2008/12/18/sms-2003-link-to-sql-2005-sp3-added-to-sms-2003-sql-page.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://myitforum.com/cs2/aggbug.aspx?PostID=125653" width="1" height="1" alt="" /&gt;</description></item><item><title>[ConfigMgr] New FAQShop Article 12th Nov 08</title><link>http://msmvps.com/blogs/chobbs/archive/2008/11/12/configmgr-new-faqshop-article-12th-nov-08.aspx</link><pubDate>Wed, 12 Nov 2008 06:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1653856</guid><dc:creator>Anonymous</dc:creator><description>Useful SQL Information [12/11/08] Contributed By: Cliff Hobbs [MVP ConfigMgr/ SMS] I&amp;#39;ve updated the SQL Page to not only include download locations for all of the SQL Service Packs but also to contain...(&lt;a href="http://myitforum.com/cs2/blogs/chobbs/archive/2008/11/12/configmgr-new-faqshop-article-12th-nov-08.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://myitforum.com/cs2/aggbug.aspx?PostID=124025" width="1" height="1" alt="" /&gt;</description></item></channel></rss>