<?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; SQL</title>
	<atom:link href="http://www.jayceooi.com/tag/sql/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>Query linked server on Microsoft SQL 2008</title>
		<link>http://www.jayceooi.com/2009/10/08/query-linked-server-on-microsoft-sql-2008/</link>
		<comments>http://www.jayceooi.com/2009/10/08/query-linked-server-on-microsoft-sql-2008/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 08:43:57 +0000</pubDate>
		<dc:creator>Jayce</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[DB]]></category>
		<category><![CDATA[linked server]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft SQL 2005]]></category>
		<category><![CDATA[Microsoft SQL 2008]]></category>
		<category><![CDATA[openquery]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.jayceooi.com/?p=3832</guid>
		<description><![CDATA[After adding linked server on Microsoft SQL 2008, it&#8217;s time to query data from it. So how to query data from linked server on Microsoft SQL 2008? Just run below query&#8230; SELECT * FROM OPENQUERY (LinkedServerName,&#8217;SELECT * FROM master.sys.servers&#8216;) GO LinkedServerName is the linked server that you want to query from. And replace the query [...]]]></description>
		<wfw:commentRss>http://www.jayceooi.com/2009/10/08/query-linked-server-on-microsoft-sql-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add linked server on Microsoft SQL 2008</title>
		<link>http://www.jayceooi.com/2009/10/08/add-linked-server-on-microsoft-sql-2008/</link>
		<comments>http://www.jayceooi.com/2009/10/08/add-linked-server-on-microsoft-sql-2008/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 08:14:05 +0000</pubDate>
		<dc:creator>Jayce</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[DB]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[IBM DB2]]></category>
		<category><![CDATA[linked server]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft SQL 2005]]></category>
		<category><![CDATA[Microsoft SQL 2008]]></category>
		<category><![CDATA[ODBC]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[sp_addlinkedserver]]></category>
		<category><![CDATA[sp_addlinkedsrvlogin]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.jayceooi.com/?p=3823</guid>
		<description><![CDATA[Want to query data from other database server like Oracle, Access, IBM DB2 or even Microsoft Excel Spreadsheet, ODBC data source and file system? All you need to do is to add them as linked server on Microsoft SQL 2008. And remote stored procedures can be executed too. Run below queries to add linked server [...]]]></description>
		<wfw:commentRss>http://www.jayceooi.com/2009/10/08/add-linked-server-on-microsoft-sql-2008/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SQL ~ Split comma separated data and insert into a table</title>
		<link>http://www.jayceooi.com/2009/09/30/sql-split-comma-separated-data-and-insert-into-a-table/</link>
		<comments>http://www.jayceooi.com/2009/09/30/sql-split-comma-separated-data-and-insert-into-a-table/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 07:42:57 +0000</pubDate>
		<dc:creator>Jayce</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[comma separated]]></category>
		<category><![CDATA[comma separated list]]></category>
		<category><![CDATA[insert into table]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[Split comma separated data]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://www.jayceooi.com/?p=3732</guid>
		<description><![CDATA[I want to insert a list of data that separated by comma like &#8217;1234,2345,3456&#8242; into a SQL table. How do I do that? Well, it is not hard if you know the trick. Here are the codes to do it. DECLARE @pos int, @curruntLocation char(20), @input varchar(2048) SELECT @pos=0 SELECT @input = &#8217;1234,2345,3456&#8242; SELECT @input [...]]]></description>
		<wfw:commentRss>http://www.jayceooi.com/2009/09/30/sql-split-comma-separated-data-and-insert-into-a-table/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<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>How to delete / drop SQL table?</title>
		<link>http://www.jayceooi.com/2008/09/15/how-to-delete-drop-sql-table/</link>
		<comments>http://www.jayceooi.com/2008/09/15/how-to-delete-drop-sql-table/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 06:22:02 +0000</pubDate>
		<dc:creator>Jayce</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[drop]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.jayceooi.com/2008/09/15/how-to-delete-drop-sql-table/</guid>
		<description><![CDATA[How to delete / drop SQL table? The following code will guide you to drop the temporary SQL table. Basically, you just need to type in &#8216;DROP TABLE tableName&#8216;. IF OBJECT_ID(N&#8217;tempdb..#temptable&#8217;, N&#8217;U') IS NOT NULL DROP TABLE #temptable; GO]]></description>
		<wfw:commentRss>http://www.jayceooi.com/2008/09/15/how-to-delete-drop-sql-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create temporary SQL table</title>
		<link>http://www.jayceooi.com/2008/09/15/how-to-create-temporary-sql-table/</link>
		<comments>http://www.jayceooi.com/2008/09/15/how-to-create-temporary-sql-table/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 05:58:34 +0000</pubDate>
		<dc:creator>Jayce</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[temporary]]></category>

		<guid isPermaLink="false">http://www.jayceooi.com/2008/09/15/how-to-create-temporary-sql-table/</guid>
		<description><![CDATA[How to create temporary SQL table? Just look at below CREATE TABLE statement. CREATE TABLE #tempTable ( ID int, Name char(30) ) As you can see, temporary SQL table will have a pound sign (#) in front of the table name. This is a temporary table in SQL server. It is only visible to the [...]]]></description>
		<wfw:commentRss>http://www.jayceooi.com/2008/09/15/how-to-create-temporary-sql-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

