<?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>DBAPundits.com</title>
	<atom:link href="http://www.dbapundits.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dbapundits.com/blog</link>
	<description>Articles and resources for the DBAs.</description>
	<lastBuildDate>Wed, 20 Jan 2010 16:09:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Oracle 10g &#8211; ORA-01031 insufficient privileges</title>
		<link>http://www.dbapundits.com/blog/oracle-ora-errors/oracle-10g-ora-01031-insufficient-privileges/</link>
		<comments>http://www.dbapundits.com/blog/oracle-ora-errors/oracle-10g-ora-01031-insufficient-privileges/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:09:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ORA-errors]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=325</guid>
		<description><![CDATA[<p>The CONNECT role in Oracle 10g has fewer system privileges than it had in earlier versions of Oracle. When migrating databases from versions below Oracle 10g and especially if the users are recreated in the 10g databases with the privileges from the old version, certain privileges are required to be granted so that the application [...]]]></description>
			<content:encoded><![CDATA[<p>The CONNECT role in Oracle 10g has fewer system privileges than it had in earlier versions of Oracle. When migrating databases from versions below Oracle 10g and especially if the users are recreated in the 10g databases with the privileges from the old version, certain privileges are required to be granted so that the application users can connect to the database with proper privileges. This article discusses this special case on the occurrence of ORA-01031 error in Oracle 10g databases.</p>
<p>The &#8216;CONNECT&#8217; role in Oracle 10g has only &#8216;CREATE SESSION&#8217; privilege, whereas the previous version had some additional privileges. If the privileges are missing, the user won&#8217;t be able to create objects which will result in &#8216;ORA-01031 insufficient privileges&#8217; messages to the user.</p>
<p><strong>To fix the issue, grant the 8 privileges listed below to the users.</strong></p>
<p>In Oracle 9i, the CONNECT role had the following privileges:</p>
<pre class="brush: sql;">
SQL&gt;  select * from dba_sys_privs  where grantee='CONNECT';

GRANTEE                        PRIVILEGE                                ADM
------------------------------ ---------------------------------------- ---
CONNECT                        CREATE VIEW                              NO
CONNECT                        CREATE TABLE                             NO
CONNECT                        ALTER SESSION                            NO
CONNECT                        CREATE CLUSTER                           NO
CONNECT                        CREATE SESSION                           NO
CONNECT                        CREATE SYNONYM                           NO
CONNECT                        CREATE SEQUENCE                          NO
CONNECT                        CREATE DATABASE LINK                     NO

8 rows selected.
</pre>
<p>In Oracle 10g, only the &#8216;CREATE SESSION&#8217; privilege is granted to the CONNECT ROLE.</p>
<pre class="brush: sql;">
SQL&gt;  select * from dba_sys_privs  where grantee='CONNECT';

GRANTEE                        PRIVILEGE                                ADM
------------------------------ ---------------------------------------- ---
CONNECT                        CREATE SESSION                           NO

SQL&gt;
</pre>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Foracle-ora-errors%2Foracle-10g-ora-01031-insufficient-privileges%2F&amp;linkname=Oracle%2010g%20%26%238211%3B%20ORA-01031%20insufficient%20privileges"><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/oracle-ora-errors/oracle-10g-ora-01031-insufficient-privileges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-00942/ORA-00904/EXP-00056 with Oracle exp</title>
		<link>http://www.dbapundits.com/blog/oracle-ora-errors/ora-00942-ora-00904-exp-00056-with-oracle-exp/</link>
		<comments>http://www.dbapundits.com/blog/oracle-ora-errors/ora-00942-ora-00904-exp-00056-with-oracle-exp/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 13:37:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ORA-errors]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=321</guid>
		<description><![CDATA[<p>Oracle export utility when used to export from a lower version of database may not work due to compatibility issues as the export utility expects a set of  views that are not present in the database. Even patchset difference between the exp utility and the database can lead to similar issues.</p>
<p>The best bet to [...]]]></description>
			<content:encoded><![CDATA[<p>Oracle export utility when used to export from a lower version of database may not work due to compatibility issues as the export utility expects a set of  views that are not present in the database. Even patchset difference between the exp utility and the database can lead to similar issues.</p>
<p><strong>The best bet to deal with the issue is to use the lowest version available at the source/target database.</strong></p>
<p>If you are using Oracle client, opt for the lowest version available for taking the export.</p>
<p>The errors differ based on the version difference between exp utility and the database, the following errors are possible:</p>
<p>9i client against lower versions of 9i database or 10g clients against 9.2.0.4 database can cause the following messages in the export log:</p>
<p><strong>EXP-00056</strong> Oracle error 942 encountered<br />
<strong> ORA-00942</strong> table or view does not exist<br />
<strong> EXP-00000</strong> Export terminated unsuccessfully</p>
<p>On some 9i R2 versions, the error may be reported as below:</p>
<p><strong>EXP-00008</strong>: ORACLE error 942 encountered<br />
<strong> ORA-00942</strong>: table or view does not exist<br />
<strong> EXP-00024</strong>: Export views not installed, please notify your DBA<br />
<strong> EXP-00000</strong>: Export terminated unsuccessfully</p>
<p>9.2.0.6 export client against a 9.2.0.5 can cause the following messages in the export log during the export of partitioned tables.</p>
<p><strong>EXP-00056</strong>: ORACLE error 6550 encountered<br />
<strong> ORA-06550</strong>: line 1, column 48:<br />
<strong> PLS-00302</strong>: component &#8216;CHECK_MATCH_TEMPLATE&#8217; must be declared<br />
<strong> ORA-06550</strong>: line 1, column 14:<br />
PL/SQL: Statement ignored</p>
<p>10.2.0.4 client against a 10.2.0.3 database can cause the following messages in the export log during the export of operators.</p>
<p>. exporting operators<br />
<strong> EXP-00008</strong>: ORACLE error 904 encountered<br />
<strong> ORA-00904</strong>: &#8220;OLEVEL&#8221;: invalid identifier<br />
<strong> EXP-00000</strong>: Export terminated unsuccessfully</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Foracle-ora-errors%2Fora-00942-ora-00904-exp-00056-with-oracle-exp%2F&amp;linkname=ORA-00942%2FORA-00904%2FEXP-00056%20with%20Oracle%20exp"><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/oracle-ora-errors/ora-00942-ora-00904-exp-00056-with-oracle-exp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dbms_system.ksdwrt–Write messages to Oracle alert log</title>
		<link>http://www.dbapundits.com/blog/query-script/dbms_system-ksdwrt%e2%80%93write-messages-to-oracle-alert-log/</link>
		<comments>http://www.dbapundits.com/blog/query-script/dbms_system-ksdwrt%e2%80%93write-messages-to-oracle-alert-log/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 13:39:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Queries-Scripts]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=304</guid>
		<description><![CDATA[<p>Oracle provides a procedure to insert messages to the alert log and/or trace files for testing/development purposes. This can be used to check the effectiveness of the monitoring tools/scripts used in the environment, to understand how well the monitoring tool captures the messages in the alert log.</p>
<p>Usage:</p>

SQL&#62; exec dbms_system.ksdwrt(1, 'This message goes to trace file [...]]]></description>
			<content:encoded><![CDATA[<p>Oracle provides a procedure to insert messages to the alert log and/or trace files for testing/development purposes. This can be used to check the effectiveness of the monitoring tools/scripts used in the environment, to understand how well the monitoring tool captures the messages in the alert log.</p>
<p>Usage:</p>
<pre class="brush: sql;">
SQL&gt; exec dbms_system.ksdwrt(1, 'This message goes to trace file in the udump location');

PL/SQL procedure successfully completed.

SQL&gt; exec dbms_system.ksdwrt(2, 'This message goes to the alert log');

PL/SQL procedure successfully completed.

SQL&gt; exec dbms_system.ksdwrt(3, 'This message goes to the alert log and trace file in the udump location');

PL/SQL procedure successfully completed.

SQL&gt;
</pre>
<p>To test whether your monitoring tool captures error messages such as an ORA-00600, try executing the below:</p>
<pre class="brush: sql;">

SQL&gt; exec dbms_system.ksdwrt(2, 'ORA-00600: Testing monitoring tool');

PL/SQL procedure successfully completed.

SQL&gt;
</pre>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Fquery-script%2Fdbms_system-ksdwrt%25e2%2580%2593write-messages-to-oracle-alert-log%2F&amp;linkname=dbms_system.ksdwrt%E2%80%93Write%20messages%20to%20Oracle%20alert%20log"><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/query-script/dbms_system-ksdwrt%e2%80%93write-messages-to-oracle-alert-log/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIXED_DATE Init.ora parameter</title>
		<link>http://www.dbapundits.com/blog/oracle-init-ora-parameters/fixed_date-init-ora-parameter/</link>
		<comments>http://www.dbapundits.com/blog/oracle-init-ora-parameters/fixed_date-init-ora-parameter/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 09:11:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Init.ora parameters]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=294</guid>
		<description><![CDATA[<p>Setting this parameter to a specified timestamp will make the time constant for the database engine (the clock will not tick) FIXED_DATE is a dynamic parameter and can be changed using the ALTER SYSTEM command.</p>

SQL&#62; ALTER SYSTEM SET FIXED_DATE='2009-09-22-13:00:00';

<p>Once you set parameter, the value will be returned when &#8217;sysdate()&#8217; is used in the queries/application.
To see [...]]]></description>
			<content:encoded><![CDATA[<p>Setting this parameter to a specified timestamp will make the time constant for the database engine (the clock will not tick) FIXED_DATE is a dynamic parameter and can be changed using the ALTER SYSTEM command.</p>
<pre class="brush: sql;">
SQL&gt; ALTER SYSTEM SET FIXED_DATE='2009-09-22-13:00:00';
</pre>
<p>Once you set parameter, the value will be returned when &#8217;sysdate()&#8217; is used in the queries/application.<br />
To see the server time, you can use systimestamp.</p>
<p>Eg:</p>
<pre class="brush: sql;">

SQL&gt; set lines 100
SQL&gt; select sysdate, systimestamp from dual;

SYSDATE					SYSTIMESTAMP
-------					-------------------------
2009 09 22 13:00:00 	10-DEC-09 03.01.41.142940 AM -06:00
</pre>
<p>This is usually used for testing/development purposes, when the application logic depends on a specific date/time combination.</p>
<p>To set the date back to the &#8217;system&#8217; clock, set the parameter to &#8216;none&#8217;</p>
<pre class="brush: sql;">
SQL&gt; alter system set fixed_date='none';
</pre>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Foracle-init-ora-parameters%2Ffixed_date-init-ora-parameter%2F&amp;linkname=FIXED_DATE%20Init.ora%20parameter"><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/oracle-init-ora-parameters/fixed_date-init-ora-parameter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-00054 resource busy and acquire with NOWAIT specified</title>
		<link>http://www.dbapundits.com/blog/query-script/ora-00054-resource-busy-and-acquire-with-nowait-specified/</link>
		<comments>http://www.dbapundits.com/blog/query-script/ora-00054-resource-busy-and-acquire-with-nowait-specified/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 15:34:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Queries-Scripts]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=279</guid>
		<description><![CDATA[<p>The below query helps to identify the session that has locked the resource that your session is trying to lock. </p>
<p>You can try executing the query/job after some time (to allow the other session to complete) or kill the session that has locked the resource to proceed with this situation, use the below query to [...]]]></description>
			<content:encoded><![CDATA[<p>The below query helps to identify the session that has locked the resource that your session is trying to lock. </p>
<p>You can try executing the query/job after some time (to allow the other session to complete) or kill the session that has locked the resource to proceed with this situation, use the below query to identify the session.</p>
<pre class="brush: sql;">

set linesize 140
set pages 100
col username       format a20
col &quot;SID,SESSION#&quot; format a20
col sess_id        format a10
col object format a30
col mode_held      format a10
select     oracle_username || ' (' || s.osuser || ')' username
  ,  s.sid || ',' || s.serial# &quot;SID,SESSION#&quot;
  ,  owner || '.' || object_name object
  ,  object_type
  ,  decode( l.block
     ,       0, 'Not Blocking'
     ,       1, 'Blocking'
     ,       2, 'Global') status
  ,  decode(v.locked_mode
    ,       0, 'None'
    ,       1, 'Null'
    ,       2, 'Row-S (SS)'
    ,       3, 'Row-X (SX)'
    ,       4, 'Share'
    ,       5, 'S/Row-X (SSX)'
    ,       6, 'Exclusive', TO_CHAR(lmode)) mode_held
 from       v$locked_object v
 ,  dba_objects d
 ,  v$lock l
 ,  v$session s
 where      v.object_id = d.object_id
 and        v.object_id = l.id1
 and        v.session_id = s.sid
 order by oracle_username,session_id;
</pre>
<p>Sample output:</p>
<pre class="brush: sql;">
USERNAME	SID,SESSION#	OBJECT		OBJECT_TYPE	STATUS		MODE_HELD
--------	------------	-------------	-----------	------		---------
SCOTT (oracle)	86,30		SCOTT.LOCK_TEST	TABLE		Not Blocking 	Row-X (SX)
</pre>
<p>To kill the locking session, do as below:</p>
<pre class="brush: sql;">
SQL&gt; alter system kill session '86,30';
</pre>
<p>To identify the locked rows, use the below query:</p>
<pre class="brush: sql;">
set lines 200
col object_name for a30
select do.object_name
, row_wait_obj#
, row_wait_file#
, row_wait_block#
, row_wait_row#
, dbms_rowid.rowid_create (1, ROW_WAIT_OBJ#, ROW_WAIT_FILE#,
				ROW_WAIT_BLOCK#, ROW_WAIT_ROW#) ROW_ID
from	v$session s
,	dba_objects do
where	s.ROW_WAIT_OBJ# = do.OBJECT_ID
and do.object_name=upper('&lt;object_name_from_above_query&gt;')
;

OBJECT_NAME	ROW_WAIT_OBJ#	ROW_WAIT_FILE#	ROW_WAIT_BLOCK#	ROW_WAIT_ROW#	ROW_ID
-----------	-------------	--------------	---------------	-------------	------
LOCK_TEST	41862		4		70		0		AAAKOGAAEAAAABGAAA
</pre>
<p>To simulate the occurrence of this error for testing/learning purposes, do as below in 2 sessions:</p>
<p>Session 1:</p>
<pre class="brush: sql;">
SQL&gt; conn scott/tiger;
Connected.

SQL&gt; create table lock_test (x number);
Table created.

SQL&gt; insert into lock_test values(100);
1 row created.

SQL&gt; commit;
Commit complete.

SQL&gt; update lock_test set x=500;
1 row updated.

-- Do not commit.
</pre>
<p>Session 2:</p>
<pre class="brush: sql;">

SQL&gt; conn scott/tiger;
Connected.
declare
y number;
begin
select x into y from lock_test for update nowait;
end;
/

ERROR at line 1:
ORA-00054: resource busy and acquire with NOWAIT specified
ORA-06512: at line 4
</pre>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Fquery-script%2Fora-00054-resource-busy-and-acquire-with-nowait-specified%2F&amp;linkname=ORA-00054%20resource%20busy%20and%20acquire%20with%20NOWAIT%20specified"><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/query-script/ora-00054-resource-busy-and-acquire-with-nowait-specified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export-Import Using Unix Pipe</title>
		<link>http://www.dbapundits.com/blog/query-script/export-import-using-unix-pipe/</link>
		<comments>http://www.dbapundits.com/blog/query-script/export-import-using-unix-pipe/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 17:13:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Queries-Scripts]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=273</guid>
		<description><![CDATA[<p>In scenarios where there is no disk space to hold the export dumps or when migrating schemas across different versions of Oracle, this script helps to do the export/import over the network or on the same server using the Unix pipe.</p>
<p>In this example, data is exported from the Oracle Database instance named PROD to the [...]]]></description>
			<content:encoded><![CDATA[<p>In scenarios where there is no disk space to hold the export dumps or when migrating schemas across different versions of Oracle, this script helps to do the export/import over the network or on the same server using the Unix pipe.</p>
<p>In this example, data is exported from the Oracle Database instance named PROD to the instance named DEV. The export utility connects to the PROD database using the Net Service name, writes the export dump to a Unix pipe, which is read by the import process that loads the data to the DEV database.</p>
<p>Create a file exp_imp.sh:</p>
<pre class="brush: bash;">
#!/usr/bin/ksh

export ORACLE_SID=DEV
export ORACLE_HOME=/oracle/product/10204

# make a unix pipe
export PIPE=exp_imp_pipe
mknod exp_imp_pipe p

# Start the Export and run it in background  - Dont omit the '&amp;' at the end.
exp scott/tiger@PROD file=exp_imp_pipe log=exp_PROD.log buffer=1024000 consistent=y OWNER=HR,APP direct=y statistics=none compress=n  &amp;

# Start the Import
imp scott/tiger ignore=y full=y file=exp_imp_pipe log=imp_DEV.log commit=y buffer=1024000 RESUMABLE=Y &amp;
</pre>
<p>For big schemas, CONSISTENT=Y may not work as the export may fail with an ORA-01555 snapshot too old error, so you may need to revist the parameter. RESUMABLE=Y at the import side can help to make the session &#8216;resumable&#8217; in case the import hits any space issues on the target database. The export/import logs can be monitored to view the progress of the activity.</p>
<p>In this example the user scott has enough privilege to exp/imp the data, make sure that you connect to the databases as a privileged user and needless to say, it is recommended to run the job in nohup mode to avoid issues in case connectivity to the server gets disturbed.</p>
<p><script type="text/javascript"><!--
ch_client = "dbapundits";
ch_type = "mpu";
ch_width = 550;
ch_height = 250;
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "Chitika Premium";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script><br />
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Fquery-script%2Fexport-import-using-unix-pipe%2F&amp;linkname=Export-Import%20Using%20Unix%20Pipe"><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/query-script/export-import-using-unix-pipe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database/Tablespace Free space in MB</title>
		<link>http://www.dbapundits.com/blog/query-script/database-tablespace-free-space/</link>
		<comments>http://www.dbapundits.com/blog/query-script/database-tablespace-free-space/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 06:00:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Queries-Scripts]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=202</guid>
		<description><![CDATA[<p>One of the most used script used by the DBA in day-to-day work, this script gives the space usage of each tablespace in the database.</p>


set heading on
set pagesize 500
set lines 400

column tablespace       format a30                [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most used script used by the DBA in day-to-day work, this script gives the space usage of each tablespace in the database.</p>
<pre class="brush: sql;">

set heading on
set pagesize 500
set lines 400

column tablespace       format a30                heading &quot;Tablespace&quot;
column avail            format 9,999,999,999,999  heading &quot;MB Avail.&quot;
column used             format 9,999,999,999,999  heading &quot;MB Used&quot;
column free             format 9,999,999,999,999  heading &quot;MB Free&quot;
column pct              format 999                heading &quot;Pct&quot;

compute sum of avail used free on report
break on report
select  a.tablespace_name &quot;Tablespace&quot;,
        a.avail,
        a.avail-b.free used,
        b.free,
        round(nvl((a.avail-b.free)/a.avail*100,0))      &quot;Pct&quot;
from
(select tablespace_name, round(sum(bytes)/1048576)     avail
        from    sys.dba_data_files
        group by tablespace_name
        UNION
        select  tablespace_name,round(sum(bytes_free+bytes_used)/1048576)
        from v$temp_space_header
        group by tablespace_name)       a,
(select tablespace_name, round(sum(bytes)/1048576)     free
        from    sys.dba_free_space
        group by tablespace_name
        UNION
        select  tablespace_name,round(sum(bytes_free)/1048576)
        from v$temp_space_header
        group by tablespace_name)       b
where  a.tablespace_name = b.tablespace_name (+);
</pre>
<p><script type="text/javascript"><!--
ch_client = "dbapundits";
ch_type = "mpu";
ch_width = 550;
ch_height = 250;
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "Chitika Premium";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script><br />
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Fquery-script%2Fdatabase-tablespace-free-space%2F&amp;linkname=Database%2FTablespace%20Free%20space%20in%20MB"><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/query-script/database-tablespace-free-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hourly/Daily Archive generation</title>
		<link>http://www.dbapundits.com/blog/query-script/hourly-daily-archive-generation/</link>
		<comments>http://www.dbapundits.com/blog/query-script/hourly-daily-archive-generation/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 05:56:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Queries-Scripts]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=198</guid>
		<description><![CDATA[<p>The below query comes handy to understand the archivelog generation of an Oracle database on an hourly /daily basis, per thread &#8211; in case of RAC databases.</p>
<p>Archivelog generation on a daily basis:</p>

set pages 1000
select trunc(COMPLETION_TIME,'DD') Day, thread#, round(sum(BLOCKS*BLOCK_SIZE)/1048576) MB,count(*) Archives_Generated from v$archived_log
group by trunc(COMPLETION_TIME,'DD'),thread# order by 1;

<p>Archive log generation on an hourly basis:</p>

set pages 1000
select [...]]]></description>
			<content:encoded><![CDATA[<p>The below query comes handy to understand the archivelog generation of an Oracle database on an hourly /daily basis, per thread &#8211; in case of RAC databases.</p>
<p>Archivelog generation on a daily basis:</p>
<pre class="brush: sql;">
set pages 1000
select trunc(COMPLETION_TIME,'DD') Day, thread#, round(sum(BLOCKS*BLOCK_SIZE)/1048576) MB,count(*) Archives_Generated from v$archived_log
group by trunc(COMPLETION_TIME,'DD'),thread# order by 1;
</pre>
<p>Archive log generation on an hourly basis:</p>
<pre class="brush: sql;">
set pages 1000
select trunc(COMPLETION_TIME,'HH') Hour,thread# , round(sum(BLOCKS*BLOCK_SIZE)/1048576) MB,count(*) Archives from v$archived_log
group by trunc(COMPLETION_TIME,'HH'),thread#  order by 1 ;
</pre>
<p>Sample output:</p>
<pre class="brush: plain;">

HOUR                   THREAD#         MB   ARCHIVES
------------------- ---------- ---------- ----------
2009 08 20 12:00:00          1      31268        339
2009 08 20 13:00:00          1       4994         55
2009 08 20 14:00:00          1       4412         48
2009 08 20 15:00:00          1       4805         52
2009 08 20 16:00:00          1       3364         37
2009 08 20 17:00:00          1         22          1
2009 08 20 21:00:00          1          9          1
</pre>
<p>Also, the following script is useful to find the archivelog switches on an hourly basis that happened in the past one week, I got this from http://kubilaykara.blogspot.com/2008/02/redo-log-generation.html and is quite an useful one.</p>
<pre class="brush: sql;">
SELECT to_date(first_time) DAY,
to_char(sum(decode(to_char(first_time,'HH24'),'00',1,0)),'99') &quot;00&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'01',1,0)),'99') &quot;01&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'02',1,0)),'99') &quot;02&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'03',1,0)),'99') &quot;03&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'04',1,0)),'99') &quot;04&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'05',1,0)),'99') &quot;05&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'06',1,0)),'99') &quot;06&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'07',1,0)),'99') &quot;07&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'08',1,0)),'99') &quot;08&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'09',1,0)),'99') &quot;09&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'10',1,0)),'99') &quot;10&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'11',1,0)),'99') &quot;11&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'12',1,0)),'99') &quot;12&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'13',1,0)),'99') &quot;13&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'14',1,0)),'99') &quot;14&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'15',1,0)),'99') &quot;15&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'16',1,0)),'99') &quot;16&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'17',1,0)),'99') &quot;17&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'18',1,0)),'99') &quot;18&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'19',1,0)),'99') &quot;19&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'20',1,0)),'99') &quot;20&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'21',1,0)),'99') &quot;21&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'22',1,0)),'99') &quot;22&quot;,
to_char(sum(decode(to_char(first_time,'HH24'),'23',1,0)),'99') &quot;23&quot;
from
v$log_history
where to_date(first_time) &gt; sysdate -8
GROUP by
to_char(first_time,'YYYY-MON-DD'), to_date(first_time)
order by to_date(first_time)
/
</pre>
<p>Sample output:</p>
<pre class="brush: plain;">
DAY 00 01 02 03 04 05 06 09 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23
--------- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- -
01-NOV-09 0 1 1 0 1 0 1 0 1 4 1 1 0 1 0 1 1 0 1 1 1 1 1 1
02-NOV-09 0 1 1 1 1 0 1 1 1 1 0 1 1 7 1 1 1 1 1 2 1 1 1 1
03-NOV-09 1 2 2 1 1 1 1 1 1 1 1 2 1 1 1 1 1 2 1 1 2 1 1 2
04-NOV-09 1 1 8 1 7 2 1 1 1 2 1 1 2 1 2 1 2 1 2 1 2 1 2 2
05-NOV-09 2 1 2 1 2 2 1 2 1 2 2 1 2 2 1 2 2 2 1 2 2 2 2 2
06-NOV-09 2 1 2 2 2 2 1 2 2 2 2 2 1 2 2 1 0 2 0 0 0 0 1 0
09-NOV-09 0 0 1 7 0 0 1 0 0 0 0 0 0 0 7 0 0 0 0 0 0 0 0 0
</pre>
<p><script type="text/javascript"><!--
ch_client = "dbapundits";
ch_type = "mpu";
ch_width = 550;
ch_height = 250;
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "Chitika Premium";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script><br />
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Fquery-script%2Fhourly-daily-archive-generation%2F&amp;linkname=Hourly%2FDaily%20Archive%20generation"><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/query-script/hourly-daily-archive-generation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data guard setup and configuration &#8211; quick reference</title>
		<link>http://www.dbapundits.com/blog/standby-data-guard/oracle-11g-dataguard-setup-and-configuration-quick-reference/</link>
		<comments>http://www.dbapundits.com/blog/standby-data-guard/oracle-11g-dataguard-setup-and-configuration-quick-reference/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 03:42:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Standby/Data Guard]]></category>
		<category><![CDATA[data protection]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[dataguard]]></category>
		<category><![CDATA[dba]]></category>
		<category><![CDATA[high availability]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[standby]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=150</guid>
		<description><![CDATA[<p>Quick reference to dataguard configuration for the DBAs. The table gives an easy reference on the main attributes of log_archive_dest_n parameter and gives quick concept on the setting. Also, the scenarios where standby redo logs are used to minimize data loss and also to enable real-time apply is discussed.</p>



Configuration
Performance
Availability
Protection
Meaning and Remarks


Standby redo logs
Not required, but [...]]]></description>
			<content:encoded><![CDATA[<p>Quick reference to dataguard configuration for the DBAs. The table gives an easy reference on the main attributes of log_archive_dest_n parameter and gives quick concept on the setting. Also, the scenarios where standby redo logs are used to minimize data loss and also to enable real-time apply is discussed.</p>
<table style="font-size: 10pt; font-family: tahoma" border="1" cellspacing="0" cellpadding="0" width="614">
<tbody>
<tr>
<td width="92" valign="top"><strong>Configuration</strong></td>
<td width="101" valign="top"><strong>Performance</strong></td>
<td width="81" valign="top"><strong>Availability</strong></td>
<td width="89" valign="top"><strong>Protection</strong></td>
<td width="249" valign="top"><strong>Meaning and Remarks</strong></td>
</tr>
<tr>
<td width="92" valign="top">Standby redo logs</td>
<td width="101" valign="top">Not required, but recommended</td>
<td width="81" valign="top">Required</td>
<td width="89" valign="top">Required</td>
<td width="249" valign="top">Redo data from primary will be written to standby redo logs by LGWR process and real time apply can be enabled, LGWR/ARCH parameter can be set.</td>
</tr>
<tr>
<td width="92" valign="top">LGWR<br />
(Redo archival process)</td>
<td width="101" valign="top">Not required</td>
<td width="81" valign="top">Required</td>
<td width="89" valign="top">Required</td>
<td width="249" valign="top">Specifies the redo transport service uses LGWR to collect and transit redo data to standby.</td>
</tr>
<tr>
<td width="92" valign="top">ARCH<br />
(Redo archival process)</td>
<td width="101" valign="top">Possible</td>
<td width="81" valign="top">Not possible</td>
<td width="89" valign="top">Not possible</td>
<td width="249" valign="top">Specifies that redo transport services uses ARCn process to collect and transmit redo data to standby.</td>
</tr>
<tr>
<td width="92" valign="top">SYNC (Network transmission)</td>
<td width="101" valign="top">Not required</td>
<td width="81" valign="top">Required</td>
<td width="89" valign="top">Required</td>
<td width="249" valign="top">SYNC specifies <span class="font5">Network I/O</span><span class="font0"> to standby is synchronous, that means the LGWR process on primary will wait for </span><span class="font5">Network I/O</span><span class="font0"> to complete on the standby so that successful transfer of redo records to standby database is ensured.</span></td>
</tr>
<tr>
<td width="92" valign="top">ASYNC (Network transmission)</td>
<td width="101" valign="top">Can be set</td>
<td width="81" valign="top">Cannot be set</td>
<td width="89" valign="top">Cannot be set</td>
<td width="249" valign="top">ASYNC specifies the the LGWR will not wait for <span class="font5">Network I/O</span><span class="font0">  to complete and proceeds asynchronously. Not valid if ARCH parameter is used</span></td>
</tr>
<tr>
<td width="92" valign="top">AFFIRM<br />
(Disk Writes)</td>
<td width="101" valign="top">Not required</td>
<td width="81" valign="top">Required</td>
<td width="89" valign="top">Required</td>
<td width="249" valign="top">Specifies that <span class="font5">disk I/O</span><span class="font0"> to archived redo logs and standby redo logs on the standby are done </span><span class="font5">synchronously</span><span class="font0"> and the LGWR process on primary will wait to continue its processing.</span></td>
</tr>
<tr>
<td width="92" valign="top">NOAFFIRM (Disk Writes)</td>
<td width="101" valign="top">Can be set</td>
<td width="81" valign="top">Cannot be set</td>
<td width="89" valign="top">Cannot be set</td>
<td width="249" valign="top">Specifies that disk I/O to archived redo logs and standby redo logs on the standby is done <span class="font5">asynchronously</span><span class="font0"> and the LGWR process on primary will not wait to continue its processing.</span></td>
</tr>
</tbody>
</table>
<p> <br />
<script type="text/javascript"><!--
ch_client = "dbapundits";
ch_type = "mpu";
ch_width = 550;
ch_height = 250;
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "Chitika Premium";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script><br />
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Fstandby-data-guard%2Foracle-11g-dataguard-setup-and-configuration-quick-reference%2F&amp;linkname=Data%20guard%20setup%20and%20configuration%20%26%238211%3B%20quick%20reference"><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/standby-data-guard/oracle-11g-dataguard-setup-and-configuration-quick-reference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle 11g Standby database creation on Unix using RMAN Active database duplication.</title>
		<link>http://www.dbapundits.com/blog/standby-data-guard/oracle-11g-standby-creation-on-unix/</link>
		<comments>http://www.dbapundits.com/blog/standby-data-guard/oracle-11g-standby-creation-on-unix/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 13:33:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Standby/Data Guard]]></category>

		<guid isPermaLink="false">http://www.dbapundits.com/blog/?p=115</guid>
		<description><![CDATA[Step by Step
<p> 
<p>1) Activate Force logging on the primary database</p>
<p>In case of unlogged writes to primary database (NOLOGGING&#160; and DIRECT LOAD operations using SQL*Loader),&#160; redo data is not generated.&#160; As the redo required to synch the changes to the standby is not generated, the standby database will not be consistent with the primary.&#160; To [...]]]></description>
			<content:encoded><![CDATA[<h3>Step by Step</h3>
<p> 
<p><strong>1) Activate Force logging on the primary database</strong></p>
<p>In case of unlogged writes to primary database (NOLOGGING&nbsp; and DIRECT LOAD operations using SQL*Loader),&nbsp; redo data is not generated.&nbsp; As the redo required to synch the changes to the standby is not generated, the standby database will not be consistent with the primary.&nbsp; To prevent such issues, the primary database is forced to log operations. It may also be noted that it is recommended to take a backup of the database after UNRECOVERABLE/NOLOGGING operations as those operations are not recoverable as the redo data is not generated.Use the below command on the primary database to force logging on the database.</p>
<pre class="brush: sql;">
SQL&gt; alter database force logging;
</pre>
<p> 
<p>This must be done before building the standby database.</p>
<p><strong>2) Prepare Initialization files for the primary and standby databases</strong></p>
<pre class="brush: plain;">

# Initialization file for primary database – initorcl.ora

*.audit_file_dest='/oracle/app/oracle/admin/orcl/adump'
*.audit_trail='db'
*.compatible='11.1.0.0.0'
*.control_files='/oradata/orcl/control01.ctl','/oradata/orcl/control02.ctl'
,'/oradata/orcl/control03.ctl'
*.db_block_size=8192
*.db_name='orcl'
*.diagnostic_dest='/oracle/app/oracle'
*.dispatchers='(PROTOCOL=TCP) (SERVICE=orclXDB)'
*.log_archive_dest_1='LOCATION=/oradata/arch/orcl/'
*.log_archive_format='%t_%s_%r.dbf'
*.open_cursors=300
*.pga_aggregate_target=104857600
*.processes=150
*.remote_login_passwordfile='EXCLUSIVE'
*.sga_target=316669952
*.undo_tablespace='UNDOTBS1'

##### Standby related parameters ######## 

*.db_unique_name='orcl'
*.fal_client='ORCL'
*.fal_server='STBY'
*.DB_FILE_NAME_CONVERT=('/oradata/stby/','/oradata/orcl/')
*.LOG_FILE_NAME_CONVERT=('/oradata/stby/','/oradata/orcl/') *.log_archive_config='dg_config=(orcl,stby)'
*.log_archive_dest_2='SERVICE=STBY valid_for=online_logfiles,primary_role)'
*.db_unique_name='STBY'
*.log_archive_dest_state_2=enable
*.standby_file_management=auto

##### End Standby related parameters #######
</pre>
<pre class="brush: plain;">

# Initialization file for standby database - initstby.ora 

*.audit_file_dest='/oracle/app/oracle/admin/stby/adump'
*.audit_trail='db'
*.compatible='11.1.0.0.0'
*.control_files='/oradata/stby/control01.ctl','/oradata/stby/control02.ctl',
'/oradata/stby/control03.ctl'
*.db_block_size=8192
*.db_name='orcl'
*.diagnostic_dest='/oracle/app/oracle'
*.dispatchers='(PROTOCOL=TCP)(SERVICE=orclXDB)'
*.log_archive_dest_1='LOCATION=/oradata/arch/stby/'
*.log_archive_format='%t_%s_%r.dbf'
*.open_cursors=300
*.pga_aggregate_target=104857600
*.processes=150
*.remote_login_passwordfile='EXCLUSIVE'
*.sga_target=316669952
*.undo_tablespace='UNDOTBS1'

##### Standby related parameters#######

*.db_unique_name='stby'
*.log_archive_dest_2='SERVICE=ORCL valid_for=(online_logfile,primary_role)
*.DB_FILE_NAME_CONVERT=('/oradata/orcl/','/oradata/stby/')
*.LOG_FILE_NAME_CONVERT=('/oradata/orcl/','/oradata/stby/')
*.fal_server='ORCL'
*.fal_client='STBY'
*.log_archive_config='dg_config=(orcl,stby)'
*.standby_file_management=auto

##### End Standby related parameters #######
</pre>
<p> 
<p><strong>3) Configure Listener for Static service registration</strong></p>
<p>Static service registrations is requierd for the RMAN active database duplication to work.</p>
<pre class="brush: plain;">

LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = dbapundits)(PORT = 1521))))  SID_LIST_LISTENER =
(
SID_LIST =
(SID_DESC = (ORACLE_HOME = /oracle/app/oracle/product/11.1.0) (SID_NAME = orcl))
(SID_DESC = (ORACLE_HOME = /oracle/app/oracle/product/11.1.0) (SID_NAME = stby))
)
</pre>
<p> <strong>4) Create service names in tnsnames.ora</strong><br />
Add tnsnames.ora entries for primary and standby databases.</p>
<pre class="brush: plain;">

