<?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"
	>

<channel>
	<title>Calazan.com</title>
	<atom:link href="http://www.calazan.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.calazan.com</link>
	<description>Share the Knowledge</description>
	<pubDate>Sun, 28 Feb 2010 04:12:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>How to check the progress of the &#8216;Shrink Database&#8217; task in SQL Server 2005</title>
		<link>http://www.calazan.com/how-to-check-the-progress-of-the-shrink-database-task-in-sql-server-2005/</link>
		<comments>http://www.calazan.com/how-to-check-the-progress-of-the-shrink-database-task-in-sql-server-2005/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 19:11:46 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[How-To]]></category>

		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=432</guid>
		<description><![CDATA[My first blog post in a long time!
So I archived some data from our database yesterday and I needed to shrink the database file so I ran the &#8220;Shrink Database&#8221; task in Management Studio.  The database is over 500GB in size and I checked 7 hours later and the database shrink operation is still going.  [...]]]></description>
			<content:encoded><![CDATA[<p>My first blog post in a long time!</p>
<p>So I archived some data from our database yesterday and I needed to shrink the database file so I ran the &#8220;Shrink Database&#8221; task in Management Studio.  The database is over 500GB in size and I checked 7 hours later and the database shrink operation is still going.  I got a little worried because someone needs to use this database today and I&#8217;m not sure if the task would be done by then because the GUI is not showing the progress.  I needed to know where the DBCC Shrink operation is currently at or if it&#8217;s even doing anything so I can cancel if it doesn&#8217;t look like it will finish in time.</p>
<p>The next step I took of course is open up Firefox and used my favorite search engine to look for a way to check the progress.  I found <a href="http://blogs.msdn.com/psssql/archive/2008/03/28/how-it-works-sql-server-2005-dbcc-shrink-may-take-longer-than-sql-server-2000.aspx" target="_blank">this website</a> that explained it and all I needed to do is open Query Analyzer and query <strong>sys.dm_exec_requests</strong> and look for <strong>DbccFilesCompact</strong> in the command column.</p>
<p>Here&#8217;s an example:</p>
<pre><span style="font-size: small;"><tt>SELECT percent_complete, start_time, status, command, estimated_completion_time,
cpu_time, total_elapsed_time
FROM sys.dm_exec_requests
</tt></span></pre>
<p>In my case, the percent_complete was already at 94.xxxx and slowly moving so that made me happy.  Going from 94 to the end took about 5 hours, by the way.  The entire operation took around 12 hours.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/how-to-check-the-progress-of-the-shrink-database-task-in-sql-server-2005/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Opportunistic TLS</title>
		<link>http://www.calazan.com/opportunistic-tls/</link>
		<comments>http://www.calazan.com/opportunistic-tls/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 19:42:15 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[SysAdmin]]></category>

		<category><![CDATA[email]]></category>

		<category><![CDATA[encryption]]></category>

		<category><![CDATA[Exchange 2007]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=412</guid>
		<description><![CDATA[We had to upgrade our mail gateway/anti-spam software on Sunday because one of our vendors requires us to use encryption when exchanging emails with them.  The easiest solution is to use opportunistic TLS, where the server will always try to connect to the other server using the TLS protocol.  If the other server supports TLS, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.calazan.com/wp-content/uploads/2009/03/secure_email.jpg"><img class="alignleft size-medium wp-image-422" title="secure_email" src="http://www.calazan.com/wp-content/uploads/2009/03/secure_email.jpg" alt="" width="136" height="140" /></a>We had to upgrade our mail gateway/anti-spam software on Sunday because one of our vendors requires us to use encryption when exchanging emails with them.  The easiest solution is to use opportunistic TLS, where the server will always try to connect to the other server using the TLS protocol.  If the other server supports TLS, then traffic is encrypted.  If not, then the email is sent using just regular SMTP without encryption.</p>
<p>This is actually the first time I&#8217;ve even heard of opportunistic TLS, I&#8217;m used to seeing S/MIME and PGP when reading about email encryption.  What I like about this is encryption/decryption is done on the server side so the users don&#8217;t have to do anything different when sending emails and we don&#8217;t have to issue a certificate to each user and manage the keys.</p>
<p>If you&#8217;re using Exchange Server 2007, opportunistic TLS is already enabled by default.  You can check this by entering <em>Get-SendConnector &#8220;Send Connector Name&#8221; | Format-List</em> in the Exchange Management Shell.  Look for the <strong>IgnoreStartTLS</strong> parameter, if it&#8217;s set to <strong>false</strong> then opportunistic TLS is enabled.</p>
<p>To check whether a server supports TLS, telnet to the server on port 25 and check if the server supports the <strong>STARTTLS</strong> command, for example:</p>
<p><em>telnet mail.global.frontbridge.com 25</em></p>
<div id="attachment_419" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.calazan.com/wp-content/uploads/2009/03/smtp_tls.png"><img class="size-medium wp-image-419" title="smtp_tls" src="http://www.calazan.com/wp-content/uploads/2009/03/smtp_tls-300x150.png" alt="" width="300" height="150" /></a><p class="wp-caption-text">This server supports TLS</p></div>
<p>Here&#8217;s an example of the header of an email that was delivered with TLS enabled (I modified the IP addresses and names for privacy reasons):</p>
<p><em>Received: from mailgateway01 (1.2.3.4) by mailserver01.domain.com (1.2.3.5)<br />
with <strong>Microsoft SMTP Server (TLS)</strong> id 8.1.263.0; Mon, 16 Mar 2009 18:05:18<br />
-0400<br />
Received: from mail.global.frontbridge.com ([65.55.88.22]) by mail.somedomain.com<br />
([1.2.3.4]) with ESMTP (TREND IMSS SMTP Service 7.0; <strong>TLS:<br />
TLSv1/SSLv3,128bits,AES128-SHA</strong>) id 06456c96000057da for &lt;jdoe@microsoft.com&gt;;<br />
Mon, 16 Mar 2009 18:05:16 -0500</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/opportunistic-tls/feed/</wfw:commentRss>
		</item>
		<item>
		<title>RSA SecurID 3.0.2 for BlackBerry</title>
		<link>http://www.calazan.com/rsa-securid-302-for-blackberry/</link>
		<comments>http://www.calazan.com/rsa-securid-302-for-blackberry/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 00:31:51 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[Mobile]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[BlackBerry]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=401</guid>
		<description><![CDATA[My colleague informed me earlier that RSA just released this new version of their SecurID software for BlackBerry sometime last month.  I installed it right away on my BlackBerry 8330 with OS v4.5.0.131 and it finally worked!!!  I&#8217;ve been trying to get their software to work on my BlackBerry since last year but my OS [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.calazan.com/wp-content/uploads/2009/03/rsa_blackberry.jpg"><img class="alignleft size-thumbnail wp-image-404" title="rsa_blackberry" src="http://www.calazan.com/wp-content/uploads/2009/03/rsa_blackberry-140x150.jpg" alt="" width="140" height="150" /></a>My colleague informed me earlier that RSA just released this new version of their SecurID software for BlackBerry sometime last month.  I installed it right away on my BlackBerry 8330 with OS v4.5.0.131 and it finally worked!!!  I&#8217;ve been trying to get their software to work on my BlackBerry since last year but my OS wasn&#8217;t supported.</p>
<p>This new version also now supports RIM OS version 4.7, so if you have a BlackBerry Storm this should work.</p>
<p>You can download the software from here: <a title="RSA SecurID for BlackBerry" href="http://www.rsa.com/node.aspx?id=1165" target="_blank">http://www.rsa.com/node.aspx?id=1165</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/rsa-securid-302-for-blackberry/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to automate Microsoft Office 2007 installation</title>
		<link>http://www.calazan.com/how-to-automate-microsoft-office-2007-installation/</link>
		<comments>http://www.calazan.com/how-to-automate-microsoft-office-2007-installation/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 00:53:25 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[How-To]]></category>

		<category><![CDATA[SysAdmin]]></category>

		<category><![CDATA[PowerShell]]></category>

		<category><![CDATA[scripting]]></category>

		<category><![CDATA[Windows admin]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=337</guid>
		<description><![CDATA[I was just updating some documentation on our wiki and found some old notes on automating Office 2007 installation.  We upgraded our Microsoft Office software early last year from Office 2003 (and a few Office XP) to Office 2007 and this simple installation script saved us a lot of time. Here are the steps:
Step 1.  [...]]]></description>
			<content:encoded><![CDATA[<p>I was just updating some documentation on our wiki and found some old notes on automating Office 2007 installation.  We upgraded our Microsoft Office software early last year from Office 2003 (and a few Office XP) to Office 2007 and this simple installation script saved us a lot of time. Here are the steps:</p>
<p><strong>Step 1.  Copy the contents of the Office 2007 installation CD (or package) to a network share </strong>(eg. \\server\Office12)<strong>.</strong></p>
<p><strong>Step 2.  Run the Office Customization Tool and create a setup customization file </strong>(I got these instructions from a BDD 2007 document on Microsoft&#8217;s website)<strong>.</strong></p>
<p><span id="more-337"></span></p>
<ol>
<li><strong>Run the Office Customization Tool</strong>
<ol>
<li>Go to <strong>Start</strong>-&gt;<strong>Run</strong></li>
<li>Type the following command:  <strong>\\server\Office12\setup.exe /admin</strong></li>
</ol>
</li>
<li><strong>Create a setup customization file</strong>
<ol>
<li>In Office Customization Tool, Click OK to create a new setup file.</li>
<li>Specify the Installation Path, Organization Name</li>
<li>Add the network share location of the Office 2007 Installation Files Shared Folder. <strong>\\server\Office12 </strong></li>
<li>Specify the Product Key and Accept the License Agreement. And Modify the Display Options.</li>
<li>Configure other options</li>
<li>Finally, Click File, Save As, and save the Setup Customization File to Office12\Updates Folder</li>
<li>Close the Office Customization Tool</li>
</ol>
</li>
</ol>
<p><strong>Step 3.</strong> Download and install <a title="Download PowerShell" href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/download.mspx" target="_blank">PowerShell</a>.</p>
<p><strong>Step 4. </strong>Download and install <a title="PsExec" href="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx" target="_blank">PsExec</a>.</p>
<p><strong>Step 5. </strong>Open a text editor (WordPad or Notepad is fine) and use the sample script below.  Save the file as <em>office_2007_install.ps1</em>.</p>
<p style="padding-left: 30px;"><em>$hostname = &#8220;comp1&#8243;,&#8221;comp2&#8243;,&#8221;comp3&#8243; </em></p>
<p style="padding-left: 30px;"><em>foreach ($i in $hostname)<br />
</em><em>{<br />
&amp;&#8221;c:\psexec\psexec.exe&#8221; -s \\$i \\server\office12\setup.exe /adminfile cust_file.msp<br />
}</em></p>
<p>Replace comp1&#8230;comp3 with the computer&#8217;s hostname or IP addresss.</p>
<p><strong>Note:</strong> You can also pull the list of computers/IP addresses from a text file (one entry per line) by doing something like <em>$hostname = Get-Content c:\computers.txt</em>.</p>
<p><strong>Step 6. </strong>Schedule the script in Task Scheduler</p>
<p style="padding-left: 30px;"><em>c:\windows\system32\WindowsPowerShell\v1.0\powershell.exe -noexit &#8220;c:\office_2007_install.ps1</em>&#8220;</p>
<p><strong><br />
Some suggestions:</strong></p>
<ul>
<li>Let your users know ahead of time when you are planning on upgrading their Office software.  They may be working on a project and can&#8217;t afford to lose any time adjusting to the new version.</li>
<li>Send these links (Interactive 2003 to 2007 Command Reference Guide) to your users before you upgrade their Office applications so there are no surprises when they first use Office 2007:
<ul>
<li><strong>Word:</strong> <a href="http://office.microsoft.com/en-us/word/HA100744321033.aspx" target="_blank">http://office.microsoft.com/en-us/word/HA100744321033.aspx</a></li>
<li><strong>Excel:</strong> <a href="http://office.microsoft.com/en-us/excel/HA101491511033.aspx" target="_blank">http://office.microsoft.com/en-us/excel/HA101491511033.aspx</a></li>
<li><strong>PowerPoint:</strong> <a href="http://office.microsoft.com/en-us/powerpoint/HA101490761033.aspx" target="_blank">http://office.microsoft.com/en-us/powerpoint/HA101490761033.aspx</a></li>
<li><strong>Outlook:</strong> <a href="http://office.microsoft.com/en-us/outlook/HA102221621033.aspx" target="_blank">http://office.microsoft.com/en-us/outlook/HA102221621033.aspx</a></li>
</ul>
</li>
<li>Start with a small group of computers so if you discover a problem (eg. software conflict) there will be minimal interruption.  For example, start with 5 computers and if there are no problems then increase it to 10 computers for the next batch, then 20, then 40, and so on.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/how-to-automate-microsoft-office-2007-installation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Desktop, Network, and Windows skills in demand?</title>
		<link>http://www.calazan.com/desktop-network-and-windows-skills-in-demand/</link>
		<comments>http://www.calazan.com/desktop-network-and-windows-skills-in-demand/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 00:58:44 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[Careers]]></category>

		<category><![CDATA[IT skills]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=375</guid>
		<description><![CDATA[Desktop support ranked as the most wanted skill sets for 76% of CIOs, with network and Windows administration taking the second and third slots with 65% and 64%, respectively.    Database management is considered hot for 55% of respondents, and telecommunications support and wireless network management    was selected by 47% [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Desktop support ranked as the most wanted <a href="http://www.networkworld.com/news/2008/041708-careers.html">skill sets</a> for 76% of CIOs, with network and Windows administration taking the second and third slots with 65% and 64%, respectively.    Database management is considered hot for 55% of respondents, and telecommunications support and wireless network management    was selected by 47% and 46% of CIOs polled, respectively. Rounding out those skills seen as in demand are Web development/Web    site design (39%), virtualization (35%) and business intelligence (31%).</p></blockquote>
<p><a title="Network skills in demand, pay well in down economy" href="http://www.networkworld.com/news/2009/030409-network-skills.html?hpg1=bn" target="_blank">Full Article</a></p>
<p>The study is based on data gathered from about 300 clients with $200 million or more in revenue, according to Network World.</p>
<p>I&#8217;m actually a bit surprised with the findings.  I didn&#8217;t expect desktop support to be the most wanted skill, I was expecting virtualization to be at the top because of all the cost/time savings virtualization can provide.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/desktop-network-and-windows-skills-in-demand/feed/</wfw:commentRss>
		</item>
		<item>
		<title>100,000 Miles!</title>
		<link>http://www.calazan.com/100000-miles/</link>
		<comments>http://www.calazan.com/100000-miles/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 00:59:20 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=370</guid>
		<description><![CDATA[
I was driving to work this morning and noticed my car just reached 100,000 miles!  I pulled out my BlackBerry and took a quick picture at the next stop light.  The picture is really blurry though.
Hoping to get another 100,000 miles from this car!
]]></description>
			<content:encoded><![CDATA[<div id="attachment_371" class="wp-caption alignleft" style="width: 160px"><a href="http://www.calazan.com/wp-content/uploads/2009/03/100000_miles.jpg"><img class="size-thumbnail wp-image-371" title="100000_miles" src="http://www.calazan.com/wp-content/uploads/2009/03/100000_miles-150x150.jpg" alt="100,000 Miles!" width="150" height="150" /></a><p class="wp-caption-text">100,000 Miles!</p></div>
<p>I was driving to work this morning and noticed my car just reached 100,000 miles!  I pulled out my BlackBerry and took a quick picture at the next stop light.  The picture is really blurry though.</p>
<p>Hoping to get another 100,000 miles from this car!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/100000-miles/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tweet from your BlackBerry</title>
		<link>http://www.calazan.com/tweet-from-your-blackberry/</link>
		<comments>http://www.calazan.com/tweet-from-your-blackberry/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 02:13:48 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[Mobile]]></category>

		<category><![CDATA[BlackBerry]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=363</guid>
		<description><![CDATA[
If you&#8217;re looking for a Twitter application for your BlackBerry, I recommend that you give Tiny Twitter a try.  It has a nice user interface, plenty of options, and supports keyboard shortcuts.
This is the first mobile Twitter application that I&#8217;ve tried and I&#8217;m not really planning on trying the other ones out there because I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_364" class="wp-caption alignleft" style="width: 160px"><a href="http://www.calazan.com/wp-content/uploads/2009/03/tinytwitter.jpg"><img class="size-thumbnail wp-image-364" title="tinytwitter" src="http://www.calazan.com/wp-content/uploads/2009/03/tinytwitter-150x150.jpg" alt="Tiny Twitter" width="150" height="150" /></a><p class="wp-caption-text">Tiny Twitter</p></div>
<p>If you&#8217;re looking for a Twitter application for your BlackBerry, I recommend that you give <a title="Tiny Twitter" href="http://www.tinytwitter.com/" target="_blank">Tiny Twitter</a> a try.  It has a nice user interface, plenty of options, and supports keyboard shortcuts.</p>
<p>This is the first mobile Twitter application that I&#8217;ve tried and I&#8217;m not really planning on trying the other ones out there because I&#8217;m happy with this one already.  It does pretty much all the Twitter-related functions that I need, but I&#8217;m still pretty new to Twitter so I&#8217;m not sure if this is good enough for the heavy Twitter users.</p>
<p>Here are some of the options that are available: Update, Tweet, Access Links, Reply, Direct, Retweet, User Timeline, Unfollow, Delete, Inbox, Nearby Twitter Peeps, What&#8217;s Hot, Search, Hide Friends.</p>
<p>Happy Tweeting!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/tweet-from-your-blackberry/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter</title>
		<link>http://www.calazan.com/twitter/</link>
		<comments>http://www.calazan.com/twitter/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 22:28:49 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Twitter]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.calazan.com/?p=357</guid>
		<description><![CDATA[I just created a Twitter account.  I&#8217;ve been seeing a lot of articles about it lately so I decided to finally give it a try.  I&#8217;m still not sure whether I&#8217;m gonna keep using it, but so far I&#8217;m liking it a lot.  Very simple and easy to use and it looks like it will [...]]]></description>
			<content:encoded><![CDATA[<p>I just created a <a title="Twitter" href="http://en.wikipedia.org/wiki/Twitter" target="_blank">Twitter</a> account.  I&#8217;ve been seeing a lot of articles about it lately so I decided to finally give it a try.  I&#8217;m still not sure whether I&#8217;m gonna keep using it, but so far I&#8217;m liking it a lot.  Very simple and easy to use and it looks like it will be a good complement to my blog.</p>
<p>The first thing that actually came to mind when I signed up for an account was how to integrate it with my blog.  I found a WordPress plugin called &#8220;<a title="Twitter Tools" href="http://alexking.org/projects/wordpress/readme?project=twitter-tools" target="_blank">Twitter Tools</a>&#8221; and installed it right away.  It seems to work pretty well, you can also use it to post a &#8220;tweet&#8221; directly from your WordPress blog and you can even set it to notify Twitter every time you write a new post.</p>
<p>You can view my latest tweets on the sidebar on the right.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.calazan.com/twitter/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
