<?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"
	>

<channel>
	<title>Laurent Schneider</title>
	<atom:link href="http://laurentschneider.com/feed" rel="self" type="application/rss+xml" />
	<link>http://laurentschneider.com</link>
	<description>Oracle Certified Master</description>
	<pubDate>Thu, 18 Mar 2010 10:22:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>where c not in (:b1, :b2, &#8230; , :b9999)</title>
		<link>http://laurentschneider.com/wordpress/2010/03/where-c-not-in-b1-b2-b9999.html</link>
		<comments>http://laurentschneider.com/wordpress/2010/03/where-c-not-in-b1-b2-b9999.html#comments</comments>
		<pubDate>Thu, 18 Mar 2010 10:17:26 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[sql]]></category>

		<category><![CDATA[not in]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=661</guid>
		<description><![CDATA[I do not like this kind of dynamic NOT IN clauses. It is better to have a temporary table, a bit like in

create global temporary table t(x number not null);
insert into t(x) values (:b1);
insert into t(x) values (:b2);
...
insert into t(x) values (:b9999);
select foo from bar where c not in (select x from t);

If you want [...]]]></description>
			<content:encoded><![CDATA[<p>I do not like this kind of dynamic NOT IN clauses. It is better to have a temporary table, a bit like in<br />
<pre><code>
create global temporary table t(x number not null);
insert into t(x) values (:b1);
insert into t(x) values (:b2);
...
insert into t(x) values (:b9999);
select foo from bar where c not in (select x from t);
</code></pre></p>
<p>If you want to however do this in one query you can still use AND</p>
<p><pre><code>
SQL&gt; select foo from bar where c not in (
:b1,
:b2,
...
:b9999);
*
ERROR at line 1002:
ORA-01795: maximum number of expressions in a list is 1000

SQL&gt; select foo from bar where 
c!=:b1 and
c!=:b2 and
...
c!=:b9999;

FOO
---
foo
</code></pre></p>
<p>Translate <b>c NOT IN (exprlist)</b> into <b>c!=expr1 and c!=expr2&#8230;</b><br />
Translate <b>c IN (exprlist)</b> into <b>c=expr1 or c=expr2&#8230;</b>  </p>
<p>If you use dynamic expression list, this will bypass the ORA-01795 error</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2010/03/where-c-not-in-b1-b2-b9999.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Book review: oracle sql developper</title>
		<link>http://laurentschneider.com/wordpress/2010/03/book-review-oracle-sql-developper.html</link>
		<comments>http://laurentschneider.com/wordpress/2010/03/book-review-oracle-sql-developper.html#comments</comments>
		<pubDate>Wed, 17 Mar 2010 10:34:13 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[book]]></category>

		<category><![CDATA[sql developer]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=657</guid>
		<description><![CDATA[Sue Harper is the product manager for Oracle SQL developer. She is also the author of a book, Oracle SQL Developer 2.1 .
A bunch of Oracle blogger  received a free online version of the book with the task to write a review.
I have read a few chapters and here are my general comments.

+ The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sueharper.blogspot.com">Sue Harper</a> is the product manager for Oracle SQL developer. She is also the author of a book, <a href="http://www.packtpub.com/oracle-sql-developer-2-1/book">Oracle SQL Developer 2.1 </a>.</p>
<p><a href="http://www.google.com/search?q=blog+oracle+sql+developer+sue+harper">A bunch of Oracle blogger </a> received a free online version of the book with the task to write a review.</p>
<p>I have read a few chapters and here are my general comments.</p>
<p><a href="http://www.amazon.com/dp/1847196268?tag=laureschne-20"><img src="http://www.packtpub.com/images/100x123/1847196268.png" alt="buy from amazon"/></a><br />
+ The picture on the book is very nice, not related to SQL Developer, but shot by Sue <img src='http://laurentschneider.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>- There is no chapter on unit testing, which is one of the newest feature of SQL Developer. It is not very mature yet, but it is a good addition and free.</p>
<p>+ The book is not a marketing joke, the positioning against tool like TOAD is quite the way I see it.<br />
<i>page 1: The skeptics mentioned are ever concerned that Oracle is not really interested in the product,<br />
backing up this concern with the fact that SQL Developer is free.</i></p>
<p>+ Even as a sqlplus/sh fanatic I did not feel ignored<br />
<i>page 6: We&#8217;re aware that you&#8217;ll never fully move from the command-line</i></p>
<p>- If you are a bit of a gray hair security admin you will be shocked by statements like <i>page 21: create a connection for SYSTEM</i> and <i>page 22: Select the Save Password checkbox. This makes life easy</i>. Hmm, do you give SYSTEM access to your developers and do your security policies recommend/allow them to save the password locally?</p>
<p>+ Still SQL Developer is good tool and it is driven by community. Save password is no longer the default (<a href="http://forums.oracle.com/forums/thread.jspa?messageID=1203106">an old thread</a>). You can post your own suggestions like <a href="http://htmldb.oracle.com/pls/otn/f?p=42626:39:856406343237607::NO::P39_ID:23601">Use Wallet for Logins</a> to the <a href="http://htmldb.oracle.com/pls/otn/f?p=42626:46:856406343237607::NO:::">SQL Developer Exchange</a>.</p>
<p>+ There are plenty of good features in this tool and the book covers them. I like reports for instance.</p>
<p>= The book is still a book about click-click-click. Most of my readers here know how to drag and drop and resize windows. </p>
<p>PS: if it was not obvious in my comments, yes I do like this book!</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2010/03/book-review-oracle-sql-developper.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>on analytics and superaggregation</title>
		<link>http://laurentschneider.com/wordpress/2010/02/on-analytics-and-superaggregation.html</link>
		<comments>http://laurentschneider.com/wordpress/2010/02/on-analytics-and-superaggregation.html#comments</comments>
		<pubDate>Sun, 28 Feb 2010 15:26:24 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[sql]]></category>

		<category><![CDATA[DB2]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=644</guid>
		<description><![CDATA[When I wrote my book, I did not expect having the advanced Oracle sql features available on other dabatase engine. 
This week-end I downloaded for fun a try of db2, v9.7.
1) download db2 linux64bit trial on ibm.com
2) install enterprise edition (next-next-install principle)
3) create the instance
4) create the sample database (where database and instance means something [...]]]></description>
			<content:encoded><![CDATA[<p>When I wrote my book, I did not expect having the advanced Oracle sql features available on other dabatase engine. </p>
<p>This week-end I downloaded for fun a try of db2, v9.7.<br />
1) download db2 linux64bit trial on ibm.com<br />
2) install enterprise edition (next-next-install principle)<br />
3) create the instance<br />
4) create the sample database (where database and instance means something different than in Oracle)<br />
<pre><code>$ db2 create db test pagesize 32 k
$ db2 connect to test
$ db2 create user temporary tablespace temp
$ db2 connect reset</code></pre><br />
5) connect with clpplus, which looks similar to sqlplus, even cooler at first look<br />
<code>$ clpplus db2inst1/***@vaio:50001/TEST</code></p>
<p>I tried a few examples from my book. Left, full and cross join works, but not partitioned outer join.</p>
<p>Scalar, Inline and nested query works too.</p>
<p>Surprisely many function that I thought Oracle specific work too, like sysdate and to_char.</p>
<p>In aggegation, the KEEP FIRST/LAST does not work,<br />
In Super aggregations, all GROUPING SETS, CUBE, ROLLUP do work.<br />
No Pivot or Unpivot.</p>
<p>No dual, but a powerful TABLE function</p>
<p><pre><code>SQL&gt; select * from table(values(1),(2));&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1
-----------
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2</code></pre></p>
<p>Analytics works, With range, rows, order by partition, all the fancy stuff.</p>
<p>I have not checked at XML, but it sounds to be differently implemented.<br />
Some things will work however<br />
<pre><code>SQL&gt; select xmlquery(&#039;1 to 10&#039;) from dual;

1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
--------------------
1 2 3 4 5 6 7 8 9 10</code></pre></p>
<p>No CONNECT BY, but as in Oracle 11gR2, <a herf="http://download.oracle.com/docs/cd/E11882_01/server.112/e10592/statements_10002.htm#BCEJGIBG">recursive query factoring</a> does build the hierarchy</p>
<p>No Model, obviously.</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2010/02/on-analytics-and-superaggregation.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Oracle - Sun, what has changed ?</title>
		<link>http://laurentschneider.com/wordpress/2010/02/oracle-sun-what-has-changed.html</link>
		<comments>http://laurentschneider.com/wordpress/2010/02/oracle-sun-what-has-changed.html#comments</comments>
		<pubDate>Fri, 12 Feb 2010 16:42:17 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[news]]></category>

		<category><![CDATA[oracle buys sun]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=641</guid>
		<description><![CDATA[Did you go to http://www.sun.com recently? You will land on oracle.com ! 
But more will come. 
The conference JavaOne will be in SanFrancisco with Oracle OpenWorld. 
The Sun Developer Network and Bigadmin will be integrated in OTN.
Welcome Sun Developers Ensuring community continuity
MySql and java.sun.com have the Oracle logo.
That was fast! Well, Oracle is quite used [...]]]></description>
			<content:encoded><![CDATA[<p>Did you go to <a href="http://www.sun.com">http://www.sun.com</a> recently? You will land on oracle.com ! </p>
<p>But more will come. </p>
<p>The conference JavaOne will be in SanFrancisco with Oracle OpenWorld. </p>
<p>The Sun Developer Network and Bigadmin will be integrated in OTN.</p>
<p><a href="http://www.oracle.com/technology/community/sun-oracle-community-continuity.html">Welcome Sun Developers Ensuring community continuity</a></p>
<p>MySql and java.sun.com have the Oracle logo.</p>
<p>That was fast! Well, Oracle is quite used to acquisition, only this week they bought AmberPoint and Convergin. </p>
<p>Still MySQL strategy will probably change, I cannot believe Oracle will encourage the users to save millions on Oracle License by migrating to MySQL<br />
http://www.mysql.com/products/enterprise/unlimited.html</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2010/02/oracle-sun-what-has-changed.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>what is the type of NULL</title>
		<link>http://laurentschneider.com/wordpress/2010/02/what-is-the-type-of-null.html</link>
		<comments>http://laurentschneider.com/wordpress/2010/02/what-is-the-type-of-null.html#comments</comments>
		<pubDate>Tue, 09 Feb 2010 12:28:37 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[sql]]></category>

		<category><![CDATA[null]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=638</guid>
		<description><![CDATA[I was a bit surprised to see a VARCHAR2(0) column in my schema

select column_name, data_type, data_length 
from user_tab_columns 
where table_name=&#039;V&#039;;
COLUMN_NAME&#160;&#160;&#160;&#160; DATA_TYPE&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;DATA_LENGTH
--------------- -------------------- -----------
X&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; VARCHAR2&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 0

What&#8217;s this datatype? It is the datatype of NULL !!!
SQL&#62; create or replace view v as select null x from dual
View created.
SQL&#62; desc v
VIEW v
 Name&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;Null?&#160;&#160;&#160;&#160;Type&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
 ----------------- -------- ------------
 X&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;VARCHAR2(0) 

]]></description>
			<content:encoded><![CDATA[<p>I was a bit surprised to see a VARCHAR2(0) column in my schema</p>
<p><pre><code>
select column_name, data_type, data_length 
from user_tab_columns 
where table_name=&#039;V&#039;;
COLUMN_NAME&nbsp;&nbsp;&nbsp;&nbsp; DATA_TYPE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DATA_LENGTH
--------------- -------------------- -----------
X&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VARCHAR2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0
</code></pre></p>
<p>What&#8217;s this datatype? It is the datatype of NULL !!!</p>
<p><pre><code>SQL&gt; create or replace view v as select null x from dual
View created.
SQL&gt; desc v
VIEW v
 Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Null?&nbsp;&nbsp;&nbsp;&nbsp;Type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 ----------------- -------- ------------
 X&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;VARCHAR2(0) 
</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2010/02/what-is-the-type-of-null.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Oracle buys Sun : followup</title>
		<link>http://laurentschneider.com/wordpress/2010/01/oracle-buys-sun-followup.html</link>
		<comments>http://laurentschneider.com/wordpress/2010/01/oracle-buys-sun-followup.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 11:54:53 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[news]]></category>

		<category><![CDATA[oracle buys sun]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=635</guid>
		<description><![CDATA[After months of harassment between Oracle and Europe Commission, the deals got approved by the European Commission.
Still MySQL founder Monty Widenius wants to have Russia and China reject the deal to save the future of MySQL&#8230; This will delay the deals further. Good for IBM, bad for Oracle !
]]></description>
			<content:encoded><![CDATA[<p>After months of harassment between Oracle and Europe Commission, the <a href="http://www.oracle.com/us/corporate/press/043873">deals got approved by the European Commission</a>.</p>
<p>Still MySQL founder Monty Widenius wants to have Russia and China reject the deal to save the future of MySQL&#8230; This will delay the deals further. Good for IBM, bad for Oracle !</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2010/01/oracle-buys-sun-followup.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How many decimals do you need?</title>
		<link>http://laurentschneider.com/wordpress/2010/01/how-many-decimals-do-you-need.html</link>
		<comments>http://laurentschneider.com/wordpress/2010/01/how-many-decimals-do-you-need.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 07:40:00 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[sql]]></category>

		<category><![CDATA[scale]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=632</guid>
		<description><![CDATA[Do you user NUMBER or NUMBER(p,s) for your datatypes?
I posted last year about 1!=1
Today I realized this could be solved with the scale  
SQL&#62; drop table lsc_t
Table dropped.
SQL&#62; create table lsc_t(x number, y number(*,6))
Table created.
SQL&#62; insert into lsc_t values (1/3*3,1/3*3)
1 row created.
SQL&#62; commit
Commit complete.
SQL&#62; select * from lsc_t where x=1
no rows selected.
SQL&#62; select * [...]]]></description>
			<content:encoded><![CDATA[<p>Do you user NUMBER or NUMBER(p,s) for your datatypes?</p>
<p>I posted last year about <a href="http://laurentschneider.com/wordpress/2009/03/11.html">1!=1</a></p>
<p>Today I realized this could be solved with the scale <img src='http://laurentschneider.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><pre><code>SQL&gt; drop table lsc_t
Table dropped.
SQL&gt; create table lsc_t(x number, y number(*,6))
Table created.
SQL&gt; insert into lsc_t values (1/3*3,1/3*3)
1 row created.
SQL&gt; commit
Commit complete.
SQL&gt; select * from lsc_t where x=1
no rows selected.
SQL&gt; select * from lsc_t where y=1

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; X&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Y
---------- ----------
1.00000000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1</code></pre></p>
<p>So if you have amounts in US$ or GB£ or CHF, do not use NUMBER, use NUMBER(*,6) or NUMBER(*,2) or whatever is relevant to your business!</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2010/01/how-many-decimals-do-you-need.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Happy New Year 2010</title>
		<link>http://laurentschneider.com/wordpress/2010/01/happy-new-year-2010.html</link>
		<comments>http://laurentschneider.com/wordpress/2010/01/happy-new-year-2010.html#comments</comments>
		<pubDate>Sun, 10 Jan 2010 20:57:47 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[support]]></category>

		<category><![CDATA[metalink]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=630</guid>
		<description><![CDATA[It is quite a while I have not posted anything of interest, I pretty apologize to my faithful readers&#8230; the reason for being offline are multiple, one of them, I cannot access my blog from my workplace yet.
Ok, the last hint from my dba regarding Oracle Support :
If flash really drives you nuts, go for [...]]]></description>
			<content:encoded><![CDATA[<p>It is quite a while I have not posted anything of interest, I pretty apologize to my faithful readers&#8230; the reason for being offline are multiple, one of them, I cannot access my blog from my workplace yet.</p>
<p>Ok, the last hint from my dba regarding Oracle Support :</p>
<p>If flash really drives you nuts, go for html : <a href="https://supporthtml.oracle.com">supporthtml.oracle.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2010/01/happy-new-year-2010.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>11.2 solaris x86_64</title>
		<link>http://laurentschneider.com/wordpress/2009/12/112-solaris-x86_64.html</link>
		<comments>http://laurentschneider.com/wordpress/2009/12/112-solaris-x86_64.html#comments</comments>
		<pubDate>Sat, 05 Dec 2009 20:48:18 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[11gR2]]></category>

		<category><![CDATA[installation]]></category>

		<category><![CDATA[news]]></category>

		<category><![CDATA[solaris x86_64]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=628</guid>
		<description><![CDATA[Released as announced for 2009Q4&#8230; database, 11.2 for Solaris x86_64
Still Oracle is suffering with European Union Commission who is still blocking the Sun deal. 
google news about the deal
]]></description>
			<content:encoded><![CDATA[<p>Released as announced for 2009Q4&#8230; <a href="http://www.oracle.com/technology/software/products/database/index.html">database</a>, 11.2 for Solaris x86_64</p>
<p>Still Oracle is suffering with European Union Commission who is still blocking the Sun deal. </p>
<p><a href="http://news.google.com/news/search?aq=f&#038;pz=1&#038;cf=all&#038;ned=us&#038;hl=en&#038;q=sun+oracle">google news about the deal</a></p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2009/12/112-solaris-x86_64.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>11.2 Sparc</title>
		<link>http://laurentschneider.com/wordpress/2009/11/112-sparc.html</link>
		<comments>http://laurentschneider.com/wordpress/2009/11/112-sparc.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 14:44:16 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[11gR2]]></category>

		<category><![CDATA[news]]></category>

		<category><![CDATA[unix]]></category>

		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=623</guid>
		<description><![CDATA[Good news, go there http://www.oracle.com/technology/software/products/database and there
Quick install guide 
 
]]></description>
			<content:encoded><![CDATA[<p>Good news, go there <a href="http://www.oracle.com/technology/software/products/database">http://www.oracle.com/technology/software/products/database</a> and there<br />
<a href="http://download.oracle.com/docs/cd/E11882_01/install.112/e10863/toc.htm">Quick install guide </a><br />
 <img src='http://laurentschneider.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2009/11/112-sparc.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