ORCL =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = dbapundits)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcl)))
STBY =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = dbapundits)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = stby)))
</pre>
<p> 
<p><strong>5) Create password file for the standby database</strong></p>
<p>The easiest way to do this is to copy the password file from the primary database and to rename it in proper format on the standby server.</p>
<pre class="brush: bash;">
$ pwd
/oracle/app/oracle/product/11.1.0/dbs
$ cp orapworcl orapwstby 
</pre>
<p><strong>6) Perform Oracle 11g standby creation using RMAN DUPLICATE command</strong></p>
<pre class="brush: plain;">
run
{
duplicate target database for standby dorecover from active database;
}
</pre>
<p> 
<p>The primary database is duplicated as a standby database on the target server (or on same server in this case) using the datafiles from the active database. There is no need of a backup and the datafiles are copied over the network to the target server and is recovered to the point when the duplication was fired.</p>
<p><strong>7) Logs</strong></p>
<p><a href="http://www.dbapundits.com/blog/wp-content/uploads/2009/01/11g-standby-database-creation-with-rman-duplicate-command.txt">11g-standby-database-creation-with-rman-duplicate-command &#8211; log</a></p>
<p><script type="text/javascript"><!--
ch_client = "dbapundits";
ch_type = "mpu";
ch_width = 550;
ch_height = 250;
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "Chitika Premium";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script><br />
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dbapundits.com%2Fblog%2Fstandby-data-guard%2Foracle-11g-standby-creation-on-unix%2F&amp;linkname=Oracle%2011g%20Standby%20database%20creation%20on%20Unix%20using%20RMAN%20Active%20database%20duplication."><img src="http://www.dbapundits.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dbapundits.com/blog/standby-data-guard/oracle-11g-standby-creation-on-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
