<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Viral Project</title>
	<atom:link href="http://viralvariance.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://viralvariance.wordpress.com</link>
	<description>Technology, Adventure, Reviews... Anything Serious</description>
	<lastBuildDate>Tue, 08 Mar 2011 13:11:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='viralvariance.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The Viral Project</title>
		<link>http://viralvariance.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://viralvariance.wordpress.com/osd.xml" title="The Viral Project" />
	<atom:link rel='hub' href='http://viralvariance.wordpress.com/?pushpress=hub'/>
		<item>
		<title>File-based Swap for Linux</title>
		<link>http://viralvariance.wordpress.com/2010/10/28/file-based-swap-for-linux/</link>
		<comments>http://viralvariance.wordpress.com/2010/10/28/file-based-swap-for-linux/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 04:47:28 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[swap]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/?p=145</guid>
		<description><![CDATA[You forgot to create a swap filesystem on Linux, and you don&#8217;t know or don&#8217;t want to use fdisk to repartition a disk and create swap space. What do you do? Fortunately, you still have a chance of saving your job. 1. Logon as root 2. Create a new directory anywhere that you prefer to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=145&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You forgot to create a swap filesystem on Linux, and you don&#8217;t know or don&#8217;t want to use fdisk to repartition a disk and create swap space.</p>
<p>What do you do?</p>
<p>Fortunately, you still have a chance of saving your job.</p>
<p>1. Logon as root</p>
<p>2. Create a new directory anywhere that you prefer to use as swap fs. I prefer creating under the root directory and name it as /swapfs</p>
<p><code>mkdir /swapfs</code></p>
<p>3. We will create a data dump of a bunch of zeroes and store it in a X-bytes worth of file. The X-bytes will represent the size of swap file that you want or need. What is the ideal size? My answer has always been, it depends! If its just your PC for browsing the internet etc&#8230;, same size with your RAM will do. If its a database server, you may not want to use swap intensively, so blow up your RAM instead. I typically benchmark it from half of my RAM, to even twice my RAM. Again, it depends on what type application is running on your server or PC.</p>
<p><code>dd if=/dev/zero of=/swapfs/swap bs=1M count=4096</code></p>
<p>I am creating here a 1 megabyte swap file. It will create a file named swap under the directory /swapfs</p>
<p>4. I&#8217;ll now assign /swapfs/swap file as a SWAP space</p>
<p><code>mkswap /swapfs/swap</code></p>
<p>5. Of course, that is not enough, you have to enable it</p>
<p><code>swapon /swapfs/swap</code></p>
<p>If you&#8217;ll issue a df command, you&#8217;d be able to see the new swap filesystem, and the top command will also display the additional swap space.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=145&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2010/10/28/file-based-swap-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Wait Classes</title>
		<link>http://viralvariance.wordpress.com/2010/10/28/oracle-wait-classes/</link>
		<comments>http://viralvariance.wordpress.com/2010/10/28/oracle-wait-classes/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 04:33:17 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Wait Events]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/?p=143</guid>
		<description><![CDATA[Here is my favorite SQL  on getting a feel of what is slowing my system down select wait_class, sum(total_waits), sum(time_waited), round(sum(time_waited)/sum(total_waits),2) WAIT_TIME_PER_TXN from V$SERVICE_WAIT_CLASS where service_name='RECONPRD' group by wait_class order by sum(time_waited)/sum(total_waits) desc This would immediately tell me how much time is spent (or &#8220;wasted&#8221;) on any DB component. As a DBA, it would be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=143&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is my favorite SQL  on getting a feel of what is slowing my system down</p>
<p><code><br />
select wait_class, sum(total_waits), sum(time_waited), round(sum(time_waited)/sum(total_waits),2) WAIT_TIME_PER_TXN<br />
from V$SERVICE_WAIT_CLASS<br />
where service_name='RECONPRD' group by wait_class<br />
order by sum(time_waited)/sum(total_waits) desc</code></p>
<p>This would immediately tell me how much time is spent (or &#8220;wasted&#8221;) on any DB component.</p>
<p>As a DBA, it would be of interest to me to maintain wait classes that are high on Administrative, Configuration, Concurrency. I would definitely hit the programmers when it comes Application-related wait events, and the System Administrators for Disk I/O related wait times.</p>
<p>1. Administrative &#8211; Commands issued by a privileged user (that is, DBA) that result in other users waiting—an index rebuild, for example.<br />
2. Application  &#8211; Generally related to application design, this category includes lock waits caused by row-level locking and explicit or implicit lock commands (implicit lock commands such as those generated by a DDL statement).<br />
3. Cluster  Global cache, global enqueue, and global messaging – related wait events in a RAC environment.<br />
4. Commit -  Currently only includes a wait event for redo log sync confirmation after a commit.<br />
5. Concurrency -  Generally, waits involving concurrent parsing and buffer cache latch and lock contention; indicative of many sessions going after the same resources.<br />
6. Configuration -  Wait events in this category can generally be resolved by tuning; includes undersized log buffer space, logfile sizes, buffer cache size, shared pool size, ITL allocation, HW enqueue contention, ST enqueue contention, and so on.<br />
7. Idle  Session is inactive.<br />
8. Other  &#8211; Catchall for wait events not associated with one of the predefined classes.<br />
9. Network  &#8211; Waits for data to be sent over the network—specifically waits in the networking layer or on hardware.<br />
10. Scheduler -  Waits due to Resource Manager prioritization.<br />
11. System I/O  &#8211; Waits on I/O done by background processes (except for MMON and SMON).<br />
12. User I/O -  Wait for blocks to be read off disk by foreground process, SMON, or MMON.</p>
<p>References:</p>
<p><a href="http://oracle-dox.net/McGraw.Hill-Oracle.Database.101/8171/DDU0037.html"> Oracle-Dox.Net </a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=143&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2010/10/28/oracle-wait-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>
	</item>
		<item>
		<title>Beach Kids</title>
		<link>http://viralvariance.wordpress.com/2010/08/03/beach-kids/</link>
		<comments>http://viralvariance.wordpress.com/2010/08/03/beach-kids/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 14:33:10 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Sepia]]></category>
		<category><![CDATA[Cebu]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/?p=140</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=140&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Berks" src="http://farm5.static.flickr.com/4150/4841179608_2d086d6fb5_b.jpg" alt="Berks" width="1024" height="683" /></p>
<p><img class="alignnone" title="Pre-Backflip" src="http://farm5.static.flickr.com/4154/4841170048_65f3997bb8_b.jpg" alt="Pre-Backflip" width="1024" height="683" /></p>
<div class="wp-caption alignnone" style="width: 1034px"><img title="Backflip" src="http://farm5.static.flickr.com/4103/4841174952_5f0e81840d_b.jpg" alt="Backflip" width="1024" height="683" /><p class="wp-caption-text">Backflip</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=140&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2010/08/03/beach-kids/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4150/4841179608_2d086d6fb5_b.jpg" medium="image">
			<media:title type="html">Berks</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4154/4841170048_65f3997bb8_b.jpg" medium="image">
			<media:title type="html">Pre-Backflip</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4103/4841174952_5f0e81840d_b.jpg" medium="image">
			<media:title type="html">Backflip</media:title>
		</media:content>
	</item>
		<item>
		<title>Failed Implementation of New Buffer Pool on DB2 UDB v8</title>
		<link>http://viralvariance.wordpress.com/2010/05/03/failed-implementation-of-new-buffer-pool-on-db2-udb-v8/</link>
		<comments>http://viralvariance.wordpress.com/2010/05/03/failed-implementation-of-new-buffer-pool-on-db2-udb-v8/#comments</comments>
		<pubDate>Mon, 03 May 2010 06:36:37 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[DB2]]></category>
		<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/?p=136</guid>
		<description><![CDATA[We had this experience when we tried to create a new bufferpool on DB2 v8 running on an AIX v5.3 server, wherein we noticed that the bufferpool creation is taking time, and we had to cancel it. The reason for this is that an incorrect parameter was submitted, specifically the size of the buffer pool. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=136&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We had this experience when we tried to create a new bufferpool on DB2 v8 running on an AIX v5.3 server, wherein we noticed that the bufferpool creation is taking time, and we had to cancel it. The reason for this is that an incorrect parameter was submitted, specifically the size of the buffer pool. The size of the buffer pool being created was 256GB and we only had 24GB of RAM.</p>
<p>After canceling the creation, we can no longer use the server, and that we had to to do a db2_kill. We had to reboot the server, restart DB2 via Db2start. The other databases will start  after  a successful crash recovery, but the last one, where we created the BP, would then trigger the memory and paging space usage high again.</p>
<p>this is when we discovered that since crash recovery makes use of archive logs to recover, it tries to redo the create bufferpool, thus we cannot start the database. Fortunately, we found a site on IBM specifically  dealing with this case.</p>
<p>We had to stop DB2, and issue a</p>
<p>db2iupdt -w 32 &lt;instance name&gt;</p>
<p>This converts the instance to 32-bit mode, which is immune to this case of irregular size of buffer pool. You can now startup  db2 normally. To move forward the archive log recovery, we had to run a backup, for the database to recognize a new set of archive logs and not to read the old logs with the create BP statement. After the backup, we reverted back to 64-bit mode by issuing</p>
<p>db2iupdt -w 64 &lt;instance name&gt;</p>
<p>We were then able to recover the Database with no damage data.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=136&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2010/05/03/failed-implementation-of-new-buffer-pool-on-db2-udb-v8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>
	</item>
		<item>
		<title>Grotto. Boracay, Philippines</title>
		<link>http://viralvariance.wordpress.com/2009/12/02/grotto-boracay-philippines/</link>
		<comments>http://viralvariance.wordpress.com/2009/12/02/grotto-boracay-philippines/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 15:58:19 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[Boracay]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/2009/12/02/grotto-boracay-philippines/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=135&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 693px"><img title="Grotto @ Boracay" src="http://farm3.static.flickr.com/2521/4132857911_bfe5b9587d_b.jpg" alt="Grotto @ Boracay" width="683" height="1024" /><p class="wp-caption-text">Grotto @ Boracay</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=135&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2009/12/02/grotto-boracay-philippines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2521/4132857911_bfe5b9587d_b.jpg" medium="image">
			<media:title type="html">Grotto @ Boracay</media:title>
		</media:content>
	</item>
		<item>
		<title>Subaru Impreza Challenge</title>
		<link>http://viralvariance.wordpress.com/2009/11/18/subaru-impreza-challenge/</link>
		<comments>http://viralvariance.wordpress.com/2009/11/18/subaru-impreza-challenge/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 15:07:26 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Living]]></category>
		<category><![CDATA[Subaru Impreza]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/?p=133</guid>
		<description><![CDATA[I&#8217;m planning on purchasing a Subaru Impreza RS 2.0 MT. However, I&#8217;m bothered with its TCO (total cost of ownership) I&#8217;m referring to incidental costs (e.g. repairs on top of the regular maintenance costs), because we can always budget or prepare for the maintenance costs (operating expenses) Anyone?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=133&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m planning on purchasing a Subaru Impreza RS 2.0 MT. However, I&#8217;m bothered with its TCO (total cost of ownership)</p>
<p>I&#8217;m referring to incidental costs (e.g. repairs on top of the regular maintenance costs), because we can always budget or prepare for the maintenance costs (operating expenses)</p>
<p>Anyone?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=133&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2009/11/18/subaru-impreza-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>
	</item>
		<item>
		<title>SPSS Doesn&#8217;t Know Its Addition</title>
		<link>http://viralvariance.wordpress.com/2009/11/16/spss-doesnt-know-its-addition/</link>
		<comments>http://viralvariance.wordpress.com/2009/11/16/spss-doesnt-know-its-addition/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 16:14:40 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[SPSS]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/?p=131</guid>
		<description><![CDATA[&#160; Try adding up the values on the Frequency field and see if it matches the total &#160; &#160; &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=131&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<div class="wp-caption alignnone" style="width: 1290px"><img title="Stupid SPSS" src="http://farm4.static.flickr.com/3569/3337726199_365256c5f1_o.jpg" alt="Stupid SPSS" width="1280" height="800" /><p class="wp-caption-text">Stupid SPSS</p></div>
<p>Try adding up the values on the Frequency field and see if it matches the total</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=131&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2009/11/16/spss-doesnt-know-its-addition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3569/3337726199_365256c5f1_o.jpg" medium="image">
			<media:title type="html">Stupid SPSS</media:title>
		</media:content>
	</item>
		<item>
		<title>Kia Soul @ CEL 2009 World Trade Center</title>
		<link>http://viralvariance.wordpress.com/2009/11/15/kia-soul-cel-2009-world-trade-center/</link>
		<comments>http://viralvariance.wordpress.com/2009/11/15/kia-soul-cel-2009-world-trade-center/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 14:00:01 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Living]]></category>
		<category><![CDATA[Kia Soul]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/?p=128</guid>
		<description><![CDATA[Kia Soul is quite tempting. I&#8217;m tempted to acquire this over an Honda Civic. Let&#8217;s see what would be the result of my test drive tomorrow!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=128&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Kia Soul is quite tempting. I&#8217;m tempted to acquire this over an Honda Civic. Let&#8217;s see what would be the result of my test drive tomorrow!</p>
<div class="wp-caption alignnone" style="width: 510px"><img title="Kia Soul 2009" src="http://farm3.static.flickr.com/2657/4105150305_64f105c4f8_o.jpg" alt="Kia Soul 2009" width="500" height="375" /><p class="wp-caption-text">Kia Soul 2009</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=128&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2009/11/15/kia-soul-cel-2009-world-trade-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2657/4105150305_64f105c4f8_o.jpg" medium="image">
			<media:title type="html">Kia Soul 2009</media:title>
		</media:content>
	</item>
		<item>
		<title>Compressing Oracle Tables in Oracle 11g R2</title>
		<link>http://viralvariance.wordpress.com/2009/11/15/compressing-oracle-tables-in-oracle-11g-r2/</link>
		<comments>http://viralvariance.wordpress.com/2009/11/15/compressing-oracle-tables-in-oracle-11g-r2/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 06:04:44 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Oracle 11g]]></category>
		<category><![CDATA[Table Compression]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/?p=125</guid>
		<description><![CDATA[Here&#8217;s a neat trick I learned on Oracle 11g R2. Compressing Oracle tables alter table mytable move compress; Compression depends on the cardinality of data per field on your table. The more that a value repeats itself on a field, the higher the compression is. As i understand it, the algorithm is highly similar with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=125&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a neat trick I learned on Oracle 11g R2. Compressing Oracle tables</p>
<p><code>alter table mytable move compress;<br />
</code><br />
Compression depends on the cardinality of data per field on your table. The more that a value repeats itself on a field, the higher the compression is. As i understand it, the algorithm is highly similar with how compression works on Winzip and Gzip.</p>
<p>On one of my produciton tables, I was able to achieve almost 10x compression (a 9.2GB table was compressed to 1GB).</p>
<p>Compression comes at a price though, Read-write will be penalized as the application has to decompress the table prior to writing.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=125&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2009/11/15/compressing-oracle-tables-in-oracle-11g-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>
	</item>
		<item>
		<title>SAS PROC EXPORT via terminal: proc export cannot open X display</title>
		<link>http://viralvariance.wordpress.com/2009/11/15/sas-proc-export-via-terminal-proc-export-cannot-open-x-display/</link>
		<comments>http://viralvariance.wordpress.com/2009/11/15/sas-proc-export-via-terminal-proc-export-cannot-open-x-display/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 06:00:22 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[SAS]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://viralvariance.wordpress.com/?p=123</guid>
		<description><![CDATA[This error will appear if you have a SAS batch job that triggers a proc export via shell (on Unix systems e.g. HP-UX, AIX, RHEL), or you are simply on the SAS command shell, and x-window is not enabled on your client PC. To resolve this, save the job on a text file and save [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=123&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This error will appear if you have a SAS batch job that triggers a proc export via shell (on Unix systems e.g. HP-UX, AIX, RHEL), or you are simply on the SAS command shell, and x-window is not enabled on your client PC.</p>
<p>To resolve this, save the job on a text file and save it as .sas file.</p>
<p>Trigger your job by using the ff command</p>
<p><code>!SASROOT/sas -sysin yourprogram.sas -noterminal</code></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viralvariance.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viralvariance.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viralvariance.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viralvariance.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viralvariance.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viralvariance.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viralvariance.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viralvariance.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viralvariance.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viralvariance.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viralvariance.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viralvariance.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viralvariance.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viralvariance.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viralvariance.wordpress.com&amp;blog=6966576&amp;post=123&amp;subd=viralvariance&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viralvariance.wordpress.com/2009/11/15/sas-proc-export-via-terminal-proc-export-cannot-open-x-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ad11a0f5240451872c733d1e485034f?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">viralvariance</media:title>
		</media:content>
	</item>
	</channel>
</rss>
