<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Create Alphanumeric Sequence in SQL?</title>
	<atom:link href="http://oraqa.com/2008/08/10/how-to-create-alphanumeric-sequence-in-sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://oraqa.com/2008/08/10/how-to-create-alphanumeric-sequence-in-sql/</link>
	<description>Oracle Question and Answer</description>
	<lastBuildDate>Wed, 29 Jul 2009 16:01:28 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Laurent Schneider</title>
		<link>http://oraqa.com/2008/08/10/how-to-create-alphanumeric-sequence-in-sql/comment-page-1/#comment-248</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Mon, 11 Aug 2008 09:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/?p=265#comment-248</guid>
		<description>if you like a Base64 format, maybe this...
&lt;pre&gt;
select 
    utl_raw.cast_to_varchar2(
      utl_encode.base64_encode(
        utl_raw.cast_from_binary_integer(
          lsc_s.nextval
        )
      )
    )
from dual;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>if you like a Base64 format, maybe this&#8230;</p>
<pre>
select
    utl_raw.cast_to_varchar2(
      utl_encode.base64_encode(
        utl_raw.cast_from_binary_integer(
          lsc_s.nextval
        )
      )
    )
from dual;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: hsafra</title>
		<link>http://oraqa.com/2008/08/10/how-to-create-alphanumeric-sequence-in-sql/comment-page-1/#comment-247</link>
		<dc:creator>hsafra</dc:creator>
		<pubDate>Mon, 11 Aug 2008 06:53:16 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/?p=265#comment-247</guid>
		<description>You need to give more specs for the question: What letter are acceptable? What letters aren&#039;t? Do you need special ordering? What about gaps?

I&#039;d wrap an Oracle sequence in a function that translates the number from the sequence to a string using the specs you need.</description>
		<content:encoded><![CDATA[<p>You need to give more specs for the question: What letter are acceptable? What letters aren&#8217;t? Do you need special ordering? What about gaps?</p>
<p>I&#8217;d wrap an Oracle sequence in a function that translates the number from the sequence to a string using the specs you need.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
