<?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: How to update Oracle column with sequence numbers</title>
	<atom:link href="http://lichao.net/eblog/how-to-update-oracle-column-with-sequence-numbers-200901224.html/feed" rel="self" type="application/rss+xml" />
	<link>http://lichao.net/eblog/how-to-update-oracle-column-with-sequence-numbers-200901224.html</link>
	<description>If you are an IT professional as I am, you would love to live digitally and electronically too.</description>
	<lastBuildDate>Sun, 14 Mar 2010 16:18:46 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: T-Hohs</title>
		<link>http://lichao.net/eblog/how-to-update-oracle-column-with-sequence-numbers-200901224.html/comment-page-1#comment-2606</link>
		<dc:creator>T-Hohs</dc:creator>
		<pubDate>Wed, 16 Sep 2009 16:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://lichao.net/eblog/?p=224#comment-2606</guid>
		<description>Hey great post!

Couldn&#039;t you simplify even further by doing the following and eliminating the PL/SQL:

UPDATE cms_store_locations
SET store_id = store_seq.nextval;</description>
		<content:encoded><![CDATA[<p>Hey great post!</p>
<p>Couldn&#8217;t you simplify even further by doing the following and eliminating the PL/SQL:</p>
<p>UPDATE cms_store_locations<br />
SET store_id = store_seq.nextval;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WebGuru</title>
		<link>http://lichao.net/eblog/how-to-update-oracle-column-with-sequence-numbers-200901224.html/comment-page-1#comment-2445</link>
		<dc:creator>WebGuru</dc:creator>
		<pubDate>Mon, 29 Jun 2009 19:58:42 +0000</pubDate>
		<guid isPermaLink="false">http://lichao.net/eblog/?p=224#comment-2445</guid>
		<description>You need to create the sequence object first. I have enclosed the sample SQL here:
CREATE SEQUENCE STORE_SEQ
  START WITH 1
  MAXVALUE 999999999
  MINVALUE 0
  NOCYCLE
  CACHE 20
  ORDER;</description>
		<content:encoded><![CDATA[<p>You need to create the sequence object first. I have enclosed the sample SQL here:<br />
CREATE SEQUENCE STORE_SEQ<br />
  START WITH 1<br />
  MAXVALUE 999999999<br />
  MINVALUE 0<br />
  NOCYCLE<br />
  CACHE 20<br />
  ORDER;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dawood</title>
		<link>http://lichao.net/eblog/how-to-update-oracle-column-with-sequence-numbers-200901224.html/comment-page-1#comment-2440</link>
		<dc:creator>Dawood</dc:creator>
		<pubDate>Sun, 28 Jun 2009 06:57:46 +0000</pubDate>
		<guid isPermaLink="false">http://lichao.net/eblog/?p=224#comment-2440</guid>
		<description>Greetings,

When I tried to run this PL/SQL the oracle generate an error which is that the sequence store_seq doesn`t exist..
So, if you have some explanation or solution gor this problem plz send me it through my email.

regards..</description>
		<content:encoded><![CDATA[<p>Greetings,</p>
<p>When I tried to run this PL/SQL the oracle generate an error which is that the sequence store_seq doesn`t exist..<br />
So, if you have some explanation or solution gor this problem plz send me it through my email.</p>
<p>regards..</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.605 seconds -->
