<?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>JohnSterrett.com &#187; Uncategorized</title>
	<atom:link href="http://johnsterrett.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnsterrett.com</link>
	<description>My journey though SQL and life!</description>
	<lastBuildDate>Thu, 17 May 2012 06:17:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>How long will this sql server restore take?</title>
		<link>http://johnsterrett.com/2011/08/29/how-long-will-this-sql-server-restore-take/</link>
		<comments>http://johnsterrett.com/2011/08/29/how-long-will-this-sql-server-restore-take/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 14:00:15 +0000</pubDate>
		<dc:creator>johnsterrett</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://johnsterrett.com/?p=869</guid>
		<description><![CDATA[Have you ever wanted to know how long its going to take to complete  a restore once you issued the restore T-SQL command? The DMV&#8217;s can actually give you this information.  My script to complete this task is included below. &#8230; <a href="http://johnsterrett.com/2011/08/29/how-long-will-this-sql-server-restore-take/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjohnsterrett.com%2F2011%2F08%2F29%2Fhow-long-will-this-sql-server-restore-take%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjohnsterrett.com%2F2011%2F08%2F29%2Fhow-long-will-this-sql-server-restore-take%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Have you ever wanted to know how long its going to take to complete  a restore once you issued the restore T-SQL command? The DMV&#8217;s can actually give you this information.  My script to complete this task is included below.</p>
<pre class="brush: sql; title: ;">
/* Query used to find status of a backup. */
SELECT	sysdb.NAME,
    dmv.PERCENT_COMPLETE AS [PercentComplete],
    dmv.TOTAL_ELAPSED_TIME/60000 AS [Elapsed_Time_in_Minutes],
    dmv.ESTIMATED_COMPLETION_TIME/60000	AS [Time_Remaining_in_Minutes],
    [Individual Query] = SUBSTRING (qt.text,  dmv.statement_start_offset/2, (CASE WHEN dmv.statement_end_offset = -1
   THEN LEN(CONVERT(NVARCHAR(MAX), qt.text)) * 2
   ELSE dmv.statement_end_offset END - dmv.statement_start_offset)/2),
   [Parent Query] = qt.text
FROM	MASTER..SYSDATABASES sysdb
inner join sys.dm_exec_requests dmv on sysdb.DBID=dmv.DATABASE_ID AND dmv.COMMAND LIKE '%restore%'
CROSS APPLY sys.dm_exec_sql_text(dmv.sql_handle)as qt
ORDER	BY 2 desc, 3 desc
</pre>
<div class="shr-publisher-869"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://johnsterrett.com/2011/08/29/how-long-will-this-sql-server-restore-take/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaking at WV SQL User Group on August 25th</title>
		<link>http://johnsterrett.com/2011/08/16/speaking-at-wv-sql-user-group-on-august-25th/</link>
		<comments>http://johnsterrett.com/2011/08/16/speaking-at-wv-sql-user-group-on-august-25th/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 13:07:56 +0000</pubDate>
		<dc:creator>johnsterrett</dc:creator>
				<category><![CDATA[Professional Development]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[PBM]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[User Group]]></category>

		<guid isPermaLink="false">http://johnsterrett.com/?p=861</guid>
		<description><![CDATA[I look forward to giving my Evaluate your Daily Checklist against your SQL Enterprise with PBM and CMS presentation at the WV SQL Server User Group in Wheeling, WV on August 25th at the Orrick Building. You can still sign &#8230; <a href="http://johnsterrett.com/2011/08/16/speaking-at-wv-sql-user-group-on-august-25th/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjohnsterrett.com%2F2011%2F08%2F16%2Fspeaking-at-wv-sql-user-group-on-august-25th%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjohnsterrett.com%2F2011%2F08%2F16%2Fspeaking-at-wv-sql-user-group-on-august-25th%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<div>I look forward to giving my <strong><a href="http://wvpass-aug-2011.eventbrite.com/">Evaluate your Daily Checklist against your SQL Enterprise with PBM and CMS</a> </strong>presentation at the <a href="http://wvpass.sqlpass.org">WV SQL Server User Group</a> in Wheeling, WV on August 25th at the Orrick Building.<strong> </strong></div>
<div>You can still <a href="http://wvpass-aug-2011.eventbrite.com/">sign up</a> and <a href="http://wvpass-aug-2011.eventbrite.com/">registration is free</a>.  In fact, everyone is a winner because there will be free pizza and every user group attendees knows there is no better prize than free pizza!</div>
<h2><strong>Abstract<br />
</strong></h2>
<p>You will walk  away from this session with an understanding of how to use the Policy  Based Management and Central Management Server to complete a daily  checklist against your whole SQL Server farm. We will cover the basics  to evaluate, monitor and apply best practice policies, which are  included out of the box with SQL Server 2008. We will also make custom  policies to cover additional best practices to evaluate daily checklist  items. Finally, we will combine Policy-Based Management and Central  Management Server with the Enterprise Policy Management Framework on  codeplex to automate the monitoring process and create manager friendly  reports to monitor your checklist items against the whole SQL Server  farm.</p>
<div>Session goals include:</div>
<ul>
<li>You will be able to install, configure and run scripts against the Central Management Server</li>
<li>You will be able to use Central Management Server and/or Policy-Based Management to complete a daily checklist</li>
<li>You will be able to evaluate and build custom policies.</li>
</ul>
<p><span style="font-size: medium;"><strong>Bio:<br />
</strong></span><a href="http://johnsterrett.com">John Sterrett</a> is a database administrator at Remote DBA Experts and a member of the Integrations team. John has been active within the SQL Server community, including  hosting the first and second annual SQL Saturday in West Virginia. John also presented a  lightning talk and chalk-talk at the SQL Server 2010 Member Summit,  presented sessions at three SQL Saturday’s, and presented to the  Pittsburgh SQL Server User Group. John is a syndicated blogger at  SQLServerPedia and contributes tips at MSSQLTIPS. You can find his blog  at <a href="http://wvpass-aug-2011.eventbrite.com/">www.johnsterrett.com</a></p>
<div class="shr-publisher-861"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://johnsterrett.com/2011/08/16/speaking-at-wv-sql-user-group-on-august-25th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Woot! I am in InWheeling Magazine</title>
		<link>http://johnsterrett.com/2011/04/20/woot-i-am-in-inwheeling-magazine/</link>
		<comments>http://johnsterrett.com/2011/04/20/woot-i-am-in-inwheeling-magazine/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 13:00:59 +0000</pubDate>
		<dc:creator>johnsterrett</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://johnsterrett.com/?p=664</guid>
		<description><![CDATA[  Recently I was recommended to take part in the &#8220;Digital Generation&#8221; article in a very popular magazine in the Ohio Valley. This was my first invite to participate in a magazine so I was all in.  The article profiled &#8230; <a href="http://johnsterrett.com/2011/04/20/woot-i-am-in-inwheeling-magazine/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjohnsterrett.com%2F2011%2F04%2F20%2Fwoot-i-am-in-inwheeling-magazine%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjohnsterrett.com%2F2011%2F04%2F20%2Fwoot-i-am-in-inwheeling-magazine%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p> </p>
<p style="text-align: center;">
<div id="attachment_748" class="wp-caption aligncenter" style="width: 427px"><a href="http://www.inwheelingmagazine.com/"><img class="size-full wp-image-748 " title="Woot! I am in InWheeling Magazine. Get your copy today!" src="http://johnsterrett.com/wp-content/uploads/2011/04/cover_lo_1_2.jpg" alt="Woot! I am in InWheeling Magazine. Get your copy today!" width="417" height="538" /></a><p class="wp-caption-text">Woot! I am in InWheeling Magazine. Get your copy today!</p></div>
<p>Recently I was recommended to take part in the &#8220;Digital Generation&#8221; article in a very popular magazine in the Ohio Valley. This was my first invite to participate in a magazine so I was all in.  The article profiled several people in the community and explained how digital technologies  impacted their lives. I was shocked to find out I was the only IT Pro selected for this article. We have a lot of great IT Pro&#8217;s in the Ohio Valley so this makes the invite extra sweet.</p>
<p>For fun I am including the published profile and the questions I answered. If you enjoy the clip below and are intersted in how technology has improved Wheeling <a href="http://www.inwheelingmagazine.com/WHERE_TO_BUY.html">buy a copy</a>.</p>
<p><a href="http://johnsterrett.com/wp-content/uploads/2011/04/InWheeling.jpg"><img class="aligncenter size-large wp-image-720" title="InWheeling" src="http://johnsterrett.com/wp-content/uploads/2011/04/InWheeling-480x1024.jpg" alt="" width="480" height="1024" /></a></p>
<p><strong>Q:   We need some basic information: Name as you wish it to appear in the article, Birthplace, Occupation (if willing to share) and Current city of residence.</strong></p>
<p>A: John Sterrett is proud to call Wheeling, WV home. He currently resides in Elm Grove, but was born in Glenwood Springs, CO and moved around a lot as a kid while his dad worked in the oil and gas industry.  John was raised in Bakersfield, CA and went to four high schools in Farmington, NM, Dallas, TX and Houston, TX. He received a Bachelor of Science degree in Computer Engineering at the University of Oklahoma. In his professional career John has had jobs as a software developer and database administrator at Deloitte, highschoolsports.net and Orrick Herrington &amp; Sutcliffe.</p>
<p><strong>Q:   Describe in detail how the digital revolution has affected your life (were you asked to participate in this because of an online business, job, social medium, meeting spouse online, was this the reason you moved to the area, etc.).</strong></p>
<p><strong>A:</strong>In 2006 I moved to Wheeling, WV to work for ScheduleStar, the company that ran highschoolsports.net, as a software developer. I learned a lot about the dotcom industry.  I did well and had a great time. I will always remember Adolph Santorine bringing in investors and introducing me as his Senior Developer.</p>
<p>Recently I have leveraged new technologies and social media to progress my career, professional and personal life more than I would have ever imagined. At work I rely on Twitter to connect, share and learn from database administrators around the world. I can immediately solicit advice to solve problems that arise. I use my online blog to share what I have learned with others in my field. Twitter, Facebook, and blogging also help get the word out about events hosted by the<a href="http://aitp-wheeling.org/testwp2/"> Greater Wheeling Chapter of AITP</a>; without them it would have been impossible to attract professionals to our <a href="http://johnsterrett.com/2010/12/30/first-sqlsaturday-in-wheeling-west-virginia-was-a-success/">first SQL Saturday event</a>, a free conference for SQL users hosted in Wheeling last spring. SQL Saturday brought in 75 attendees, 9 speakers for 13 sessions. In my personal life, we rely on Skype to connect with our family members who live all over the country. It has allowed our parents to share in our excitement as my wife’s pregnancy progresses. Frankly, it’s amazing how much technology is changing how I do things and connect with people. I am constantly plugged in and I’m not sure how I would function without technology.</p>
<p><strong>Q:  Tell us how you stumbled into this?  What were you doing before this impacted your life?<br />
</strong><br />
As a software developer and database administrator I relied on the internet to read about new technologies and innovators within my field. About two years ago I noticed many of my peers were using Twitter and blogging to communicate their ideas and problems. I want to be the best at what I do and beginning to Tweet and starting my own blog followed naturally as I aimed to strengthen my own presence in our field.</p>
<p>From my early youth I have always been interested in computers and despite my parents warnings not to touch our new computer I quickly became the family computer expert at the age of eight; I’ve been hooked on technology ever since. I later taught myself how to develop software by reading books at the public library and used my mother’s business phone at night to run a bulletin board system before the internet became mainstream.</p>
<p><strong>Q:  What would you be doing or where would you be if it were not for the digital impact on you life?</strong></p>
<p><strong>A:</strong>Without Twitter, Facebook, Skype, message boards and blogging I would still be working with technology but I wouldn’t be as efficient or as valuable as I am today.  These technologies have given me a voice in my community and without them I might be the typical IT geek stereotype, a quiet guy with some computer skills who keeps to himself. I would probably need to limit my participation in my professional community because I would have to spend significantly more time, energy and money to promote and attend fewer activities.</p>
<div class="shr-publisher-664"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://johnsterrett.com/2011/04/20/woot-i-am-in-inwheeling-magazine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building a Data Warehouse with SQL Server</title>
		<link>http://johnsterrett.com/2009/09/29/building-a-data-warehouse-with-sql-server/</link>
		<comments>http://johnsterrett.com/2009/09/29/building-a-data-warehouse-with-sql-server/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 19:31:23 +0000</pubDate>
		<dc:creator>johnsterrett</dc:creator>
				<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Data Warehouse]]></category>
		<category><![CDATA[SSAS]]></category>
		<category><![CDATA[SSIS]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://www.johnsterrett.com/?p=65</guid>
		<description><![CDATA[Today, I am going to start a series of blogs on one of my favorite topics Data Warehousing with SQL Server.  I will start by defining a data warehouse.  I will then give some business cases that explain the benefits &#8230; <a href="http://johnsterrett.com/2009/09/29/building-a-data-warehouse-with-sql-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjohnsterrett.com%2F2009%2F09%2F29%2Fbuilding-a-data-warehouse-with-sql-server%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjohnsterrett.com%2F2009%2F09%2F29%2Fbuilding-a-data-warehouse-with-sql-server%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Today, I am going to start a series of blogs on one of my favorite topics Data Warehousing with SQL Server.  I will start by defining a data warehouse.  I will then give some business cases that explain the benefits of a data warehouse.  Finally, I will start writing about  the built in tools SQL Server provides to implement a data warehouse with SQL Server.</p>
<h2>What is a Data Warehouse?</h2>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td width="200" valign="top"><img src="http://farm3.static.flickr.com/2268/2473469841_646e4d2b25.jpg" alt="" width="253" height="190" /></td>
<td width="200" valign="top"><img src="http://farm3.static.flickr.com/2494/3727557494_9014c6302d.jpg" alt="" width="203" height="191" /></td>
</tr>
</tbody>
</table>
<p>In its simplest form a Data Warehouse is a way to store <span style="text-decoration: line-through;">data</span> information and facts in an format that is informational.  Hopefully, you were able to pull this information from the photos above.   Personally, I like to think of a Data Warehouse as a tool used by decision makers to improve decision‐making.</p>
<h2>Business cases for a Data Warehouse</h2>
<p>The following are several <span style="text-decoration: line-through;">reasons</span> business cases that explain how “insert company name here” can benefit from a data warehouse.</p>
<ul>
<li>A Data Warehouse is <em>fast to query</em>. After the initial setup is complete, queries can run up to 1000% faster in an OLAP database than in an OLTP database.</li>
<li>A Data Warehouses <em>improves ROI </em>by allowing end users to make more efficient use of enterprise information so many companies have all the information they need.</li>
<li>A Data Warehouse is a good solution for application’s that are great for data entry but lacks in depth reporting and drilldown capabilities.</li>
<li>A Data Warehouse could be used to bring several applications and/or data sources together.</li>
<li>If you are a service company a data warehouse could be used to analyze work completed to estimate future flat fee engagements. (I can go on and on on these examples&#8230;)</li>
<li>If you already own SQL Server you can implement a data warehouse solution with the built in tools.  This means <strong><em>no additional cost for software is needed</em>.</strong></li>
</ul>
<h2>What tools are needed to Build a Data Warehouse?</h2>
<p>Both SQL Server 2005 and SQL Server 2008 include three tools that are very helpful towards implementing a Data Warehouse. These three tools allow you to create an killer data warehouse.</p>
<ul>
<li>Analysis Services (SSAS)</li>
<li>Integration Services (SSIS)</li>
<li>Reporting Services (SSRS).</li>
</ul>
<p>We will go over these tools in great detail in future posts.  For now, let’s just think of SSAS as the tool that provides storage for the data used in cubes for your data warehouse. SSIS is the tool we will use to extract, transform and load (ETL) data into our data warehouse.  SSRS is a tool used to view the data in our data warehouse.</p>
<p style="text-align: center;">Next post : <a href="http://johnsterrett.com/2009/11/01/introduction-to-dimensions/">Introduction to Data Warehouse Dimensions</a></p>
<div class="shr-publisher-65"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://johnsterrett.com/2009/09/29/building-a-data-warehouse-with-sql-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SQLSaturday Update &amp; Future Presentations</title>
		<link>http://johnsterrett.com/2009/09/29/sqlsaturday-update-future-presentations/</link>
		<comments>http://johnsterrett.com/2009/09/29/sqlsaturday-update-future-presentations/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 19:27:59 +0000</pubDate>
		<dc:creator>johnsterrett</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[SQLServerPedia Syndication]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Greater Wheeling AITP]]></category>
		<category><![CDATA[SQLSaturday]]></category>

		<guid isPermaLink="false">http://www.johnsterrett.com/?p=64</guid>
		<description><![CDATA[I wanted to give a quick update and thank everyone who has responded to my initial posting about bringing SQL Saturday to Wheeling, WV.    I have spoken to a couple technology groups and several individuals and everyone is very supportive &#8230; <a href="http://johnsterrett.com/2009/09/29/sqlsaturday-update-future-presentations/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjohnsterrett.com%2F2009%2F09%2F29%2Fsqlsaturday-update-future-presentations%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjohnsterrett.com%2F2009%2F09%2F29%2Fsqlsaturday-update-future-presentations%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I wanted to give a quick update and thank everyone who has responded to my initial posting about bringing <a href="http://www.johnsterrett.com/2009/08/16/can-sqlsaturday-work-in-wheeling-wv/">SQL Saturday to Wheeling, WV</a>.    I have spoken to a couple technology groups and several individuals and everyone is very supportive of this event.</p>
<p>The following are upcoming work items:</p>
<ol>
<li>Establish a budget</li>
<li>Build a support team that will help with organizing the event.</li>
<li>Find a location and pinpoint a date (tentatively First Quarter 2010.)</li>
</ol>
<p>I look forward to blogging the status of these work items.</p>
<p>On another note, It looks like I will be presenting the following topic “Building a Data Warehouse with SQL Server” twice in November.  I will present first at the <a href="http://www.aitp-wheeling.org">Greater Wheeling Chapter of AITP</a> meeting on November 11th.  I will also give the same presentation at the <a href="http://www.pghtech.org/networks/Pssug/Default.aspx">Pittsburgh SQL Server User Group</a> Meeting on November 16th.</p>
<p>You will soon see a series of blog post that go over building a data warehouse.  You can find the first one <a href="http://www.johnsterrett.com/2009/09/29/building-a-data-warehouse-with-sql-server" target="_blank">here</a>.</p>
<div class="shr-publisher-64"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://johnsterrett.com/2009/09/29/sqlsaturday-update-future-presentations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WD My Passport Review</title>
		<link>http://johnsterrett.com/2009/06/21/wd-my-passport-review/</link>
		<comments>http://johnsterrett.com/2009/06/21/wd-my-passport-review/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 18:53:56 +0000</pubDate>
		<dc:creator>johnsterrett</dc:creator>
				<category><![CDATA[Tech Toys]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnsterrett.com/?p=35</guid>
		<description><![CDATA[This past week I took a trip over to my local Best Buy and decided to purchase a portable hard drive.&#160; I noticed that one of my mentors was using a similar device for hosting Virtual PCs so I thought &#8230; <a href="http://johnsterrett.com/2009/06/21/wd-my-passport-review/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjohnsterrett.com%2F2009%2F06%2F21%2Fwd-my-passport-review%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjohnsterrett.com%2F2009%2F06%2F21%2Fwd-my-passport-review%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://johnsterrett.com/img/WDMyPassportReview_DABB/WDPassport2.jpg"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="WDPassport2" border="0" alt="WDPassport2" src="http://johnsterrett.com/img/WDMyPassportReview_DABB/WDPassport2_thumb.jpg" width="244" height="136" /></a></p>
<p>This past week I took a trip over to my local Best Buy and decided to purchase a <a href="http://www.wdc.com/en/products/products.asp?driveid=391" target="_blank">portable hard drive</a>.&#160; I noticed that one of my <a href="http://philippetruche.wordpress.com/2007/10/19/mobile-workers-best-friends/" target="_blank">mentors</a> was using a similar device for hosting Virtual PCs so I thought I would give it a try.&#160; The following are my initial reasons for purchase:</p>
<ol>
<li>Consolidate Virtual PC’s and Demos </li>
<li>Need to Synchronize documents on multiple computers </li>
<li>Good disk I/O for portable drive </li>
</ol>
<h2></h2>
<h2>Consolidate Virtual PC’s and Demos</h2>
<p>From time to time I do quite a few demos at work, <a href="http://aitp-wheeling.org" target="_blank">AITP</a>, code camp etc.&#160; I want to consolidate all my presentations, sample code, virtual drives etc. so I could repeat a presentation on the go as needed.&#160; This device works great for this purpose.&#160; A benefit of the WD My Passport is that the device is so small it fits in my pockets.&#160; I now take the portable drive almost everywhere I go.&#160; </p>
<h2>Synchronize Documents</h2>
<p>I have many files going all the way back to college on several computers.&#160; I want to be able store and/or modify versions of these files on a single device without having to worry about manual synchronization.&#160; Basically, If I make a modification to a document on the portable device I want to be able to synchronize these changes when I connect the portable hard drive back to the computer that hosts the original version of the file.</p>
<p>The WD Sync application that comes with the WD Passport accomplishes this task.&#160; This application allows you to create profiles for computers and allows you to sync documents, photos, videos, email and more.&#160; I was easily able to modify documents from different computers and sync them back with the original pc.&#160; I am very impressed with WD Sync.&#160; It takes a few minutes to understand the functionality but its a great free tool.</p>
<h2>Test Disk I/O</h2>
<p>Using SQLIO and perfmon I was able to create a quick test to put this portable hard drive to the test.&#160; From the following screen shot below you can see an average disk transfers/sec is 102.093.&#160; This result isn’t great but I believe its workable for a portable hard drive.</p>
<p><a href="http://johnsterrett.com/img/WDMyPassportReview_DABB/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://johnsterrett.com/img/WDMyPassportReview_DABB/image_thumb.png" width="610" height="312" /></a>&#160;</p>
<p>&#160;</p>
<h2>Conclusion</h2>
<p>For only spending $90 I believe this is a good device.&#160; Are you currently using portable hard drives? If so, which model are you are using? What are your favorite features? </p>
<div class="shr-publisher-35"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://johnsterrett.com/2009/06/21/wd-my-passport-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My First Post.</title>
		<link>http://johnsterrett.com/2009/01/29/my-first-post/</link>
		<comments>http://johnsterrett.com/2009/01/29/my-first-post/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 16:43:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnsterrett.com/?p=3</guid>
		<description><![CDATA[Being an IT professional with a focus on the legal industry I am glad to say that I have a place on the web.  With Justin Siebert and Ted Cromwell pleading WordPress I am joining the dark side and leaving &#8230; <a href="http://johnsterrett.com/2009/01/29/my-first-post/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjohnsterrett.com%2F2009%2F01%2F29%2Fmy-first-post%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjohnsterrett.com%2F2009%2F01%2F29%2Fmy-first-post%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Being an IT professional with a focus on the legal industry I am glad to say that I have a place on the web.  With <a title="Justin Seibert" href="http://www.directom.com/bios/justin-seibert.php" target="_blank">Justin Siebert</a> and Ted Cromwell pleading WordPress I am joining the dark side and leaving the Microsoft stack for this blog.  I am primarly a ASP.NET developer and a SQL Server guru. I look forward to communicating with several IT professionals through this site.</p>
<div class="shr-publisher-3"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://johnsterrett.com/2009/01/29/my-first-post/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

