<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL: SELECTing a random subset of data</title>
	<atom:link href="http://atulley.wordpress.com/2009/02/06/sql-selecting-a-random-subset-of-data/feed/" rel="self" type="application/rss+xml" />
	<link>http://atulley.wordpress.com/2009/02/06/sql-selecting-a-random-subset-of-data/</link>
	<description>SELECT * FROM RANDOM.stuff WHERE subject IN ('Application Express','Oracle','PL/SQL','SQL') AND is_worth_blogging_about IN ('YES','MAYBE','DOUBTFUL');</description>
	<lastBuildDate>Fri, 23 Oct 2009 13:31:53 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andrew Tulley</title>
		<link>http://atulley.wordpress.com/2009/02/06/sql-selecting-a-random-subset-of-data/#comment-931</link>
		<dc:creator>Andrew Tulley</dc:creator>
		<pubDate>Fri, 06 Feb 2009 22:38:46 +0000</pubDate>
		<guid isPermaLink="false">http://atulley.wordpress.com/2009/02/06/sql-selecting-a-random-subset-of-data/#comment-931</guid>
		<description>Good point, Alex. You can use SEED if you want the same random set of data repeatedly.

&quot;&lt;em&gt;SEED seed_value&lt;/em&gt;:- Specify this clause to instruct the database to attempt to return the same sample from one execution to the next. The seed_value must be an integer between 0 and 4294967295. If you omit this clause, then the resulting sample will change from one execution to the next.&quot;</description>
		<content:encoded><![CDATA[<p>Good point, Alex. You can use SEED if you want the same random set of data repeatedly.</p>
<p>&#8220;<em>SEED seed_value</em>:- Specify this clause to instruct the database to attempt to return the same sample from one execution to the next. The seed_value must be an integer between 0 and 4294967295. If you omit this clause, then the resulting sample will change from one execution to the next.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Nuijten</title>
		<link>http://atulley.wordpress.com/2009/02/06/sql-selecting-a-random-subset-of-data/#comment-930</link>
		<dc:creator>Alex Nuijten</dc:creator>
		<pubDate>Fri, 06 Feb 2009 18:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://atulley.wordpress.com/2009/02/06/sql-selecting-a-random-subset-of-data/#comment-930</guid>
		<description>&quot;Some Data&quot;, the same &quot;Some Data&quot;.. with SEED
SQL&gt; select ename, job
  2    from emp sample (10) seed (4)
  3  /

ENAME      JOB
---------- ---------
FORD       ANALYST

SQL&gt; /

ENAME      JOB
---------- ---------
FORD       ANALYST</description>
		<content:encoded><![CDATA[<p>&#8220;Some Data&#8221;, the same &#8220;Some Data&#8221;.. with SEED<br />
SQL&gt; select ename, job<br />
  2    from emp sample (10) seed (4)<br />
  3  /</p>
<p>ENAME      JOB<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;<br />
FORD       ANALYST</p>
<p>SQL&gt; /</p>
<p>ENAME      JOB<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;<br />
FORD       ANALYST</p>
]]></content:encoded>
	</item>
</channel>
</rss>
