<?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/rss2" rel="self" type="application/rss+xml" />
	<link>http://laurentschneider.com</link>
	<description>Oracle Certified Master</description>
	<pubDate>Sun, 07 Mar 2010 17:21:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<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>
		<item>
		<title>dealing with support</title>
		<link>http://laurentschneider.com/wordpress/2009/10/dealing-with-support.html</link>
		<comments>http://laurentschneider.com/wordpress/2009/10/dealing-with-support.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 15:03:06 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[fun]]></category>

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

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

		<guid isPermaLink="false">http://laurentschneider.com/?p=618</guid>
		<description><![CDATA[It is quite a long time I did shot the pianist in my blog&#8230; probably patience and perseverance are better than aggressive behavior, but today I have been transfixed by an answer from metalink.
Sometimes the issues I submit are a bit exotic but there it was a join with one view using one function and [...]]]></description>
			<content:encoded><![CDATA[<p>It is quite a long time I did <a href="http://radiofreetooting.blogspot.com/2005/10/oracle-metalink-dont-shoot-pianist.html">shot the pianist</a> in my blog&#8230; probably patience and perseverance are better than aggressive behavior, but today I have been transfixed by an answer from metalink.</p>
<p>Sometimes the issues I submit are a bit exotic but there it was a join with one view using one function and dual returning wrong results. Reproducible at will on any db 10.2.0.4 and below.</p>
<p>After 2 weeks the helpful engineer told me it is fixed with patch 6471020 and in 11g. I asked if he tried it but he said no. As the patch is not available on my platform I asked if could try it but then he came back with an amazing workaround he became from an ARE (<b>advanced</b> resolution engineer) :<br />
<i><br />
Remove the function from the view.<br />
</i><br />
Unreal</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2009/10/dealing-with-support.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>.plz dump file</title>
		<link>http://laurentschneider.com/wordpress/2009/10/plz-dump-file.html</link>
		<comments>http://laurentschneider.com/wordpress/2009/10/plz-dump-file.html#comments</comments>
		<pubDate>Tue, 06 Oct 2009 15:19:13 +0000</pubDate>
		<dc:creator>Laurent Schneider</dc:creator>
		
		<category><![CDATA[dba]]></category>

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

		<category><![CDATA[PLS-00801]]></category>

		<guid isPermaLink="false">http://laurentschneider.com/?p=610</guid>
		<description><![CDATA[What are those .plz dump files in my user dump directory ?

-rw-r--r--&#160;&#160; 1 oracle&#160;&#160; dba&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;15168 Oct&#160;&#160;6 14:34 _anon__3ca8c5e38__AB.plz
-rw-r-----&#160;&#160; 1 oracle&#160;&#160; dba&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;15883 Oct&#160;&#160;6 14:45 db01_ora_10061.trc
-rw-r--r--&#160;&#160; 1 oracle&#160;&#160; dba&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;15168 Oct&#160;&#160;6 14:45 _anon__3c929b088__AB.plz
-rw-r-----&#160;&#160; 1 oracle&#160;&#160; dba&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;15895 Oct&#160;&#160;6 14:47 db01_ora_10666.trc
-rw-r--r--&#160;&#160; 1 oracle&#160;&#160; dba&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;15168 Oct&#160;&#160;6 14:47 _anon__3c8651198__AB.plz

let&#8217;s check one, briefly :

*** ASSERT at file pdw4.c, line 2080; Type 0xffffffff7d79fb40 has [...]]]></description>
			<content:encoded><![CDATA[<p>What are those .plz dump files in my user dump directory ?<br />
<pre><code>
-rw-r--r--&nbsp;&nbsp; 1 oracle&nbsp;&nbsp; dba&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;15168 Oct&nbsp;&nbsp;6 14:34 _anon__3ca8c5e38__AB.plz
-rw-r-----&nbsp;&nbsp; 1 oracle&nbsp;&nbsp; dba&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;15883 Oct&nbsp;&nbsp;6 14:45 db01_ora_10061.trc
-rw-r--r--&nbsp;&nbsp; 1 oracle&nbsp;&nbsp; dba&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;15168 Oct&nbsp;&nbsp;6 14:45 _anon__3c929b088__AB.plz
-rw-r-----&nbsp;&nbsp; 1 oracle&nbsp;&nbsp; dba&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;15895 Oct&nbsp;&nbsp;6 14:47 db01_ora_10666.trc
-rw-r--r--&nbsp;&nbsp; 1 oracle&nbsp;&nbsp; dba&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;15168 Oct&nbsp;&nbsp;6 14:47 _anon__3c8651198__AB.plz
</code></pre></p>
<p>let&#8217;s check one, briefly :<br />
<pre><code>
*** ASSERT at file pdw4.c, line 2080; Type 0xffffffff7d79fb40 has no MAP method.
Source Location = _anon__3d2474b28__AB[1, 7]

== Dump of OPT Context Object ffffffff7c519ec8. ==
&nbsp;&nbsp;Tue Oct&nbsp;&nbsp;6 16:31:11 2009
&nbsp;&nbsp;Event 10944 = 0
&nbsp;&nbsp;plsp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= ffffffff7fff67a8
&nbsp;&nbsp;lu&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= 3c9c18210
&nbsp;&nbsp;Diana root&nbsp;&nbsp;&nbsp;&nbsp;= 0x20014 = 131092
&nbsp;&nbsp;Diana proc&nbsp;&nbsp;&nbsp;&nbsp;= 0x20012 = 131090
&nbsp;&nbsp;Graph&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = ffffffff7d774d70
&nbsp;&nbsp;Dump file&nbsp;&nbsp;&nbsp;&nbsp; = /app/oracle/admin/DB01/udump/_anon__3d2474b28__AB.plz
&nbsp;&nbsp;CG&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= 0
...
</code></pre></p>
<p>It is a kind of dump file, apparently. I could not find details on metalink. I generate the one above in 10.2.0.4 sparc with the following code</p>
<p><pre><code>create or replace type t1 as object (x number)
/
create or replace type t2 as table of t1
/
exec if t1(1)member of t2()then null;end if
</code></pre><br />
BEGIN if t1(1)member of t2()then null;end if; END;<br />
Error at line 10<br />
ORA-06550: line 1, column 7:<br />
PLS-00801: internal error [*** ASSERT at file pdw4.c, line 2080; Type 0xffffffff7d7ba280 has no MAP method.; _anon__3c929b088__AB[1, 7]]</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentschneider.com/wordpress/2009/10/plz-dump-file.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
