<?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>Jayce Ooi&#039;s Paradise &#187; Programming</title>
	<atom:link href="http://www.jayceooi.com/tag/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jayceooi.com</link>
	<description>Technology, mobile, photography, gaming, programming, anything</description>
	<lastBuildDate>Sat, 11 Feb 2012 10:02:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>SQL ~ Compare 2 tables ~ Find match and different records</title>
		<link>http://www.jayceooi.com/2009/04/14/sql-compare-2-tables-find-match-and-different-records/</link>
		<comments>http://www.jayceooi.com/2009/04/14/sql-compare-2-tables-find-match-and-different-records/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 00:00:22 +0000</pubDate>
		<dc:creator>Jayce</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[different]]></category>
		<category><![CDATA[except]]></category>
		<category><![CDATA[intersect]]></category>
		<category><![CDATA[match]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[record]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.jayceooi.com/?p=2475</guid>
		<description><![CDATA[Hmm&#8230; I have been using SQL for quite some time. But I do not know how to compare 2 tables to find out the different records. For example, I have 2 tables which are table A and table B. Both of them have some similar records. But I want to filter out the different data [...]]]></description>
		<wfw:commentRss>http://www.jayceooi.com/2009/04/14/sql-compare-2-tables-find-match-and-different-records/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>C# ~ How to modify Windows System Registry Values?</title>
		<link>http://www.jayceooi.com/2009/03/06/c-how-to-modify-windows-system-registry-values/</link>
		<comments>http://www.jayceooi.com/2009/03/06/c-how-to-modify-windows-system-registry-values/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 00:00:24 +0000</pubDate>
		<dc:creator>Jayce</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[event log]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[system registry]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows System Registry]]></category>

		<guid isPermaLink="false">http://www.jayceooi.com/?p=2175</guid>
		<description><![CDATA[How to modify Windows System Registry Values with C#? As usual, you need to use Microsoft.Win32 Namespace ~ using Microsoft.Win32;. Let&#8217;s take Windows Application Event Logs values as an example. I want to change the MaxSize and Retention values in Application Event Log file by using C#. Codes to change Windows System Registry values RegistryKey [...]]]></description>
		<wfw:commentRss>http://www.jayceooi.com/2009/03/06/c-how-to-modify-windows-system-registry-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>c# ~ How to read and write Windows System Registry Keys and Values?</title>
		<link>http://www.jayceooi.com/2009/03/05/c-how-to-read-and-write-windows-system-registry-keys-and-values/</link>
		<comments>http://www.jayceooi.com/2009/03/05/c-how-to-read-and-write-windows-system-registry-keys-and-values/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 00:00:31 +0000</pubDate>
		<dc:creator>Jayce</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[HKEY_LOCAL_MACHINE]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[RegistryKey]]></category>
		<category><![CDATA[SCOM]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[Win32]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows System]]></category>
		<category><![CDATA[Windows System Registry]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://www.jayceooi.com/?p=2164</guid>
		<description><![CDATA[How to read and write Windows System Registry Keys and Values? I need to create a value at Windows System Registry for my project lately. It is used for SCOM discovery. I need a Windows System Registry key to determine that the server is the server that SCOM going to monitor. First thing to do [...]]]></description>
		<wfw:commentRss>http://www.jayceooi.com/2009/03/05/c-how-to-read-and-write-windows-system-registry-keys-and-values/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

