<?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>Jamey Johnston</title>
	<atom:link href="http://blog.jameyjohnston.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.jameyjohnston.com</link>
	<description>Blog for IT Pros who like bits about bytes!</description>
	<lastBuildDate>Tue, 05 Oct 2010 04:02:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Quote Delimiter in Oracle</title>
		<link>http://blog.jameyjohnston.com/?p=27</link>
		<comments>http://blog.jameyjohnston.com/?p=27#comments</comments>
		<pubDate>Tue, 05 Oct 2010 02:51:33 +0000</pubDate>
		<dc:creator>jameyj</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[quote delimiter]]></category>
		<category><![CDATA[special characters]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://blog.jameyjohnston.com/?p=27</guid>
		<description><![CDATA[I hardly ever use the quote delimiter in Oracle. This is actually quite useful though if you have a lot of special characters and single-quotes to work with in your SQL statements. (You don&#8217;t have to use the dreaded &#8221; to get a &#8216; every time!) To use the quote delimiter (Syntax: q&#8217;&#60;delim&#62; Text you [...]]]></description>
			<content:encoded><![CDATA[<p>I hardly ever use the quote delimiter in Oracle. This is actually quite useful though if you have a lot of special characters and single-quotes to work with in your SQL statements. (You don&#8217;t have to use the dreaded &#8221; to get a &#8216; every time!)</p>
<p>To use the quote delimiter (Syntax: q&#8217;&lt;delim&gt; Text you want &lt;delim&gt;&#8217;) in Oracle you can do the following:</p>
<p>&#8211; To ignore &amp;, set define  off<br />
set define off</p>
<p>&#8211; The use the quote delimiter</p>
<p>insert into  x(col1, col2) values (&#8216;abc&#8217;, q&#8217;#This&#8217;s is how we do it &amp; yes it&#8217;s  cool!#&#8217;);</p>
<p>NOTE: The pound &#8220;#&#8221; character is the delimiter in this example but you can use whatever you like as long as it is not in the string.</p>
<p>Here is an Example to better illustrate how it is used:</p>
<pre>
SQL&gt; create table x(col1  varchar2(10), col2 varchar2(128));

Table created.

SQL&gt; set  define off
SQL&gt; insert into x(col1, col2)
    values ('abc', q'#This's is how  we do it &amp; yes it's cool!#');

1 row created.

SQL&gt; select *  from x;

COL1
<hr />COL2
<hr />abc
This's is how we do it &amp; yes it's cool!

SQL&gt;
</pre>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jameyjohnston.com/?feed=rss2&#038;p=27</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Installed!</title>
		<link>http://blog.jameyjohnston.com/?p=20</link>
		<comments>http://blog.jameyjohnston.com/?p=20#comments</comments>
		<pubDate>Sun, 19 Sep 2010 03:38:47 +0000</pubDate>
		<dc:creator>jameyj</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.jameyjohnston.com/?p=20</guid>
		<description><![CDATA[Could it be any easier to install WordPress into an existing provider? I had it up and running in about 5 minutes like they say in the install page. Now I just have to make it pretty and useful (i.e. add real content)!]]></description>
			<content:encoded><![CDATA[<p>Could it be any easier to install WordPress into an existing provider? I had it up and running in about 5 minutes like they say in the install page. Now I just have to make it pretty and useful (i.e. add real content)!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jameyjohnston.com/?feed=rss2&#038;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
