<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ALL DATABASE DB CODE ERROR ORACLE,MYSQL,MSSQL,DB2 &#187; Oracle</title>
	<atom:link href="http://www.dberrorcode.com/category/oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dberrorcode.com</link>
	<description>Your primary All Database information source.</description>
	<lastBuildDate>Mon, 23 Nov 2009 08:23:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to see open cursors</title>
		<link>http://www.dberrorcode.com/how-to-see-open-cursors/</link>
		<comments>http://www.dberrorcode.com/how-to-see-open-cursors/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:23:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ORA-HOWTO]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Code]]></category>
		<category><![CDATA[accessible cursors]]></category>
		<category><![CDATA[actual open cursors]]></category>
		<category><![CDATA[open cursors]]></category>
		<category><![CDATA[oracle accessible cursors]]></category>
		<category><![CDATA[oracle actual open cursors]]></category>
		<category><![CDATA[oracle open cursors]]></category>
		<category><![CDATA[oracle see open cursors]]></category>
		<category><![CDATA[oracle v$open_cursor]]></category>
		<category><![CDATA[oracle v$sesstat]]></category>
		<category><![CDATA[oracle v$sqltext]]></category>
		<category><![CDATA[oracle v$statname]]></category>
		<category><![CDATA[see open cursors]]></category>
		<category><![CDATA[v$open_cursor]]></category>
		<category><![CDATA[v$sesstat]]></category>
		<category><![CDATA[v$sqltext]]></category>
		<category><![CDATA[v$statname]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10325</guid>
		<description><![CDATA[Accessible Cursors

SELECT oc.user_name, st.sql_text
  FROM v$open_cursor oc,v$sqltext st
 WHERE oc.address    = st.address
      AND oc.hash_value = st.hash_value
 ORDER BY oc.user_name, st.piece
 
For performance reasons, pl/sql cursors are cached for future reuse. So once you use them up they will be added to LRU list of cursor table. Hence you can see them in v$open_cursor.          
Actual Open Cursors
select sum(a.value), b.name
  from v$sesstat a,v$statname b
 where a.statistic# = b.statistic#
   and b.name = &#8216;opened cursors current&#8217;
 group by b.name
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/how-to-see-open-cursors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File transfers for database cloning</title>
		<link>http://www.dberrorcode.com/file-transfers-for-database-cloning/</link>
		<comments>http://www.dberrorcode.com/file-transfers-for-database-cloning/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:23:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ORA-HOWTO]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Tips Scripts]]></category>
		<category><![CDATA[database clone]]></category>
		<category><![CDATA[database cloning]]></category>
		<category><![CDATA[DBMS_FILE_TRANSFER usage]]></category>
		<category><![CDATA[how to oracle database clone]]></category>
		<category><![CDATA[how to oracle database cloning]]></category>
		<category><![CDATA[oracle database clone]]></category>
		<category><![CDATA[oracle database cloning]]></category>
		<category><![CDATA[oracle DBMS_FILE_TRANSFER]]></category>
		<category><![CDATA[oracle DBMS_FILE_TRANSFER usage]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10345</guid>
		<description><![CDATA[There are lot of ways in which files are copied from one database to the other during database cloning or transporting tablespaces.
File transfers can be done using oracle package called &#8220;DBMS_FILE_TRANSFER&#8221;.
Let us assume we need to transfer a file x.dbf from database SOURCE_DB to database DEST_DB
Do the following :
AT SOURCE_DB:
==============
1)Create directory source_dir as &#8216;/u01/dbdata&#8217;;
2)Create database link remote_db
connect to system identified by manager
using &#8216;remmote_db&#8217;;
Make sure to add this entry in TNSNAMES.ORA file.
Check if the database link works by
select count(1) from dba_tables@remote_db;
AT DEST_DB:
============
create directory dest_dir as &#8216;/u02/dbdata&#8217;;
Now back to SOURCE_DB:
exec dbms_file_transfer.put_file(&#8216;SOURCE_DIR&#8217;,'x.dbf&#8217;,'DEST_DIR&#8217;,'x.dbf&#8217;,'REMOTE_DB&#8217;);
Now the ...]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/file-transfers-for-database-cloning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full Online Backup using RMAN</title>
		<link>http://www.dberrorcode.com/full-online-backup-using-rman/</link>
		<comments>http://www.dberrorcode.com/full-online-backup-using-rman/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:23:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Backup Recovery]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Backup oracle]]></category>
		<category><![CDATA[Backup RMAN]]></category>
		<category><![CDATA[Backup RMAN oracle]]></category>
		<category><![CDATA[Full Backup RMAN]]></category>
		<category><![CDATA[Full Backup using RMAN oracle]]></category>
		<category><![CDATA[Full Online Backup oracle]]></category>
		<category><![CDATA[Full Online RMAN]]></category>
		<category><![CDATA[Online Backup RMAN]]></category>
		<category><![CDATA[oracle Full Backup using RMAN]]></category>
		<category><![CDATA[rman]]></category>
		<category><![CDATA[rman oracle]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10350</guid>
		<description><![CDATA[Your database has to be in archive log mode for this script to work.
Code:

RMAN&#62; run {
2&#62; # backup the database to disk
3&#62; allocate channel d1 type disk;
4&#62; backup
5&#62; full
6&#62; tag full_db
7&#62; format &#8216;/backups/db_%t_%s_p%p&#8217;
8&#62; (database);
9&#62; release channel d1;
10&#62; }
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/full-online-backup-using-rman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trace sessions in Oracle</title>
		<link>http://www.dberrorcode.com/trace-sessions-in-oracle/</link>
		<comments>http://www.dberrorcode.com/trace-sessions-in-oracle/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:19:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ORA-HOWTO]]></category>
		<category><![CDATA[Oracle Code]]></category>
		<category><![CDATA[find sid and serial for session]]></category>
		<category><![CDATA[how to Oracle session trace]]></category>
		<category><![CDATA[Oracle Enable tracing]]></category>
		<category><![CDATA[oracle Read the trace file]]></category>
		<category><![CDATA[Oracle sessions Trace]]></category>
		<category><![CDATA[oracle start tracing]]></category>
		<category><![CDATA[Trace sessions]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10316</guid>
		<description><![CDATA[1. Enable tracing and set the maxiumum dump file size to unlimited:

SQL&#62; ALTER SYSTEM SET timed_statistics = true;
SQL&#62; ALTER SYSTEM SET max_dump_file_size = unlimited;

2. find sid and serial for session you want to trace:

SQL&#62; SELECT sid, serial#, username from v$session; 

3. start tracing:

SQL&#62; execute dbms_system.set_sql_trace_in_session(sid, serial, true);

Now, all query and operation from the session are traced.
4. stop tracing:

SQL&#62; execute dbms_system.set_sql_trace_in_session(sid, serial, false);

Read the trace file:
You can find trace files in user dump file destination (UDUMP):

SQL&#62; SHOW parameter user_dump_dest
 
NAME             ...]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/trace-sessions-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full Online Backup Script Using RMAN</title>
		<link>http://www.dberrorcode.com/full-online-backup-script-using-rman/</link>
		<comments>http://www.dberrorcode.com/full-online-backup-script-using-rman/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:15:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Backup Recovery]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Full Backup RMAN]]></category>
		<category><![CDATA[Full Online Backup oracle]]></category>
		<category><![CDATA[Full Online Backup RMAN]]></category>
		<category><![CDATA[Full Online Backup Script oracle]]></category>
		<category><![CDATA[Full Online Backup Script RMAN]]></category>
		<category><![CDATA[Online Backup Script]]></category>
		<category><![CDATA[oracle backup]]></category>
		<category><![CDATA[rman]]></category>
		<category><![CDATA[rman backup]]></category>
		<category><![CDATA[rman backup oracle]]></category>
		<category><![CDATA[Rman Backup Script]]></category>
		<category><![CDATA[rman oracle]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10347</guid>
		<description><![CDATA[This script will backup all the datafiles using the RMAN utility reducing the cost of resources.
Code:
resync catalog;
run {
allocate channel c1 type disk;
copy datafile 1 to &#8216;C:\rman1.dbf&#8217;;
copy datafile 2 to &#8216;C:\rman2.dbf&#8217;;
copy datafile 3 to &#8216;C:\rman3.dbf&#8217;;
copy datafile 4 to &#8216;C:\rman4.dbf&#8217;;
copy datafile 5 to &#8216;C:\rman5.dbf&#8217;;
}
exit
echo exiting after successful hot backup using RMAN
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/full-online-backup-script-using-rman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a new datafile to TABLESPACE</title>
		<link>http://www.dberrorcode.com/add-a-new-datafile-to-tablespace/</link>
		<comments>http://www.dberrorcode.com/add-a-new-datafile-to-tablespace/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:15:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Code]]></category>
		<category><![CDATA[Add a new datafile]]></category>
		<category><![CDATA[ALTER tablespace TABLESPACE ADD datafile]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10312</guid>
		<description><![CDATA[ 

ALTER tablespace TABLESPACE ADD datafile '/path/datafile1.dbf' size 512M;

]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/add-a-new-datafile-to-tablespace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Datafile Recovery Script</title>
		<link>http://www.dberrorcode.com/datafile-recovery-script/</link>
		<comments>http://www.dberrorcode.com/datafile-recovery-script/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:11:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Backup Recovery]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Datafile Recovery]]></category>
		<category><![CDATA[Datafile Recovery oracle]]></category>
		<category><![CDATA[oracle Recovery]]></category>
		<category><![CDATA[oracle Recovery Script]]></category>
		<category><![CDATA[Recovery]]></category>
		<category><![CDATA[Recovery Script]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10353</guid>
		<description><![CDATA[This script will perform datafile recovery
Code:
RMAN&#62; run {
2&#62; allocate channel d1 type disk;
3&#62; sql &#8220;alter tablespace users offline immediate&#8221;;
4&#62; restore datafile 5;
5&#62; recover datafile 5;
6&#62; sql &#8220;alter tablespace users online&#8221;;
7&#62; release channel d1;
8&#62; }
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/datafile-recovery-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tablespaces with autoextend parameter</title>
		<link>http://www.dberrorcode.com/tablespaces-with-autoextend-parameter/</link>
		<comments>http://www.dberrorcode.com/tablespaces-with-autoextend-parameter/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:07:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Code]]></category>
		<category><![CDATA[autoextend parameter]]></category>
		<category><![CDATA[Tablespaces autoextend]]></category>
		<category><![CDATA[Tablespaces autoextend parameter]]></category>
		<category><![CDATA[Tablespaces with autoextend]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10314</guid>
		<description><![CDATA[Some tablespaces can be autoextensible, in this case, when necessary, Oracle automatically allocate new space for the tablespace; so you have not to add space to tablespaces. Use this query to see list of tablespaces with used and free space and to see if each tablespace is autoextensible:

SELECT
  a.file_id,
  a.tablespace_name,
  trunc(decode(a.autoextensible,'YES',a.maxsize-a.bytes+b.free,'NO',b.free)/1024/1024) free_mb,
  trunc(a.bytes/1024/1024) size_mb,
  trunc(a.maxsize/1024/1024) maxsize_mb,
  a.autoextensible ae,
  trunc(decode(a.autoextensible,'YES',(a.maxsize-a.bytes+b.free)/a.maxsize*100,'NO',b.free/a.maxsize*100)) free_pct
FROM
  (SELECT
     file_id,
     tablespace_name,
     autoextensible,
     bytes,
  ...]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/tablespaces-with-autoextend-parameter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31223</title>
		<link>http://www.dberrorcode.com/ora-31223/</link>
		<comments>http://www.dberrorcode.com/ora-31223/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:52:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: cannot open more than string LDAP server connections]]></category>
		<category><![CDATA[ORA 31223]]></category>
		<category><![CDATA[ORA-31223 Action]]></category>
		<category><![CDATA[ORA-31223 Cause]]></category>
		<category><![CDATA[ora-31223: DBMS_LDAP: cannot open more than string LDAP server connections]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31223]]></category>
		<category><![CDATA[oracle error 31223]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10208</guid>
		<description><![CDATA[
ORA-31223: DBMS_LDAP: cannot open more than string LDAP server connections
Cause: An attempt was made to open more than the maximum allowed LDAP server connections.
Action: Free unused connections.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31223/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31228</title>
		<link>http://www.dberrorcode.com/ora-31228/</link>
		<comments>http://www.dberrorcode.com/ora-31228/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:52:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: invalid MOD_ARRAY]]></category>
		<category><![CDATA[ORA 31228]]></category>
		<category><![CDATA[ORA-31228 Action]]></category>
		<category><![CDATA[ORA-31228 Cause]]></category>
		<category><![CDATA[ora-31228: DBMS_LDAP: invalid MOD_ARRAY]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31228]]></category>
		<category><![CDATA[oracle error 31228]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10213</guid>
		<description><![CDATA[
ORA-31228: DBMS_LDAP: invalid MOD_ARRAY
Cause: An attempt was made by a PL/SQL module to use a MOD_ARRAY which is not valid and might have already been freed.
Action: Check the MOD_ARRAY in PL/SQL module involving DBMS_LDAP.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31228/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31398</title>
		<link>http://www.dberrorcode.com/ora-31398/</link>
		<comments>http://www.dberrorcode.com/ora-31398/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:52:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: Shared servers are not supported.]]></category>
		<category><![CDATA[ORA 31398]]></category>
		<category><![CDATA[ORA-31398 Action]]></category>
		<category><![CDATA[ORA-31398 Cause]]></category>
		<category><![CDATA[ora-31398: DBMS_LDAP: Shared servers are not supported.]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31398]]></category>
		<category><![CDATA[oracle error 31398]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10218</guid>
		<description><![CDATA[
ORA-31398: DBMS_LDAP: Shared servers are not supported.
Cause: The session executing functions from the DBMS_LDAP package is being handled by a shared server in the Database.
Action: Use dedicated database sessions to execute functions in the DBMS_LDAP package.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31398/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31404</title>
		<link>http://www.dberrorcode.com/ora-31404/</link>
		<comments>http://www.dberrorcode.com/ora-31404/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:52:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[all input parameters are null]]></category>
		<category><![CDATA[ORA 31404]]></category>
		<category><![CDATA[ORA-31404 Action]]></category>
		<category><![CDATA[ORA-31404 Cause]]></category>
		<category><![CDATA[ora-31404: all input parameters are null]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31404]]></category>
		<category><![CDATA[oracle error 31404]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10223</guid>
		<description><![CDATA[
ORA-31404: all input parameters are null
Cause: All input parameters are null. At least one property must be altered.
Action: Call the procedure again, making sure that all the required parameters have been specified. Ensure that at least one parameter is not null. Refer to user documentation for the correct way of calling this procedure.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31404/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31409</title>
		<link>http://www.dberrorcode.com/ora-31409/</link>
		<comments>http://www.dberrorcode.com/ora-31409/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:52:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[one or more values for input parameters are incorrect]]></category>
		<category><![CDATA[ORA 31409]]></category>
		<category><![CDATA[ORA-31409 Action]]></category>
		<category><![CDATA[ORA-31409 Cause]]></category>
		<category><![CDATA[ora-31409: one or more values for input parameters are incorrect]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31409]]></category>
		<category><![CDATA[oracle error 31409]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10228</guid>
		<description><![CDATA[
ORA-31409: one or more values for input parameters are incorrect
Cause: One or more of the inputs to the procedure had invalid values.
Action: Identify the bad parameter(s) and supply correct values to the procedure.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31409/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enlarge a datafile</title>
		<link>http://www.dberrorcode.com/enlarge-a-datafile/</link>
		<comments>http://www.dberrorcode.com/enlarge-a-datafile/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:52:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Code]]></category>
		<category><![CDATA[alter database datafile]]></category>
		<category><![CDATA[alter database datafile resize]]></category>
		<category><![CDATA[Enlarge a datafile]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10310</guid>
		<description><![CDATA[Enlarge a datafile

ALTER DATABASE datafile '/path/datafile.dbf' resize 1024M;

]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/enlarge-a-datafile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31224</title>
		<link>http://www.dberrorcode.com/ora-31224/</link>
		<comments>http://www.dberrorcode.com/ora-31224/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:48:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: invalid LDAP session]]></category>
		<category><![CDATA[ORA 31224]]></category>
		<category><![CDATA[ORA-31224 Action]]></category>
		<category><![CDATA[ORA-31224 Cause]]></category>
		<category><![CDATA[ora-31224: DBMS_LDAP: invalid LDAP session]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31224]]></category>
		<category><![CDATA[oracle error 31224]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10209</guid>
		<description><![CDATA[
ORA-31224: DBMS_LDAP: invalid LDAP session
Cause: An attempt was made by a PL/SQL module to use an LDAP session which is not valid and might have already been closed.
Action: Check the LDAP session handle in PL/SQL module involving DBMS_LDAP.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31224/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31229</title>
		<link>http://www.dberrorcode.com/ora-31229/</link>
		<comments>http://www.dberrorcode.com/ora-31229/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:48:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: invalid input parameter]]></category>
		<category><![CDATA[ORA 31229]]></category>
		<category><![CDATA[ORA-31229 Action]]></category>
		<category><![CDATA[ORA-31229 Cause]]></category>
		<category><![CDATA[ora-31229: DBMS_LDAP: invalid input parameter]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31229]]></category>
		<category><![CDATA[oracle error 31229]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10214</guid>
		<description><![CDATA[
ORA-31229: DBMS_LDAP: invalid input parameter
Cause: An invalid argument has been passed by a PL/SQL module to a DBMS_LDAP subprogram
Action: Check the input argument to the DBMS_LDAP subprogram in PL/SQL module involving DBMS_LDAP.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31229/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31399</title>
		<link>http://www.dberrorcode.com/ora-31399/</link>
		<comments>http://www.dberrorcode.com/ora-31399/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:48:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[Cannot contact LDAP server string at port number]]></category>
		<category><![CDATA[ORA 31399]]></category>
		<category><![CDATA[ORA-31399 Action]]></category>
		<category><![CDATA[ORA-31399 Cause]]></category>
		<category><![CDATA[ora-31399: Cannot contact LDAP server string at port number]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31399]]></category>
		<category><![CDATA[oracle error 31399]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10219</guid>
		<description><![CDATA[
ORA-31399: Cannot contact LDAP server string at port number
Cause: The LDAP server specified could not be contacted. This can happen if the server is down or inaccessible.
Action: Contact the administrator of the LDAP server ////////////////////////// End of DBMS_LDAP &#38; OiD messages
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31399/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31405</title>
		<link>http://www.dberrorcode.com/ora-31405/</link>
		<comments>http://www.dberrorcode.com/ora-31405/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:48:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[cannot make changes while change set string is advancing]]></category>
		<category><![CDATA[ORA 31405]]></category>
		<category><![CDATA[ORA-31405 Action]]></category>
		<category><![CDATA[ORA-31405 Cause]]></category>
		<category><![CDATA[ora-31405: cannot make changes while change set string is advancing]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31405]]></category>
		<category><![CDATA[oracle error 31405]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10224</guid>
		<description><![CDATA[
ORA-31405: cannot make changes while change set string is advancing
Cause: The change set is currently advancing. Change sources related to an advancing change set cannot be altered. Change tables related to the advancing change set cannot be created, altered or dropped. Some or all the parameters of the change set cannot be altered while the set is advancing.
Action: Wait until the change set has finished advancing, then reissue the command. If altering the change set, only the advance_enable parameter can be altered during an advance.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31405/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31410</title>
		<link>http://www.dberrorcode.com/ora-31410/</link>
		<comments>http://www.dberrorcode.com/ora-31410/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:48:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[change set string is not an existing change set]]></category>
		<category><![CDATA[ORA 31410]]></category>
		<category><![CDATA[ORA-31410 Action]]></category>
		<category><![CDATA[ORA-31410 Cause]]></category>
		<category><![CDATA[ora-31410: change set string is not an existing change set]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31410]]></category>
		<category><![CDATA[oracle error 31410]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10229</guid>
		<description><![CDATA[
ORA-31410: change set string is not an existing change set
Cause: Could not find an existing change set by this name.
Action: Check the spelling of the change set name. Call the procedure again, passing the correct change set name.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31410/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to recompile all invalid objects Oracle</title>
		<link>http://www.dberrorcode.com/how-to-recompile-all-invalid-objects-oracle/</link>
		<comments>http://www.dberrorcode.com/how-to-recompile-all-invalid-objects-oracle/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:48:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[ORA-HOWTO]]></category>
		<category><![CDATA[Oracle Code]]></category>
		<category><![CDATA[dba_objects]]></category>
		<category><![CDATA[find invalid objects]]></category>
		<category><![CDATA[invalid objects recompile]]></category>
		<category><![CDATA[invalid objects sql]]></category>
		<category><![CDATA[Oracle invalid objects]]></category>
		<category><![CDATA[recompile all invalid objects]]></category>
		<category><![CDATA[recompile all invalid objects Oracle]]></category>
		<category><![CDATA[recompile invalid objects Oracle]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10306</guid>
		<description><![CDATA[This query shows all invalid objects in the Oracle database:

SELECT owner, object_name, object_type, STATUS
FROM dba_objects WHERE STATUS='INVALID' ORDER BY owner DESC;

Next is a metaquery that generates all statements to recompile invalid objects:

SELECT 'ALTER '&#124;&#124;decode(owner,'PUBLIC','PUBLIC')&#124;&#124;' '&#124;&#124;
decode(object_type,'PACKAGE BODY','PACKAGE','TYPE BODY','TYPE',object_type)&#124;&#124;' '&#124;&#124;
decode(owner,'PUBLIC',NULL,owner&#124;&#124;'.')&#124;&#124;'"'&#124;&#124;object_name&#124;&#124;'" COMPILE '&#124;&#124;
decode(object_type,'PACKAGE BODY','BODY;','TYPE BODY','BODY;',';')
FROM dba_objects WHERE STATUS='INVALID' ORDER BY owner DESC;

]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/how-to-recompile-all-invalid-objects-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31220</title>
		<link>http://www.dberrorcode.com/ora-31220/</link>
		<comments>http://www.dberrorcode.com/ora-31220/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:44:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: PL/SQL - Invalid LDAP SSL wallet location.]]></category>
		<category><![CDATA[ORA 31220]]></category>
		<category><![CDATA[ORA-31220 Action]]></category>
		<category><![CDATA[ORA-31220 Cause]]></category>
		<category><![CDATA[ora-31220: DBMS_LDAP: PL/SQL - Invalid LDAP SSL wallet location.]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31220]]></category>
		<category><![CDATA[oracle error 31220]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10205</guid>
		<description><![CDATA[
ORA-31220: DBMS_LDAP: PL/SQL &#8211; Invalid LDAP SSL wallet location.
Cause: There has been an error in the DBMS_LDAP operation.
Action: Please check the LDAP sslwrl value that you use for LDAP operation, or report the error number and description to Oracle Support.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31220/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31225</title>
		<link>http://www.dberrorcode.com/ora-31225/</link>
		<comments>http://www.dberrorcode.com/ora-31225/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:44:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: invalid BER_ELEMENT]]></category>
		<category><![CDATA[ORA 31225]]></category>
		<category><![CDATA[ORA-31225 Action]]></category>
		<category><![CDATA[ORA-31225 Cause]]></category>
		<category><![CDATA[ora-31225: DBMS_LDAP: invalid BER_ELEMENT]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31225]]></category>
		<category><![CDATA[oracle error 31225]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10210</guid>
		<description><![CDATA[
ORA-31225: DBMS_LDAP: invalid BER_ELEMENT
Cause: An attempt was made by a PL/SQL module to use a BER_ELEMENT which is not valid and might have already been freed.
Action: Check the BER_ELEMENT in PL/SQL module involving DBMS_LDAP.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31225/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31230</title>
		<link>http://www.dberrorcode.com/ora-31230/</link>
		<comments>http://www.dberrorcode.com/ora-31230/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:44:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: unable to dynamically allocate additional memory]]></category>
		<category><![CDATA[ORA 31230]]></category>
		<category><![CDATA[ORA-31230 Action]]></category>
		<category><![CDATA[ORA-31230 Cause]]></category>
		<category><![CDATA[ora-31230: DBMS_LDAP: unable to dynamically allocate additional memory]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31230]]></category>
		<category><![CDATA[oracle error 31230]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10215</guid>
		<description><![CDATA[
ORA-31230: DBMS_LDAP: unable to dynamically allocate additional memory
Cause: An error occured during dynamic memory allocation from session heap.
Action: Verify that adequate memory resources are available.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31230/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31401</title>
		<link>http://www.dberrorcode.com/ora-31401/</link>
		<comments>http://www.dberrorcode.com/ora-31401/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:44:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[change source string is not an existing change source]]></category>
		<category><![CDATA[ORA 31401]]></category>
		<category><![CDATA[ORA-31401 Action]]></category>
		<category><![CDATA[ORA-31401 Cause]]></category>
		<category><![CDATA[ora-31401: change source string is not an existing change source]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31401]]></category>
		<category><![CDATA[oracle error 31401]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10220</guid>
		<description><![CDATA[
ORA-31401: change source string is not an existing change source
Cause: The caller did not use the name of an existing change source. The name given does not match the name of any existing change source.
Action: Check the spelling of the change source name. Choose an existing change source.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31401/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31406</title>
		<link>http://www.dberrorcode.com/ora-31406/</link>
		<comments>http://www.dberrorcode.com/ora-31406/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:44:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[change source string is referenced by a change set]]></category>
		<category><![CDATA[ORA 31406]]></category>
		<category><![CDATA[ORA-31406 Action]]></category>
		<category><![CDATA[ORA-31406 Cause]]></category>
		<category><![CDATA[ora-31406: change source string is referenced by a change set]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31406]]></category>
		<category><![CDATA[oracle error 31406]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10225</guid>
		<description><![CDATA[
ORA-31406: change source string is referenced by a change set
Cause: The operation cannot complete because this change source is referenced by one or more change sets.
Action: Drop the change sets first, then re-issue the command. May have to drop some change tables before the change sets are dropped.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31406/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31411</title>
		<link>http://www.dberrorcode.com/ora-31411/</link>
		<comments>http://www.dberrorcode.com/ora-31411/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:44:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[change set string is referenced by a change table]]></category>
		<category><![CDATA[ORA 31411]]></category>
		<category><![CDATA[ORA-31411 Action]]></category>
		<category><![CDATA[ORA-31411 Cause]]></category>
		<category><![CDATA[ora-31411: change set string is referenced by a change table]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31411]]></category>
		<category><![CDATA[oracle error 31411]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10230</guid>
		<description><![CDATA[
ORA-31411: change set string is referenced by a change table
Cause: The operation cannot be performed because the change set contains one or more change tables.
Action: You will need to drop the change table(s) first, then repeat the operation
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31411/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to kill sessions in Oracle</title>
		<link>http://www.dberrorcode.com/how-to-kill-sessions-in-oracle/</link>
		<comments>http://www.dberrorcode.com/how-to-kill-sessions-in-oracle/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:44:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Code]]></category>
		<category><![CDATA[SQL*Plus]]></category>
		<category><![CDATA[How to kill sessions]]></category>
		<category><![CDATA[kill sessions in Oracle]]></category>
		<category><![CDATA[kill sessions sql]]></category>
		<category><![CDATA[Oracle kill sessions]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10302</guid>
		<description><![CDATA[You must specify sid and serial identifing the session to kill. You can find these values querying the V$SESSION view:

SQL&#62; SELECT sid, serial#, username from v$session; 

Killing a session is very simple:

SQL&#62; ALTER system KILL session '&#60;sid,serial&#62;';

]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/how-to-kill-sessions-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31221</title>
		<link>http://www.dberrorcode.com/ora-31221/</link>
		<comments>http://www.dberrorcode.com/ora-31221/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:40:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: PL/SQL - Invalid LDAP SSL wallet passwd.]]></category>
		<category><![CDATA[ORA 31221]]></category>
		<category><![CDATA[ORA-31221 Action]]></category>
		<category><![CDATA[ORA-31221 Cause]]></category>
		<category><![CDATA[ora-31221: DBMS_LDAP: PL/SQL - Invalid LDAP SSL wallet passwd.]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31221]]></category>
		<category><![CDATA[oracle error 31221]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10206</guid>
		<description><![CDATA[
ORA-31221: DBMS_LDAP: PL/SQL &#8211; Invalid LDAP SSL wallet passwd.
Cause: There has been an error in the DBMS_LDAP operation.
Action: Please check the LDAP sslpasswd value that you use for LDAP operation, or report the error number and description to Oracle Support.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31221/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31226</title>
		<link>http://www.dberrorcode.com/ora-31226/</link>
		<comments>http://www.dberrorcode.com/ora-31226/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:40:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: MOD_ARRAY size limit exceeded]]></category>
		<category><![CDATA[ORA 31226]]></category>
		<category><![CDATA[ORA-31226 Action]]></category>
		<category><![CDATA[ORA-31226 Cause]]></category>
		<category><![CDATA[ora-31226: DBMS_LDAP: MOD_ARRAY size limit exceeded]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31226]]></category>
		<category><![CDATA[oracle error 31226]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10211</guid>
		<description><![CDATA[
ORA-31226: DBMS_LDAP: MOD_ARRAY size limit exceeded
Cause: An attempt was made by a PL/SQL module to add an element beyond the MOD_ARRAY size limit.
Action: Increase the MOD_ARRAY size limit in PL/SQL module involving DBMS_LDAP.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31226/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31231</title>
		<link>http://www.dberrorcode.com/ora-31231/</link>
		<comments>http://www.dberrorcode.com/ora-31231/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:40:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: invalid PROPERTY_SET]]></category>
		<category><![CDATA[ORA 31231]]></category>
		<category><![CDATA[ORA-31231 Action]]></category>
		<category><![CDATA[ORA-31231 Cause]]></category>
		<category><![CDATA[ora-31231: DBMS_LDAP: invalid PROPERTY_SET]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31231]]></category>
		<category><![CDATA[oracle error 31231]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10216</guid>
		<description><![CDATA[
ORA-31231: DBMS_LDAP: invalid PROPERTY_SET
Cause: An attempt was made by a PL/SQL module to use a PROPERTY_SET which is not valid and might have already been freed.
Action: Check the PROPERTY_SET in PL/SQL module involving DBMS_LDAP.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31231/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31402</title>
		<link>http://www.dberrorcode.com/ora-31402/</link>
		<comments>http://www.dberrorcode.com/ora-31402/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:40:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[ORA 31402]]></category>
		<category><![CDATA[ORA-31402 Action]]></category>
		<category><![CDATA[ORA-31402 Cause]]></category>
		<category><![CDATA[ora-31402: unrecognized parameter string]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31402]]></category>
		<category><![CDATA[oracle error 31402]]></category>
		<category><![CDATA[unrecognized parameter string]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10221</guid>
		<description><![CDATA[
ORA-31402: unrecognized parameter string
Cause: Unrecognized parameter was detected.
Action: Check for too many parameters in the call.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31402/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31407</title>
		<link>http://www.dberrorcode.com/ora-31407/</link>
		<comments>http://www.dberrorcode.com/ora-31407/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:40:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[end_date must be greater than the begin_date]]></category>
		<category><![CDATA[ORA 31407]]></category>
		<category><![CDATA[ORA-31407 Action]]></category>
		<category><![CDATA[ORA-31407 Cause]]></category>
		<category><![CDATA[ora-31407: end_date must be greater than the begin_date]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31407]]></category>
		<category><![CDATA[oracle error 31407]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10226</guid>
		<description><![CDATA[
ORA-31407: end_date must be greater than the begin_date
Cause: The end data of the change set is earlier than the begin date. The end date must always be later in time than the begin date, so that the duration between the begin and end dates is a positive amount of time.
Action: Change the begin date and/or the end date, so that the end date is later than the begin date.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31407/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tablespace used and free space</title>
		<link>http://www.dberrorcode.com/tablespace-used-and-free-space/</link>
		<comments>http://www.dberrorcode.com/tablespace-used-and-free-space/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:40:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Code]]></category>
		<category><![CDATA[oracle Tablespace free space]]></category>
		<category><![CDATA[oracle Tablespace used space]]></category>
		<category><![CDATA[Tablespace free space]]></category>
		<category><![CDATA[Tablespace usage]]></category>
		<category><![CDATA[Tablespace used and free space sql]]></category>
		<category><![CDATA[Tablespace used space]]></category>
		<category><![CDATA[used Tablespace size]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10308</guid>
		<description><![CDATA[This query shows how many bytes are used by a tablespace and how many are allocated:

SET LINES 150
SET pages 300
col "Tablespace" FOR a30
col "Total MB" FOR a15
col "Used MB" FOR a15
col "% Used" FOR a15
 
SELECT
  tablespace_name "Tablespace",
  d.STATUS "Status",
  TO_CHAR((a.bytes / 1048576),'99,999,990.900') "Total MB",
  TO_CHAR(((a.bytes - DECODE(f.bytes, NULL, 0, f.bytes)) / 1048576),'99,999,990.900') "Used MB",
  TO_CHAR((((a.bytes - DECODE(f.bytes, NULL, 0, f.bytes)) / 1048576)*100) / (a.bytes / 1048576),'999,999.9') "% Used"
FROM
  (sys.dba_tablespaces d JOIN sys.sm$ts_avail a USING (tablespace_name))
  LEFT OUTER JOIN sys.sm$ts_free f USING (tablespace_name)
ORDER BY ...]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/tablespace-used-and-free-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31222</title>
		<link>http://www.dberrorcode.com/ora-31222/</link>
		<comments>http://www.dberrorcode.com/ora-31222/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: PL/SQL - Invalid LDAP SSL authentication mode.]]></category>
		<category><![CDATA[ORA 31222]]></category>
		<category><![CDATA[ORA-31222 Action]]></category>
		<category><![CDATA[ORA-31222 Cause]]></category>
		<category><![CDATA[ora-31222: DBMS_LDAP: PL/SQL - Invalid LDAP SSL authentication mode.]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31222]]></category>
		<category><![CDATA[oracle error 31222]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10207</guid>
		<description><![CDATA[
ORA-31222: DBMS_LDAP: PL/SQL &#8211; Invalid LDAP SSL authentication mode.
Cause: There has been an error in the DBMS_LDAP operation.
Action: Please check the LDAP sslauth value that you use for LDAP operation, or report the error number and description to Oracle Support.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31222/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31227</title>
		<link>http://www.dberrorcode.com/ora-31227/</link>
		<comments>http://www.dberrorcode.com/ora-31227/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: invalid LDAP MESSAGE handle]]></category>
		<category><![CDATA[ORA 31227]]></category>
		<category><![CDATA[ORA-31227 Action]]></category>
		<category><![CDATA[ORA-31227 Cause]]></category>
		<category><![CDATA[ora-31227: DBMS_LDAP: invalid LDAP MESSAGE handle]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31227]]></category>
		<category><![CDATA[oracle error 31227]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10212</guid>
		<description><![CDATA[
ORA-31227: DBMS_LDAP: invalid LDAP MESSAGE handle
Cause: An attempt was made by a PL/SQL module to use an LDAP MESSAGE handle which is not valid and might have already been freed.
Action: Check the LDAP MESSAGE handle in PL/SQL module involving DBMS_LDAP.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31227/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31232</title>
		<link>http://www.dberrorcode.com/ora-31232/</link>
		<comments>http://www.dberrorcode.com/ora-31232/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[DBMS_LDAP: invalid MOD_PROPERTY_SET]]></category>
		<category><![CDATA[ORA 31232]]></category>
		<category><![CDATA[ORA-31232 Action]]></category>
		<category><![CDATA[ORA-31232 Cause]]></category>
		<category><![CDATA[ora-31232: DBMS_LDAP: invalid MOD_PROPERTY_SET]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31232]]></category>
		<category><![CDATA[oracle error 31232]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10217</guid>
		<description><![CDATA[
ORA-31232: DBMS_LDAP: invalid MOD_PROPERTY_SET
Cause: An attempt was made by a PL/SQL module to use a MOD_PROPERTY_SET which is not valid and might have already been freed.
Action: Check the MOD_PROPERTY_SET in PL/SQL module involving DBMS_LDAP.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31232/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31403</title>
		<link>http://www.dberrorcode.com/ora-31403/</link>
		<comments>http://www.dberrorcode.com/ora-31403/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[change table string already contains a column string]]></category>
		<category><![CDATA[ORA 31403]]></category>
		<category><![CDATA[ORA-31403 Action]]></category>
		<category><![CDATA[ORA-31403 Cause]]></category>
		<category><![CDATA[ora-31403: change table string already contains a column string]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31403]]></category>
		<category><![CDATA[oracle error 31403]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10222</guid>
		<description><![CDATA[
ORA-31403: change table string already contains a column string
Cause: Issued ALTER_CHANGE_TABLE with an add operation but a column by this name already exists in the specified table.
Action: Check the names and call the procedure again.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31403/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-31408</title>
		<link>http://www.dberrorcode.com/ora-31408/</link>
		<comments>http://www.dberrorcode.com/ora-31408/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[invalid value specified for begin_scn or end_scn]]></category>
		<category><![CDATA[ORA 31408]]></category>
		<category><![CDATA[ORA-31408 Action]]></category>
		<category><![CDATA[ORA-31408 Cause]]></category>
		<category><![CDATA[ora-31408: invalid value specified for begin_scn or end_scn]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 31408]]></category>
		<category><![CDATA[oracle error 31408]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10227</guid>
		<description><![CDATA[
ORA-31408: invalid value specified for begin_scn or end_scn
Cause: The begin_scn was not greater than zero. The end_scn was less than zero. The end_scn was less than the begin_scn.
Action: Check the values of both begin_scn and end_scn. Correct them to make sure that they form a legal SCN range. An end_scn value of zero indicates an infinite scn range.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-31408/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling DBMS_OUTPUT</title>
		<link>http://www.dberrorcode.com/enabling-dbms_output/</link>
		<comments>http://www.dberrorcode.com/enabling-dbms_output/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PLSQL]]></category>
		<category><![CDATA[SQL*Plus]]></category>
		<category><![CDATA[DBMS_OUTPUT]]></category>
		<category><![CDATA[dbms_output.put_line]]></category>
		<category><![CDATA[how to Enabling DBMS_OUTPUT]]></category>
		<category><![CDATA[oracle dbms_output]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10299</guid>
		<description><![CDATA[DBMS_OUTPUT is a package that let you able to write some output on the screen. In SQL*Plus you can enable the output with this command:

SQL&#62; SET serverout ON

All output will be written in a buffer. The default size of the buffer is 20,000 bytes. If you want a different buffer size you must use the enable procedure:

DBMS_OUTPUT.ENABLE (
   buffer_size IN INTEGER DEFAULT 20000);

The defualt buffer size is 20,000 bytes, the maximum size is 1,000,000 bytes and the minimum is 2,000. To enable an unlimited buffer size you must ...]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/enabling-dbms_output/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ORA-36394</title>
		<link>http://www.dberrorcode.com/ora-36394/</link>
		<comments>http://www.dberrorcode.com/ora-36394/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[(XSMXCLEA04) When using CLEAR on the AGGMAP workspace object, CACHE is the only valid directive.]]></category>
		<category><![CDATA[ORA 36394]]></category>
		<category><![CDATA[ORA-36394 Action]]></category>
		<category><![CDATA[ORA-36394 Cause]]></category>
		<category><![CDATA[ora-36394: (XSMXCLEA04) When using CLEAR on the AGGMAP workspace object, CACHE is the only valid directive.]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 36394]]></category>
		<category><![CDATA[oracle error 36394]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10158</guid>
		<description><![CDATA[
ORA-36394: (XSMXCLEA04) When using CLEAR on the AGGMAP workspace object, CACHE is the only valid directive.
Cause: The user attempted to CLEAR an AGGMAP using a directive other than CACHE
Action: Amend the CLEAR line to only use the CACHE keyword with AGGMAPs.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-36394/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-36402</title>
		<link>http://www.dberrorcode.com/ora-36402/</link>
		<comments>http://www.dberrorcode.com/ora-36402/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[(XSSPROP03) The property $string requires a leading \"$\" because it is a system-reserved property name.]]></category>
		<category><![CDATA[ORA 36402]]></category>
		<category><![CDATA[ORA-36402 Action]]></category>
		<category><![CDATA[ORA-36402 Cause]]></category>
		<category><![CDATA[ora-36402: (XSSPROP03) The property $string requires a leading \"$\" because it is a system-reserved property name.]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 36402]]></category>
		<category><![CDATA[oracle error 36402]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10163</guid>
		<description><![CDATA[
ORA-36402: (XSSPROP03) The property $string requires a leading &#8220;$&#8221; because it is a system-reserved property name.
Cause: The user tried to specify a property name which is reserved, but did not use a leading $
Action: Either add a leading $ or choose another property name
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-36402/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-36410</title>
		<link>http://www.dberrorcode.com/ora-36410/</link>
		<comments>http://www.dberrorcode.com/ora-36410/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[(VCACHE03) number is an invalid value for the $VARCACHE property. The only permissible values are DEFAULT, SESSION, VARIABLE, and NONE.]]></category>
		<category><![CDATA[ORA 36410]]></category>
		<category><![CDATA[ORA-36410 Action]]></category>
		<category><![CDATA[ORA-36410 Cause]]></category>
		<category><![CDATA[ora-36410: (VCACHE03) number is an invalid value for the $VARCACHE property. The only permissible values are DEFAULT, SESSION, VARIABLE, and NONE.]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 36410]]></category>
		<category><![CDATA[oracle error 36410]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10168</guid>
		<description><![CDATA[
ORA-36410: (VCACHE03) number is an invalid value for the $VARCACHE property. The only permissible values are DEFAULT, SESSION, VARIABLE, and NONE.
Cause: The user tried to assign an invalid value to the $VARCACHE property on a variable
Action: Assign one of the valid values
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-36410/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-36616</title>
		<link>http://www.dberrorcode.com/ora-36616/</link>
		<comments>http://www.dberrorcode.com/ora-36616/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[(XSAGMODHIER01) %a workspace object workspace object MODEL %p cannot be added to AGGMAP %p, because it is dimensioned by a dimension not contained in the AGGMAP.]]></category>
		<category><![CDATA[ORA 36616]]></category>
		<category><![CDATA[ORA-36616 Action]]></category>
		<category><![CDATA[ORA-36616 Cause]]></category>
		<category><![CDATA[ora-36616: (XSAGMODHIER01) %a workspace object workspace object MODEL %p cannot be added to AGGMAP %p, because it is dimensioned by a dimension not contained in the AGGMAP.]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 36616]]></category>
		<category><![CDATA[oracle error 36616]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10173</guid>
		<description><![CDATA[
ORA-36616: (XSAGMODHIER01) %a workspace object workspace object MODEL %p cannot be added to AGGMAP %p, because it is dimensioned by a dimension not contained in the AGGMAP.
Cause: The dimension of the model is not a dimension of the aggmap.
Action:
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-36616/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-30372</title>
		<link>http://www.dberrorcode.com/ora-30372/</link>
		<comments>http://www.dberrorcode.com/ora-30372/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[fine grain access policy conflicts with materialized view]]></category>
		<category><![CDATA[ORA 30372]]></category>
		<category><![CDATA[ORA-30372 Action]]></category>
		<category><![CDATA[ORA-30372 Cause]]></category>
		<category><![CDATA[ora-30372: fine grain access policy conflicts with materialized view]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 30372]]></category>
		<category><![CDATA[oracle error 30372]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10178</guid>
		<description><![CDATA[
ORA-30372: fine grain access policy conflicts with materialized view
Cause: A fine grain access control procedure has applied a non-null policy to the query for the materialized view.
Action: In order for the materialized view to work correctly, any fine grain access control procedure in effect for the query must return a null policy when the materialized view is being created or refreshed. This may be done by ensuring that the usernames for the creator, owner, and invoker of refresh procedures for the materialized view all receive a null policy by the ...]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-30372/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-30377</title>
		<link>http://www.dberrorcode.com/ora-30377/</link>
		<comments>http://www.dberrorcode.com/ora-30377/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[ORA 30377]]></category>
		<category><![CDATA[ORA-30377 Action]]></category>
		<category><![CDATA[ORA-30377 Cause]]></category>
		<category><![CDATA[ora-30377: table string.MV_CAPABILITIES_TABLE not found]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 30377]]></category>
		<category><![CDATA[oracle error 30377]]></category>
		<category><![CDATA[table string.MV_CAPABILITIES_TABLE not found]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10183</guid>
		<description><![CDATA[
ORA-30377: table string.MV_CAPABILITIES_TABLE not found
Cause: You have used the DBMS_MVIEW.EXPLAIN_MVIEW() API before you have defined the MV_CAPABILITIES_TABLE.
Action: Invoke the admin/utlxmv.sql script after connecting to the desired schema.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-30377/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-30384</title>
		<link>http://www.dberrorcode.com/ora-30384/</link>
		<comments>http://www.dberrorcode.com/ora-30384/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[ORA 30384]]></category>
		<category><![CDATA[ORA-30384 Action]]></category>
		<category><![CDATA[ORA-30384 Cause]]></category>
		<category><![CDATA[ora-30384: specified column name does not exist in the attribute]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 30384]]></category>
		<category><![CDATA[oracle error 30384]]></category>
		<category><![CDATA[specified column name does not exist in the attribute]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10188</guid>
		<description><![CDATA[
ORA-30384: specified column name does not exist in the attribute
Cause: A column was encountered that is not defined within the attribute.
Action: Check the attribute column name spelling.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-30384/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-30394</title>
		<link>http://www.dberrorcode.com/ora-30394/</link>
		<comments>http://www.dberrorcode.com/ora-30394/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[ORA 30394]]></category>
		<category><![CDATA[ORA-30394 Action]]></category>
		<category><![CDATA[ORA-30394 Cause]]></category>
		<category><![CDATA[ora-30394: source statement identical to the destination statement]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 30394]]></category>
		<category><![CDATA[oracle error 30394]]></category>
		<category><![CDATA[source statement identical to the destination statement]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10193</guid>
		<description><![CDATA[
ORA-30394: source statement identical to the destination statement
Cause: The source statement was identical to the destination statement
Action: Make sure both source and destination statements are not identical
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-30394/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-30401</title>
		<link>http://www.dberrorcode.com/ora-30401/</link>
		<comments>http://www.dberrorcode.com/ora-30401/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[JOIN KEY columns must be non-null]]></category>
		<category><![CDATA[ORA 30401]]></category>
		<category><![CDATA[ORA-30401 Action]]></category>
		<category><![CDATA[ORA-30401 Cause]]></category>
		<category><![CDATA[ora-30401: JOIN KEY columns must be non-null]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 30401]]></category>
		<category><![CDATA[oracle error 30401]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10198</guid>
		<description><![CDATA[
ORA-30401: JOIN KEY columns must be non-null
Cause: The dimension statement failed because the column(s) in the JOIN KEY clause permitted NULL values. The JOIN KEY columns are related to the columns of the dimension s skip levels in one or both of the following ways:
1. A skip level is defined over one or more of the JOIN KEY columns.
2. The attribute clauses of a skip level determine one or more of the JOIN KEY columns.
Action: Modify the JOIN KEY columns so that they do not allow NULL values.
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-30401/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-30434</title>
		<link>http://www.dberrorcode.com/ora-30434/</link>
		<comments>http://www.dberrorcode.com/ora-30434/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[ORA 30434]]></category>
		<category><![CDATA[ORA-30434 Action]]></category>
		<category><![CDATA[ORA-30434 Cause]]></category>
		<category><![CDATA[ora-30434: refresh method must be one of FC?AN, not string]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 30434]]></category>
		<category><![CDATA[oracle error 30434]]></category>
		<category><![CDATA[refresh method must be one of FC?AN, not string]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10203</guid>
		<description><![CDATA[
ORA-30434: refresh method must be one of FC?AN, not string
Cause: An invalid refresh method was specified
Action: Verify that the refresh method is one of FC?AN
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-30434/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-36398</title>
		<link>http://www.dberrorcode.com/ora-36398/</link>
		<comments>http://www.dberrorcode.com/ora-36398/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:15:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle Error]]></category>
		<category><![CDATA[(XSSPROP01) Property name number is invalid because only system-reserved property names can begin with $.]]></category>
		<category><![CDATA[ORA 36398]]></category>
		<category><![CDATA[ORA-36398 Action]]></category>
		<category><![CDATA[ORA-36398 Cause]]></category>
		<category><![CDATA[ora-36398: (XSSPROP01) Property name number is invalid because only system-reserved property names can begin with $.]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle 36398]]></category>
		<category><![CDATA[oracle error 36398]]></category>

		<guid isPermaLink="false">http://www.dberrorcode.com/?p=10159</guid>
		<description><![CDATA[
ORA-36398: (XSSPROP01) Property name number is invalid because only system-reserved property names can begin with $.
Cause: The user attempted to add a property which starts with $ but is not a reserved property name
Action: Remove the $ from the property name
]]></description>
		<wfw:commentRss>http://www.dberrorcode.com/ora-36398/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
