<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Cranky DBA &#187; SQLServerPedia Syndication</title>
	<atom:link href="http://thecrankydba.com/category/sqlserverpedia/feed/" rel="self" type="application/rss+xml" />
	<link>http://thecrankydba.com</link>
	<description>Mike Hillwig shares his experiences and adventures as a Database Administrator</description>
	<lastBuildDate>Thu, 26 Aug 2010 14:44:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Backup Sanity Check</title>
		<link>http://thecrankydba.com/2010/08/26/backup-sanity-check/</link>
		<comments>http://thecrankydba.com/2010/08/26/backup-sanity-check/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 14:44:05 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=369</guid>
		<description><![CDATA[One of my pet peeves is when an application thinks its smarter than its DBA. Our helpdesk system was occasionally complaining that the database hadn&#8217;t been backed up in the past 24 hours. And our helpdesk manager was understandably concerned. That&#8217;s when I started doing some digging.
My backup script was occasionally skipping databases that had [...]]]></description>
			<content:encoded><![CDATA[<p>One of my pet peeves is when an application thinks its smarter than its DBA. Our helpdesk system was occasionally complaining that the database hadn&#8217;t been backed up in the past 24 hours. And our helpdesk manager was understandably concerned. That&#8217;s when I started doing some digging.</p>
<p>My backup script was occasionally skipping databases that had a SIMPLE recovery model. I&#8217;m still trying to figure that one out. More importantly, I set the recovery model to FULL, as it should be. * The latest upgrade of the vendor&#8217;s software set it to SIMPLE. But still, I was scratching my brain, trying to figure out what was wrong with my script.</p>
<p>In the meantime, I wanted to update my backup script to add a sanity check, backing up anything that hadn&#8217;t been backed up in the past 24 hours. I headed for the master.sys.databases table to see if I could find the column that indicated when it was last backed up. That&#8217;s the logical place for it, right? Wrong.  After doing some spelunking, I drew up this little gem:</p>
<pre>SELECT      sd.name, max(bs.backup_finish_date)
FROM        master.sys.databases sd
LEFT JOIN   msdb.dbo.backupset bs
ON          bs.database_name = sd.name
where       ISNULL(type,'D') = 'D'
GROUP BY    sd.name
HAVING      max(backup_finish_date) IS NULL
OR          datediff(hour,max(backup_finish_date), getdate()) &gt; 24
order by    sd.name</pre>
<p>The backupset table gave me a great place to start.  But I found a little problem&#8211;it was listing a bunch of databases with really old backup dates. That&#8217;s when I realized those databases had been dropped long ago. By joining it to the master database, it only showed databases that were currently attached. And as an added bonus, a couple of NULL checks allowed me to see anything that had never been backed up.</p>
<p>I shouldn&#8217;t have to use this, but it is nice to know that I can use it as a sanity check.</p>
<p>* In my environment, the only databases that get SIMPLE recovery is static data. Everything else gets set to FULL.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2010/08/26/backup-sanity-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Failing the Smell Test</title>
		<link>http://thecrankydba.com/2010/08/17/failing-the-smell-test/</link>
		<comments>http://thecrankydba.com/2010/08/17/failing-the-smell-test/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 13:00:47 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=353</guid>
		<description><![CDATA[In addition to being a DBA, I&#8217;m a bit of a travel geek. I have a great love of airplanes, aviation, and travel.
Today, I was looking at flights and saw something that made me think that it was a total violation of constraints.

Just looking at this made me cringe. US Airways flight 0729 departs London&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>In addition to being a DBA, I&#8217;m a bit of a travel geek. I have a great love of airplanes, aviation, and travel.</p>
<p>Today, I was looking at flights and saw something that made me think that it was a total violation of constraints.</p>
<p><a href="http://thecrankydba.com/wp-content/uploads/2010/08/US0729.jpg"><img class="alignnone size-medium wp-image-354" title="US0729" src="http://thecrankydba.com/wp-content/uploads/2010/08/US0729-300x164.jpg" alt="" width="300" height="164" /></a></p>
<p>Just looking at this made me cringe. US Airways flight 0729 departs London&#8217;s Heathrow, stops in Philadelphia, and then continues onto Boston. Flights with intermediate stops are common. Heck, Southwest flights are notorious for going coast-to-coast with multiple stops along the way. But in most cases, that flight is operated by same plane. In this case, the flight doesn&#8217;t stop in Philadelphia. If you look closely, you depart in Philadelphia and get on an entirely different aircraft. It&#8217;s not just a different physical plane&#8211;it&#8217;s a whole new aircraft type. You&#8217;re going from a widebody Airbus A330 onto a regional Embraer E90.  This is what I call failing the smell test. The data construct just doesn&#8217;t make sense.</p>
<p>We&#8217;re facing a very similar situation with my company&#8217;s ERP system right now. We make technology devices and the software that runs them. Somewhere many years ago, when we started selling high availability pairs, instead of selling two devices with a discount, someone in marketing decided we would sell them as a pair. This has been a complete nightmare in terms of data. Our ERP system doesn&#8217;t allow two serial numbers for a part. The first serial number is recorded in the ERP system and then the second one lands in a spreadsheet somewhere. The folks in customer support go crazy when they can&#8217;t find the serial number of the second item in the pair.</p>
<p>I&#8217;ve seen a lot of conflicts between technology and marketing people in situations like this. Unfortunately, we lose all too frequently in these situations. In these cases, we need to really think through the process. Had someone looked at our problem from the customer support perspective, we might have been able to convince marketing that this was a bad idea. It should have failed the smell test at inception.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2010/08/17/failing-the-smell-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migration</title>
		<link>http://thecrankydba.com/2010/07/25/migration/</link>
		<comments>http://thecrankydba.com/2010/07/25/migration/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 02:24:29 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=346</guid>
		<description><![CDATA[Tomorrow, my company moves into our new facility. It&#8217;s about 1.5 miles down the road from our old facilities.  We were in two different buildings about 100 yards apart. Now, we&#8217;re moving into a single building.
We&#8217;re a technology company who makes networking software and quite a bit of the hardware that runs our software .We [...]]]></description>
			<content:encoded><![CDATA[<p>Tomorrow, my company moves into our new facility. It&#8217;s about 1.5 miles down the road from our old facilities.  We were in two different buildings about 100 yards apart. Now, we&#8217;re moving into a single building.</p>
<p>We&#8217;re a technology company who makes networking software and quite a bit of the hardware that runs our software .We also make management software. On top of that, we do final assembly and testing in-house for the majority of our products.  That means our IT group had two server rooms, engineering had two test labs, customer support had a test lab, and manufacturing had a major facility. For all intents and purposes, we had six data centers. That&#8217;s a whole heck of a lot of networking. In our new facility, that is consolidated down to four. The engineering &#8220;lab&#8221; is massive.  Our cabling contractor tells us they probably ran 150 miles of CAT6 cable in the new facility.</p>
<p>Tomorrow&#8217;s move meant we migrated our data center Friday night. It was bumpy but successful.</p>
<p>Six months ago, we bought a pair of EMC ClarIIon CX-120 SANs and a pair of IBM H series blade centers with HS22 blades. My coworker and I have spent the past six months consolidating servers, virtualizing servers, and migrating systems to new virtual machines. About 80% of our corporate systems are virtual now. I have to say that it made this weekend&#8217;s migration much easier. Well, almost.</p>
<p>In working with the people from EMC, they noticed that we were replicating the LUNs that contained my backup files as well as my tempdb files. This was causing a lot of replication traffic between the two SANs. While they were sitting next to each other, this was fine. But going across a 100 megabit connection, they thought it might be too much. They suggested that we not replicate those LUNs. Foolishly, I agreed.  After the migration (which was bumpy itself due to a few self-inflicted issues), the virtual machines that run all four of my primary database servers failed to start. I saw my career flash before my eyes.</p>
<p>Fortunately, EMC sent us an amazing engineer who actually made sure the SANs were completely in sync before moving. All he had to do was present the LUN as a VMWare storage group and my servers came up. The process took about 90 minutes longer than we had expected, but it was still quite successful. And now we have a better idea what to expect when we move our DR to a colo facility next month.</p>
<p>One of the blessings of this move is that we got a new alarm system. And that means my only remaining SQL 2000 instance got retired and replaced with a brand new SQL 2008 instance. That made me happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2010/07/25/migration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Project: Aviation Statistics</title>
		<link>http://thecrankydba.com/2010/07/09/new-project-aviation-statistics/</link>
		<comments>http://thecrankydba.com/2010/07/09/new-project-aviation-statistics/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 03:52:47 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=344</guid>
		<description><![CDATA[Most technology professionals have a lab or test environment where they can work and play. Unfortunately, I&#8217;m not one of them. Sure, I have a test environment, but it&#8217;s only for my ERP system. And my company is really particular about software licensing. I could never set up a test environment that wasn&#8217;t explicitly related [...]]]></description>
			<content:encoded><![CDATA[<p>Most technology professionals have a lab or test environment where they can work and play. Unfortunately, I&#8217;m not one of them. Sure, I have a test environment, but it&#8217;s only for my ERP system. And my company is really particular about software licensing. I could never set up a test environment that wasn&#8217;t explicitly related to work. And since we&#8217;re so touchy at proprietary data, it makes blogging about work data incredibly difficult.</p>
<p>Until today.</p>
<p>Thanks to another member of the SQL Server community, I got my hands on an MSDN membership. That gives me access to some software licenses from MIcrosoft. And that means I can start building my own test lab. And that&#8217;s exactly what I started doing tonight.</p>
<p>I have a reasonably powerful desktop that is running VMWare ESXi (free!), and my first virtual machine was built to play with SQL 2008 R2. If you read my personal blog, you know that I&#8217;m a bit of an aviation nut. So to have some good data to test with, I&#8217;ve downloaded a lot of data from the Bureau of Transportation Statistics.</p>
<p>In the coming weeks, I&#8217;ll have a few posts about the data, what I&#8217;m doing with it, and what I&#8217;m learning by playing with it. So far, I have about 20 million rows in a single table that&#8217;s the raw import I got from BTS. Once I have a clean import, I&#8217;ll make that data file available to anybody who wants it. It&#8217;ll be my little contribution to the SQL Server community. It&#8217;s some good data for testing.</p>
<p>Of course, I got sucked into a project, and I&#8217;m up past my bedtime. At least I was doing something fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2010/07/09/new-project-aviation-statistics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Lunch &#8211; Without Lunch</title>
		<link>http://thecrankydba.com/2010/03/03/free-lunch-without-lunch/</link>
		<comments>http://thecrankydba.com/2010/03/03/free-lunch-without-lunch/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 02:23:17 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=341</guid>
		<description><![CDATA[The old adage is that there is no free lunch.  Every once in a while, a free event comes up that&#8217;s a great use of time at no cost. Today was one such example.
My friend Brent Ozar presented a virtual training class sponsored by Quest Software.  Today&#8217;s topic was &#8220;Performance Tuning &#38; Troubleshooting with DMVs&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>The old adage is that there is no free lunch.  Every once in a while, a free event comes up that&#8217;s a great use of time at no cost. Today was one such example.</p>
<p>My friend <a href="http://www.brentozar.com/">Brent Ozar</a> presented a virtual training class sponsored by <a href="http://www.quest.com">Quest Software</a>.  Today&#8217;s topic was &#8220;Performance Tuning &amp; Troubleshooting with DMVs&#8221; and I found it pretty fantastic.</p>
<p>If you keep your eyes open, you can get some really great free training out there. They&#8217;re not always sit down training in a proper classroom. Sometimes they&#8217;re seminars or virtual events. My current boss seems to think that if it&#8217;s not led by an instructor in a classroom, it&#8217;s not worthwhile. I will say that I get more out of talking to and listening to other DBAs, learning from their experience.</p>
<p>Sure, these events are usually paid for by a sponsor, and you have to listen to the sales pitch. It&#8217;s well worth it. My only complaint is that Quest didn&#8217;t provide lunch today. They should have provided the bacon. Since I was sitting in my own office, I guess I can handle buying my own lunch.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2010/03/03/free-lunch-without-lunch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Updated SQL Server 2005 Install Checklist</title>
		<link>http://thecrankydba.com/2010/01/25/my-updated-sql-server-2005-install-checklist/</link>
		<comments>http://thecrankydba.com/2010/01/25/my-updated-sql-server-2005-install-checklist/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 19:12:56 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=332</guid>
		<description><![CDATA[If you&#8217;ve been following me lately (either my blog or Twitter), you know that I&#8217;m in the process of building up some new servers on a new SAN for a big database consolidation.
After the first server, I had a pretty good checklist. Brent Ozar has a pretty fantastic checklist that I stole a few items [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been following me lately (either my blog or Twitter), you know that I&#8217;m in the process of building up some new servers on a new SAN for a big database consolidation.</p>
<p>After the first server, I had a pretty good checklist. <a href="http://www.brentozar.com" target="_blank">Brent Ozar</a> has a pretty <a href="http://www.brentozar.com/archive/2008/03/sql-server-2005-setup-checklist-part-1-before-the-install/" target="_blank">fantastic checklist</a> that I stole a few items from.  This is my attempt at a more refined checklist. (of my own, not Brent&#8217;s)</p>
<p>In my new environment, each server is a VM. The physical box has 16 GB of RAM and the VM will get 8 GB. I have drives for the OS, SQL logs, SQL data, TempDB, and backups.</p>
<p>Here is my order of things:</p>
<ul>
<li>Install Windows 2003 (64 bit)</li>
<li>Install Windows 2003 SP2</li>
<li>Install our antivirus software</li>
<li>Install SQL 2005</li>
<li>Install SQL 2005 SP3</li>
<li>Set permissions to permit Instant File Intialization</li>
<li>Set permissions to permit locking pages in memory</li>
<li>Install System Center Operations Manager  Agent</li>
<li>Install Quest LiteSpeed</li>
<li>Attach to SAN/Add VMWare virtual disks</li>
<li>Create Directory Structure
<ul>
<li>SQL Logs
<ul>
<li>User</li>
<li>System</li>
<li>Error</li>
</ul>
</li>
<li>SQL Data
<ul>
<li>User</li>
<li>System</li>
</ul>
</li>
</ul>
</li>
<li>Move Master DB</li>
<li>Move TempDB</li>
<li>Move Model DB</li>
<li>Move MSDB DB</li>
<li>Resize TempDB (32 GB data, 16 GB logs), disable autogrowth</li>
<li>Set default file locations</li>
<li>Set CPU to boost SQL priority</li>
<li>Set minimum memory to 6GB</li>
<li>Set maximum memory to 7GB.</li>
<li>Configure Database Mail</li>
</ul>
<p>Disabling autogrowth on TempDB may be a little controversial. I&#8217;m okay with that. If TempDB is growing that much on our servers, which aren&#8217;t that big, I want to know what the heck is going on.</p>
<p>Okay, fellow DBAs, what did I forget, and what did I do wrong here? I think I did some good stuff here, but I doubt it&#8217;s perfect.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2010/01/25/my-updated-sql-server-2005-install-checklist/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Server Builds</title>
		<link>http://thecrankydba.com/2010/01/19/server-builds/</link>
		<comments>http://thecrankydba.com/2010/01/19/server-builds/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:31:39 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=323</guid>
		<description><![CDATA[I&#8217;m building a new server. Actually, I&#8217;m building two. We just bought a new pair of SANS (one production, one DR) and are doing a consolidation project with our databases.
Each DB server will live on its own VMWare host. We&#8217;re virtualizing so that we can utilize VMWare&#8217;s clustering. It also gives us the flexibility to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m building a new server. Actually, I&#8217;m building two. We just bought a new pair of SANS (one production, one DR) and are doing a consolidation project with our databases.</p>
<p>Each DB server will live on its own VMWare host. We&#8217;re virtualizing so that we can utilize VMWare&#8217;s clustering. It also gives us the flexibility to move things around. My two database servers will have identical configurations. One will server internal applications, and the other will host customer-facing applications.</p>
<p>Hardware wise, I&#8217;m using IBM HS22 blades with 32 GB of RAM connected to an EMC Clariion CX4-120SAN. Each server has five datastores, each corresponding a LUN on the SAN. Each virtual drive will live in its own storage group. I have a drive for:</p>
<ul>
<li>OS &#8211; Aps</li>
<li>TempDB</li>
<li>Log (LDF) Files</li>
<li>Backups</li>
<li>Data (MDF/NDF) files</li>
</ul>
<p>My preference would have been to have the virtual machines use an iSCSI initiator to talk to the SAN, but I got overruled on that one. Still, this is a better configuration than I had before. (We had no SAN at all.)</p>
<p>Everything is 64 bit SQL 2005.  Again, I wanted to use SQL 2008, but that&#8217;s the next project.</p>
<p>After installing Windows and SQL, I started putting together a checklist of items to do next. Brent Ozar has <a href="http://www.brentozar.com/archive/2008/03/sql-server-2005-setup-checklist-part-1-before-the-install/" target="_blank">a great checklist</a> and has been a great reference. Here is my list:</p>
<ol>
<li>System Center Operations Manager Agent</li>
<li>Antivirus protection</li>
<li>Quest&#8217;s LiteSpeed</li>
<li>Service Packs, Service Packs, Service Packs.</li>
<li>Set default file locations</li>
<li>Move master DB</li>
<li>Move TempDB</li>
<li>Resize TempDB</li>
<li>Move Model</li>
<li>Move MSDB</li>
<li>Load Testing</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2010/01/19/server-builds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Database Names Matter</title>
		<link>http://thecrankydba.com/2009/11/12/why-database-names-matter/</link>
		<comments>http://thecrankydba.com/2009/11/12/why-database-names-matter/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 17:03:58 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=309</guid>
		<description><![CDATA[There is a reason users shouldn&#8217;t be allowed to name their own databases. Actually, there are probably several thousand reasons. I have a new one for you&#8211;It makes my life more difficult.
Lets say you work for a company called Acme. And lets say your manufacturing people created an in-house Microsoft Access application with a SQL [...]]]></description>
			<content:encoded><![CDATA[<p>There is a reason users shouldn&#8217;t be allowed to name their own databases. Actually, there are probably several thousand reasons. I have a new one for you&#8211;It makes my life more difficult.</p>
<p>Lets say you work for a company called Acme. And lets say your manufacturing people created an in-house Microsoft Access application with a SQL database called AcmeDatabase.  And lets say that your support organization created a database on a different server called Acme that&#8217;s part of their CRM system. On top of that, the ERP system (yet again on a different server) prefixes all four of its databases with Acme_.  As the DBA, you&#8217;d never permit this to happen unless you inherit this mess.</p>
<p>Welcome to my world and the mess I inherited. I have my company name (or some form of it) in countless databases. Lets make this just a little more interesting, though. We&#8217;re going to be consolidating database servers in the near future and potentially putting all of these databases on the same server.</p>
<p>These are databases that could potentially end up living on the same server:</p>
<ul>
<li>AcmeDatabase</li>
<li>Acme</li>
<li>Acme_App</li>
<li>Acme_Data</li>
<li>Acme_Forms</li>
</ul>
<p>Which one s are ERP, CRM, or Manufacturing?</p>
<p>When we consolidate database servers, we&#8217;re also going to be renaming some of these databases. My application owners won&#8217;t be too happy about this. They&#8217;re going to have to get over that. I inherited this mess, and I&#8217;m going to make it right.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2009/11/12/why-database-names-matter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rookie Mistakes: Named Instance</title>
		<link>http://thecrankydba.com/2009/11/10/rookie-mistakes-named-instance/</link>
		<comments>http://thecrankydba.com/2009/11/10/rookie-mistakes-named-instance/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 14:07:02 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=305</guid>
		<description><![CDATA[I hate rookie mistakes. I hate them even more when I&#8217;m the one making them.
My coworker was installing Microsoft OCS Server, and he said that he needed a SQL instance, and he told me what the instance needed to be named. Since we already had a SQL server dedicated to this project, I created a [...]]]></description>
			<content:encoded><![CDATA[<p>I hate rookie mistakes. I hate them even more when I&#8217;m the one making them.</p>
<p>My coworker was installing Microsoft OCS Server, and he said that he needed a SQL instance, and he told me what the instance needed to be named. Since we already had a SQL server dedicated to this project, I created a named instance on said server.</p>
<p>In retrospect, I should have looked a little more closely instead of just assuming I needed to create a named instance. After I looked at the screen that asked for the SQL instance, I knew that we could use the default instance and not have to go down the named instance path.</p>
<p><img class="alignnone size-medium wp-image-306" title="OCS Instance" src="http://thecrankydba.com/wp-content/uploads/2009/11/OCS-Instance-300x231.jpg" alt="OCS Instance" width="300" height="231" /></p>
<p>Fortunately, we&#8217;re still in the test phase with virtual servers and the servers we&#8217;re using will be replaced with physical machines. That means I&#8217;ll be able to go back and get it right the next time around.</p>
<p>That&#8217;s why we have test environments, right? I&#8217;d much rather make a rookie mistake in a test environment than in production.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2009/11/10/rookie-mistakes-named-instance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Congrats to the Winner</title>
		<link>http://thecrankydba.com/2009/10/01/congrats-to-the-winner/</link>
		<comments>http://thecrankydba.com/2009/10/01/congrats-to-the-winner/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 19:13:15 +0000</pubDate>
		<dc:creator>Mike Hillwig</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>

		<guid isPermaLink="false">http://thecrankydba.com/?p=292</guid>
		<description><![CDATA[As Brent Ozar mentioned in his blog post, the winner of the all-expense paid trip to PASS is Jen McCown, aka @MidnightDBA. I&#8217;m really happy for her. Don&#8217;t get me wrong, I&#8217;m jealous as hell. Jen wanted this as much as I did, perhaps more. She produced a ton of amazing content, and the community is better [...]]]></description>
			<content:encoded><![CDATA[<p>As <a href="http://www.brentozar.com/archive/2009/10/and-the-winner-is-jen-mccown-midnightdba/" target="_blank">Brent Ozar mentioned</a> in his blog post, the winner of the all-expense paid trip to PASS is <a href="http://midnightdba.itbookworm.com/midnightdba/blog/post/YES-WE-CAN!!!.aspx" target="_blank">Jen McCown</a>, aka @MidnightDBA. I&#8217;m really happy for her. Don&#8217;t get me wrong, I&#8217;m jealous as hell. Jen wanted this as much as I did, perhaps more. She produced a ton of amazing content, and the community is better off for the work she did.  </p>
<p>I have a lot of good stuff coming up professionally. We&#8217;re planning on consolidating our database servers, and this should give me a ton of good stuff to write about. I&#8217;m really enjoying my time with SQLServerpedia.com and look forward to having the opportunity to contribute.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrankydba.com/2009/10/01/congrats-to-the-winner/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
