<?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: Outer Join Operator (+) Restrictions in 12.1.0.2?	</title>
	<atom:link href="https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/</link>
	<description>Database-centric development</description>
	<lastBuildDate>Tue, 07 Nov 2023 21:31:51 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
<atom:link rel="hub" href="https://pubsubhubbub.appspot.com"/>
<atom:link rel="hub" href="https://pubsubhubbub.superfeedr.com"/>
<atom:link rel="hub" href="https://websubhub.com/hub"/>
<atom:link rel="self" href="https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/feed/"/>
	<item>
		<title>
		By: Philipp Salvisberg		</title>
		<link>https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/#comment-11446</link>

		<dc:creator><![CDATA[Philipp Salvisberg]]></dc:creator>
		<pubDate>Fri, 23 Aug 2019 09:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.salvis.com/blog/?p=6269#comment-11446</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/#comment-11444&quot;&gt;soumit&lt;/a&gt;.

The full error message is:
&lt;pre class=&quot;toolbar:2 toolbar-overlay:false toolbar-hide:false striped:false nums:false lang:default decode:true&quot;&gt;ORA-30563: outer join operator (+) is not allowed here
30563. 00000 - &quot;outer join operator (+) is not allowed here&quot;
*Cause:    An attempt was made to reference (+) in either the select-list,
           CONNECT BY clause, START WITH clause, or ORDER BY clause.
*Action:   Do not use the operator in the select-list, CONNECT BY clause,
           START WITH clause, or ORDER BY clause.&lt;/pre&gt;
IMHO the error message is good. I suggest to follow the instructions under &quot;Action&quot;.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/#comment-11444">soumit</a>.</p>
<p>The full error message is:</p>
<pre class="toolbar:2 toolbar-overlay:false toolbar-hide:false striped:false nums:false lang:default decode:true">ORA-30563: outer join operator (+) is not allowed here
30563. 00000 - "outer join operator (+) is not allowed here"
*Cause:    An attempt was made to reference (+) in either the select-list,
           CONNECT BY clause, START WITH clause, or ORDER BY clause.
*Action:   Do not use the operator in the select-list, CONNECT BY clause,
           START WITH clause, or ORDER BY clause.</pre>
<p>IMHO the error message is good. I suggest to follow the instructions under &#8220;Action&#8221;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: soumit		</title>
		<link>https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/#comment-11444</link>

		<dc:creator><![CDATA[soumit]]></dc:creator>
		<pubDate>Fri, 23 Aug 2019 07:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.salvis.com/blog/?p=6269#comment-11444</guid>

					<description><![CDATA[When Try to create the materialized view in oracle 12c system showing error outer join is not allowed here (ora-30563) any solution please help.

Regards
soumit]]></description>
			<content:encoded><![CDATA[<p>When Try to create the materialized view in oracle 12c system showing error outer join is not allowed here (ora-30563) any solution please help.</p>
<p>Regards<br />
soumit</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Philipp Salvisberg		</title>
		<link>https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/#comment-5583</link>

		<dc:creator><![CDATA[Philipp Salvisberg]]></dc:creator>
		<pubDate>Tue, 22 May 2018 08:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.salvis.com/blog/?p=6269#comment-5583</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/#comment-5582&quot;&gt;Lokesh&lt;/a&gt;.

Yes. Simply remove the &lt;code&gt;(+)&lt;/code&gt; in the order by clause. For example:

&lt;pre class=&quot;line-height:25 toolbar:2 lang:plsql decode:true&quot;&gt;SELECT d.deptno, d.dname, d.loc, e.ename
  FROM dept d, emp e
 WHERE d.deptno = e.deptno (+)
 ORDER BY e.ename NULLS FIRST;&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.salvis.com/blog/2015/12/07/outer-join-operator-restrictions-in-12-1-0-2/#comment-5582">Lokesh</a>.</p>
<p>Yes. Simply remove the <code>(+)</code> in the order by clause. For example:</p>
<pre class="line-height:25 toolbar:2 lang:plsql decode:true">SELECT d.deptno, d.dname, d.loc, e.ename
  FROM dept d, emp e
 WHERE d.deptno = e.deptno (+)
 ORDER BY e.ename NULLS FIRST;</pre>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
