<?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>OraChat - Oracle DBAs</title>
	<atom:link href="http://orachat.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://orachat.com</link>
	<description>...Your Buddy for Oracle Performance Architecture</description>
	<lastBuildDate>Wed, 09 Nov 2011 15:28:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>AUTOMATED TABLESPACE POINT IN TIME RECOVERY</title>
		<link>http://orachat.com/automated-tablespace-point-time-recovery/</link>
		<comments>http://orachat.com/automated-tablespace-point-time-recovery/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 23:04:27 +0000</pubDate>
		<dc:creator>Vikas Krishna</dc:creator>
				<category><![CDATA[Oracle 11g]]></category>
		<category><![CDATA[Oracle DBA]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=727</guid>
		<description><![CDATA[I have seen people using Flashback Technology more often to restore tables to an earlier point in time. Automatic tablespace point in time recovery is an other option which we can use to recover one or more tablespaces to an earlier point in time at the same time retaining other tablespaces and objects as it [...]]]></description>
			<content:encoded><![CDATA[<p>I have seen people using Flashback Technology more often to restore tables to an earlier point in time. <strong>Automatic tablespace point in time recovery</strong> is an other option which we can use to recover one or more tablespaces to an earlier point in time at the same time retaining other tablespaces and objects as it is now.</p>
<p>Thanks to my friend <strong>Rajeshh</strong> who notified me on this feature.</p>
<p><span style="text-decoration: underline"><strong>DEMONSTRATION</strong></span></p>
<p>1)    Create a tablespace TS_AUTO<br />
create tablespace ts_auto datafile &#8216;+AUTO_DATA&#8217; size 500m;</p>
<p>2)    Crate a database user called AUTO_USER with default tablespace as TS_AUTO<br />
create user auto_user identified by auto_user default tablespace ts_auto temporary tablespace temp quota unlimited on ts_auto;</p>
<p>3)    Grant required privileges to the user created in previous step<br />
grant connect,resource to auto_user;</p>
<p>4)    Create a database session as auto_user<br />
conn auto_user/auto_user</p>
<p>5)    Create a table called T_TEST<br />
create table t_test(t_dt date);</p>
<p>6)Insert some values in to T_TEST<br />
insert into  t_test values (sysdate);<br />
/<br />
/<br />
/<br />
commit;</p>
<p>7)Check the data which we had inserted in previous step<br />
select * from auto_user.t_test;<br />
8)Using RMAN backup the database and arvhivelogs</p>
<p>rman target /</p>
<p>backup database plus archivelog;</p>
<p>9)Get the latest log sequence number</p>
<p>SQL&gt; select sequence#,thread# from  v$log;</p>
<p>SEQUENCE#    THREAD#<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;-<br />
720          1<br />
718          1<br />
719          1</p>
<p>9) Create a small parameter file</p>
<p>cat /u01/dba/temp/auto_tsptir_check/initEEeE.ora</p>
<p>db_name=TESTDB1<br />
db_unique_name=EEeE_tspitr_TESTDB1<br />
compatible=11.2.0.0.0<br />
db_block_size=8192<br />
db_files=200<br />
sga_target=1G<br />
processes=20<br />
db_create_file_dest=/u01/dba/temp/auto_tsptir_check<br />
log_archive_dest_1=&#8217;location=/u01/dba/temp/auto_tsptir_check&#8217;</p>
<p><em><font color="red">**note </font>Automated TSPITR creates its own parameter file but the SGA_TARGET in that is only 200m which will cause the whole procedure to fail due to insufficient memory, That is the reason we created our own parameter file and will pass the same during ATSPIR</em></p>
<p>RMAN&gt; set auxiliary INSTANCE parameter file to &#8220;/u01/dba/temp/auto_tsptir_check/initEEeE.ora&#8221;;</p>
<p>executing command: SET auxiliary parameter file<br />
using target database control file instead of recovery catalog</p>
<p>10) Perform Automated Tablespace point in time recovery.<br />
RMAN&gt; RECOVER TABLESPACE ts_auto      UNTIL LOGSEQ 720 THREAD 1       AUXILIARY DESTINATION &#8216;/u01/dba/temp/auto_tsptir_check&#8217;;</p>
<p><em><font color="red">**<strong>AUXILIARY DESTINATION</strong></font> is where rman stores all the database related files for the auxiliary instance. </em><br />
11) Change the status of the tablespace to online</p>
<p>alter tablespace ts_auto online;</p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li>No Related Post</li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/automated-tablespace-point-time-recovery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting hold with Oracle Database 11gR2 RAC</title>
		<link>http://orachat.com/oracle-database-11gr2-rac/</link>
		<comments>http://orachat.com/oracle-database-11gr2-rac/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 16:25:16 +0000</pubDate>
		<dc:creator>Sonia</dc:creator>
				<category><![CDATA[Oracle 11g]]></category>
		<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[Oracle Metalink]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[Oracle RAC]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=717</guid>
		<description><![CDATA[Oracle Database 11gR2 MOS Notes Doc ID 1232802.1 RAC One — Changes in 11.2.0.2 Doc ID 1312225.1 Things to Consider Before Upgrade to 11.2.0.2 Grid Infrastructure Doc ID 1267828.1 SYS Password Management with RAC and Data Guard Doc ID 1276368.1 Complete checklist for out-of-place manual upgrade from 11.2.0.1 to 11.2.0.2 Doc ID 341880.1 How to [...]]]></description>
			<content:encoded><![CDATA[<h3><span style="text-decoration: underline;"><span style="color: #3366ff;"><strong>Oracle Database 11gR2 MOS Notes</strong></span></span></h3>
<p><span style="color: #3366ff;"><strong>Doc ID 1232802.1</strong> RAC One — Changes in 11.2.0.2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1312225.1</strong> Things to Consider Before Upgrade to 11.2.0.2 Grid Infrastructure</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1267828.1</strong> SYS Password Management with RAC and Data Guard</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1276368.1</strong> Complete checklist for out-of-place manual upgrade from 11.2.0.1 to 11.2.0.2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 341880.1</strong> How to convert a 32-bit database to 64-bit database on Linux?</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1080410.1</strong> How To Upgrade 10.2 Repository to 11.2 In The Same Database Instance</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 883335.1</strong> How To Downgrade From Database 11.2 To Previous Release</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1304939.1</strong> 11.2 Data Guard Physical Standby Switchover Best Practices using SQL*Plus</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1315926.1</strong> 11.2.0.1 to 11.2.0.2 Database Upgrade on Exadata Database Machine </span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 953846.1</strong> Grid Control 10.2.0.5.0 now Supports DB 11.2.0.1.0 as a Target</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 763386.1</strong> Requirements for Installing Oracle 11gR2 32-bit on SLES 10 (x86)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1139563.1 </strong>10.2.0.5.4 Grid Control Patch Set Update (PSU)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 556610.1 </strong>Script to Collect DB Upgrade/Migrate Diagnostic Information (dbupgdiag.sql)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1276368.1</strong> Complete checklist for out-of-place manual upgrade from 11.2.0.1 to 11.2.0.2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1269321.1</strong> Automatic Degree of Parallelism in 11.2.0.2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 727062.1</strong> Configuring and using Calibrate I/O</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1279458.1</strong> Exadata Database Machine Reference Guide for Upgrade 11.2.0.1 to 11.2.0.2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 837570.1</strong> Complete Checklist for Manual Upgrades to 11gR2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 884232.1</strong> 11gR2 Install (Non-RAC): Understanding New Changes With All New 11.2 Installer</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 948061.1</strong> How to Check and Enable/Disable Oracle Binary Options</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1069015.1</strong> How to determine enabled/disabled components in an 11.2 software-only installation</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 883299.1</strong> Oracle 11gR2 Relink New Feature</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 888934.1 </strong>Is it possible to deinstall/remove a specific component from already installed Oracle Database Home using OUI?</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 942406.1</strong> Customize Enterprise Edition Options under 11.2.0.1 version</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1245784.1</strong> Installing Component using Installer from 11.2 ORACLE_HOME Fails with OUI-10150</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1267942.1 </strong>Installing 11.2.0.X Cman Raises Java Exception Referencing S_dlgcfgnaminglabelsid</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1232802.1 </strong>RAC One — Changes in 11.2.0.2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 810394.1 </strong>RAC Assurance Support Team: RAC and Oracle Clusterware Starter Kit and Best Practices (Generic)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 250.1</strong> Oracle Support Upgrade Advisors</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1152016.1</strong> Master Note For Oracle Database Upgrades and Migrations</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1084132.1 </strong>Differences Between Enterprise, Standard and Personal Editions on Oracle 11.2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1116484.1 </strong>Master Note For Oracle Recovery Manager (RMAN)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1187723.1 </strong>Master Note for Automatic Storage Management (ASM)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1050908.1 </strong>How to Troubleshoot Grid Infrastructure Startup Issues</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 274526.1</strong> How To Download And Install OPatch</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 300062.1 </strong>How To Clone An Existing RDBMS Installation Using OUI</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 949322.1</strong> Oracle11g Data Guard: Database Rolling Upgrade Shell Script</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 300062.1</strong> How To Clone An Existing RDBMS Installation Using OUI</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1101938.1</strong> Master Note for Data Guard</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID 1112983.1</strong><strong> </strong>How to Reload the JVM in 11.2.0.x</span></p>
<p><span style="color: #3366ff;"><strong>Doc D : 869084.1</strong> New PL/SQL Features for 11g Release 1 (11.1)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1092213.1 </strong>ASM 11.2 Configuration KIT (ASM 11gR2 Installation &amp; Configuration, Deinstallation, Upgrade, ASM Job Role Separation.<br />
<strong> </strong></span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 884522.1 </strong>How to Download and Run Oracle’s Database Pre-Upgrade Utility.<br />
<strong> </strong></span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 386408.1 </strong>What Is The Fastest Way To Cleanly Shutdown An Oracle Database?<br />
<strong> </strong></span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1089476.1 </strong>Patch 11gR2 Grid Infrastructure Standalone Server.</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1059516.1</strong> Step by step Installation of 11.1 Grid control<br />
<strong> </strong></span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1086562.1 </strong>My Oracle Support is now available through Grid Control 11g<br />
<strong> </strong></span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1076420.1</strong> Upgrade Path to Oracle Enterprise Manager 11g Grid Control Release 1  (11.1.0.1.0) from previous releases (10.1.0.x.0 / 10.2.0.x.0)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1073647.1</strong> How to check/set the database parameters housing the GC repository before GC Install/upgrade</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 605398.1</strong> How to to find the version of the main EM components</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 412431.1</strong> Oracle Enterprise Manager 10g Grid Control Certification Checker</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID :  810394.1</strong> RAC Assurance Support Team: RAC and Oracle Clusterware Starter Kit and Best Practices (Generic)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 952302.1</strong> Is Microsoft Windows 7 certified to install/run Oracle Database Server/Client ?</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 742060.1</strong> Release Schedule of Current Database Releases</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 161818.1</strong> Oracle Database (RDBMS) Releases Support Status Summary</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1060197.1</strong> Self-PacedTraining for Oracle Database 11g Release 2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 988222.1</strong> Oracle Database 11g Release 2 Information Center</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1059163.1</strong> Database Release 11.2 Product Info Center: Planning Information Directory</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : ID 948187.1</strong> ACFS Technical Overview and Deployment Guide</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 950200.1</strong> ASM 11gR2: How To Upgrade An ASM Instance To Release 11gR2 (11.2.0.1.0)?</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1069369.1</strong> How to Delete or Add Resource in 11gR2 Grid Infrastructure</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1063299.1</strong> Tablespace Transport for a Single Partition</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 733205.1</strong> Migration of Oracle Database Instances Across OS Platforms</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 433472.1</strong> OS Watcher For Windows (OSWFW) User Guide</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1072545.1</strong> RMAN Performance Tuning Using Buffer Memory Parameters</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 943567.1</strong> 11g new feature: Extended Composite Partitioning (Overview, Example and Use)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 948061.1</strong> How to Check and Enable/Disable Oracle Binary Options</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1056322.1</strong> How to Troubleshoot 11gR2 Installation Issue</span></p>
<p><span style="color: #3366ff;"><strong></strong><strong>Doc ID : 1058646.1 </strong>How to integrate a 10g/11gR1 RAC database with 11gR2 clusterware (SCAN)</span></p>
<p><span style="color: #3366ff;"><strong></strong><strong>Doc ID : 1050908.1 </strong>How to Troubleshoot Grid Infrastructure Startup Issues</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1058646.1</strong> How to integrate a 10g/11gR1 RAC database with 11gR2 clusterware (SCAN)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1050908.1</strong> How to Troubleshoot Grid Infrastructure Startup Issues</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1053147.1 </strong>11gR2 Clusterware and Grid Home – What You Need to Know</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 330358.1 </strong>CRS 10gR2/ 11gR1/ 11gR2 Diagnostic Collection Guide</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 161818.1 </strong>Oracle Database (RDBMS) Releases Support Status Summary</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 301137.1 </strong>OS Watcher User Guide</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 1050693.1 </strong>Troubleshooting 11.2 Clusterware Node Evictions (Reboots)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 169706.1</strong> Oracle® Database on Unix AIX®,HP-UX®,Linux®,Mac OS® X,Solaris®,Tru64  Unix® Operating Systems Installation and Configuration Requirements  Quick Reference (8.0.5 to 11.2)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 883028.1</strong> New Background Processes introduced by ACFS</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 810394.1</strong> RAC Assurance Support Team: RAC Starter Kit and Best Practices (Generic)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 220970.1</strong> RAC: Frequently Asked Questions</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 970473.1</strong> Manual installation, deinstallation and verification of Oracle Text 11gR2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 421191.1</strong> Complete checklist for manual upgrades of Oracle databases from anyversion to any version on any platform</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 763386.1</strong> Requirements for Installing Oracle 11gR2 32-bit on SLES 10 (x86)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 785351.1</strong> Oracle 11gR2 Upgrade Companion</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 837570.1</strong> Complete Checklist for Manual Upgrades to 11gR2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 851598.1</strong> Linux OS Requirements Reference List for Database Server</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 870814.1</strong> Complete checklist to upgrade the database to 11gR2 using DBUA</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 871665.1</strong> How To Restore The Database To The Source Release After Upgrading The Database To Oracle 11gR2 Using DBUA</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 880211.1</strong> Requirements for Installing Oracle 11gR2 RDBMS on RHEL (and OEL) 4 x86</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 870877.1</strong> How To Save Oracle Enterprise Manager Database Control Data Before Upgrading The Single Instance Database To Other Release ?</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 880936.1</strong> Requirements for Installing Oracle 11gR2 RDBMS on RHEL (and OEL) 5 on 32-bit x86</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 881025.1</strong> Requirements for Installing Oracle 11gR2 32-bit on SLES 11 (x86)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 881044.1</strong> Requirements for Installing Oracle 11gR2 64-bit (AMD64/EM64T) on SLES 11</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 883299.1</strong> Oracle 11gR2 Relink New Feature</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 883335.1</strong> How to downgrade from 11.2 to previous release.</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 883743.1</strong> How To Deinstall Oracle Home In 11gR2 ?</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 884232.1</strong> 11gR2 Install (Non-RAC): Understanding New Changes With All New 11.2 Installer</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 884282.1</strong> “Grid infrastructure” is not Grid Control 11gR2 (11.2.0.1.0)</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 884435.1</strong> Requirements for Installing Oracle 11gR2 64-bit (AMD64/EM64T) on SLES 10</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 886749.1</strong> Oracle 11gR2 Deinstall And Deconfig Tool Options</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 886807.1</strong> How To Create A Parameter File For Silent Deinstallation Of Oracle 11gR2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 948040.1</strong> How To Rename A Diskgroup On ASM 11gR2?</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 954552.1</strong> 11.2 Oracle Restart cannot manage 10.1.x single instances</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 886407.1 </strong>ACFS/ADVM is NOT started automatically after node reboot or after CRS is restarted in non-RAC environment</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 887658.1</strong> Reconfigure HAS and CSS for nonRAC ASM on 11.2</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 947520.1</strong> AFTER NODE REBOOT CSSD IS NOT STARTED IN 11gR2 Non-RAC</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 942166.1</strong> How to Proceed from Failed 11gR2 Grid Infrastructure (CRS) Installation</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 948456.1</strong> Pre-11.2 Database Issues in 11gR2 Grid Infrastructure Environment</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 975457.1</strong> How to Troubleshoot Connectivity Issue with 11gR2 SCAN Name</span></p>
<p><span style="color: #3366ff;"><strong>Doc ID : 887962.1</strong> 11gR2 New Feature: Deferred Segment Creation</span></p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/how-to-change-asm-sys-password-creating-sysasm-user-11g/" title="How to change ASM SYS Password and Creating SYSASM user 11g.">How to change ASM SYS Password and Creating SYSASM user 11g.</a></li><li><a href="http://orachat.com/tuning-indexes-rac-4/" title="Tuning indexes on RAC environments-4">Tuning indexes on RAC environments-4</a></li><li><a href="http://orachat.com/tuning-indexes-rac-3/" title="Tuning indexes on RAC environments-3">Tuning indexes on RAC environments-3</a></li><li><a href="http://orachat.com/tuning-indexes-rac/" title="Tuning indexes on RAC environments-1">Tuning indexes on RAC environments-1</a></li><li><a href="http://orachat.com/index-performance-tuning-rac/" title="Index Performance Tuning Techniques for RAC">Index Performance Tuning Techniques for RAC</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-database-11gr2-rac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Oracle library cache tuning &#8211; A Real Case Study.</title>
		<link>http://orachat.com/oracle-library-cache-tuning-real-case-study/</link>
		<comments>http://orachat.com/oracle-library-cache-tuning-real-case-study/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 13:48:21 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle Core Performance]]></category>
		<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[10g]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[performance tuning]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=707</guid>
		<description><![CDATA[I have made a few comments in previous posts about the latch: library cache and playing with cursor parameters that can introduce surprises; Here is another one library cache tuning &#8211; A Real Case Study. Scenario : Users started complaining about very poor application performance, hung and incomplete transactions. Some severity one ticket for immediate [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #333399;">I have made a few comments in previous posts about the <strong>latch: library cache</strong> and playing with cursor parameters that can introduce surprises; Here is another one<br />
</span></p>
<p><span style="color: #333399;"> </span></p>
<h3><span style="color: #333399;"><strong>library cache tuning &#8211; A Real Case Study.</strong></span></h3>
<p><span style="color: #333399;"> </span></p>
<p><span style="color: #333399;"><strong>Scenario :</strong></span></p>
<p><span style="color: #333399;">Users started complaining about very poor application performance, hung and incomplete transactions. Some severity one ticket for immediate action.</span></p>
<p><span style="color: #333399;"><strong>Environment :</strong></span></p>
<p><span style="color: #333399;">Oracle 10g (10.2.0.4) Two node RAC, About 15 different Java and .net legacy applications.<br />
Highly transactional.</span></p>
<p><span style="color: #333399;">11 Gig Shared pool<br />
16 Gig DB cache</span></p>
<p><span style="color: #333399;">Availability : 24*7, Outage unacceptable to business</span></p>
<p><span style="color: #333399;">I made some observations, thought it would be a nice idea to share them with you all.</span></p>
<p><span style="color: #333399;">Here are the citation from AWR report(1 hr.) during the problem period.</span></p>
<p><span style="color: #333399;">Snap Id Snap Time Sessions Cursors/Session<br />
Begin Snap: 39718 07-Jun-11 05:00:13 438 66.3<br />
End Snap: 39719 07-Jun-11 06:00:19 651 64.4<br />
<span style="color: #ff0000;">Elapsed:   60.09 (mins)<br />
DB Time:   490.75 (mins)</span></span></p>
<ul>
<li><span style="color: #333399;">Very poor response time can be visible from the differences between db time and elapsed time &#8211; No wonder why users were complaining.</span></li>
</ul>
<p><span style="color: #333399;"><strong>Load Profile :<br />
</strong></span></p>
<p><span style="color: #333399;">Redo size: 698,307.96 9,249.30<br />
Logical reads: 187,227.45 2,479.88<br />
Block changes: 4,078.58 54.02<br />
Physical reads: 29.63 0.39<br />
Physical writes: 79.30 1.05<br />
<span style="color: #ff0000;">User calls: 2,638.29 34.94</span><br />
<span style="color: #ff0000;">Parses: 1200.23 5.81</span><br />
<span style="color: #ff0000;">Hard parses: 52.84 0.70</span><br />
Sorts: 230.95 3.06<br />
Logons: 0.91 0.01<br />
Executes: 601.64 7.97<br />
Transactions: 75.50</span></p>
<ul>
<li><span style="color: #333399;"> Parse count is just half of user calls, so every two user call there is a parse request.Dammn bad, this going to be a huge CPU consumer.</span></li>
</ul>
<ul>
<li><span style="color: #333399;"> Hard parses per second is 52.84, if I said very bad for parse count, I should say very very very bad for hard parse &#8211; this is very much resource intensive.</span><span style="color: #333399;"> Unacceptable !!</span></li>
</ul>
<p><strong><span style="color: #333399;">Instance Efficiency :<br />
</span></strong></p>
<p><span style="color: #333399;">Buffer Nowait %: 100.00 Redo NoWait %: 100.00<br />
Buffer Hit %: 99.99 In-memory Sort %: 100.00<br />
<span style="color: #ff0000;">Library Hit %: 91.75 Soft Parse %: 87.95</span><br />
<span style="color: #ff0000;">Execute to Parse %: 27.13 </span>Latch Hit %: 99.97<br />
Parse CPU to Parse Elapsd %: 2.17 % Non-Parse CPU: 97.35</span></p>
<ul>
<li><span style="color: #333399;">Low execute to parse ratio denotes CPU is significantly busy in parsing. Soft Parse% showing, most of the parse are soft parses. It means we should</span><span style="color: #333399;"> focus on soft parsing activity.</span></li>
</ul>
<ul>
<li><span style="color: #333399;">Parse CPU to Parse Elapsed % is quite low, which indicate  some bottleneck is there related to parsing. It could be a side-effect of huge parsing pressure. Like CPU</span><span style="color: #333399;"> cycles are not available.</span></li>
</ul>
<ul>
<li><span style="color: #333399;">Library Hit % is very poor, it should be atleast above 95% .<br />
</span></li>
</ul>
<p><strong><span style="color: #333399;">Top 5 Timed Events :</span></strong></p>
<p><span style="color: #333399;"><span style="color: #ff0000;">latch: library cache 6,470 16,152 2,496 54.9 Concurrency</span><br />
CPU time   11,675   39.7<br />
log file sync 193,236 1,109 6 3.8 Commit<br />
log file parallel write 224,479 795 4 2.7 System I/O<br />
db file sequential read 38,110 386 10 1.3 User I/O</span></p>
<ul>
<li><span style="color: #333399;"> High wait on latch: library cache . So very clear that slow performance is due to the contention in Library cache.</span></li>
</ul>
<ul>
<li><span style="color: #333399;">Also looked at SQL ordered by Parse Calls and SQL ordered by Version Count. That pin point the issue at library chache.<br />
</span></li>
</ul>
<p><strong><span style="color: #333399;">Whats next ? ?</span></strong></p>
<p><span style="color: #333399;">Above observations indicate that there is some serious problem to share the sqls. It could be a result of bad application code wihout bind variables . Each calls are going for a parse &#8211; either soft or hard and no caching. The obvious advantage to caching cursors by session is reduced parse times, which can leads to faster overall execution times.</span></p>
<p><span style="color: #333399;"><strong>Caching Caching ..</strong> Lets look at the Oracle caching parameters now. The value was</span></p>
<p><em><span style="color: #333399;">cursor_sharing= similar</span></em></p>
<p><em><span style="color: #333399;">open_cursors= 3000</span></em></p>
<p><em><span style="color: #333399;">session_cached_cursors= 100</span></em></p>
<p><span style="color: #333399;">Two things I played around was <strong>cursor_sharing</strong> and <strong>session_cached_cursors</strong>. I can ignore open_cursors for time being as it is already high for my environment.</span></p>
<p><span style="color: #333399;">I have chosen to use <strong>SESSION_CACHED_CURSORS</strong> to help out in this scenario as an application that is continually closing and reopening cursors, you can monitor its effectiveness via two more statistics in v$sesstat. The statistic &#8220;session cursor cache hits&#8221; reflects the number of times that a statement the session sent for parsing was found in the session cursor cache, meaning it didn&#8217;t have to be reparsed and your session didn&#8217;t have to search through the library cache for it. You can compare this to the statistic &#8220;parse count (total)&#8221;; subtract &#8220;session cursor cache hits&#8221; from &#8220;parse count (total)&#8221; to see the number of parses that actually occurred.</span></p>
<p><span style="color: #333399;"><strong>v$sesstat</strong> also provides a statistic to monitor the number of cursors each session has in its session cursor cache.</span></p>
<p><span style="color: #333399;"><strong>&#8211;session cached cursors, by session</strong></span></p>
<p><span style="color: #333399;"><em>select a.value, s.username, s.sid, s.serial#<br />
from v$sesstat a, v$statname b, v$session s<br />
where a.statistic# = b.statistic#  and s.sid=a.sid<br />
and b.name = &#8216;session cursor cache count&#8217; ;</em></span></p>
<p><strong><span style="color: #333399;">&#8211;session cached cursor usage.</span></strong><span style="color: #333399;"><em> </em></span></p>
<p><span style="color: #333399;"><em>select a.value curr_cached, p.value max_cached, s.username, s.sid, s.serial#<br />
from v$sesstat a, v$statname b, v$session s, v$parameter2 p<br />
where a.statistic# = b.statistic#  and s.sid=a.sid<br />
and p.name=&#8217;session_cached_cursors&#8217;<br />
and b.name = &#8216;session cursor cache count</em>&#8216;</span></p>
<p><span style="color: #333399;">Above query gave a result that <strong>CUR_CACHED=MAX_CACHED</strong> . If the session cursor cache count is maxed out, session_cursor_cache_hits is low compared to all parses, and you suspect that the application is re-submitting the same queries for parsing repeatedly, then increasing SESSION_CURSOR_CACHE_COUNT will help with latch contention and can give boost to performance.</span></p>
<p><span style="color: #333399;">One fix is ready now i.e increase SESSION_CACHED_CURSOR from 100 to 300 (Decided to put 300 first and  monitor the session cursor caching).</span></p>
<p><span style="color: #333399;">We had a high hard parse rate as well &#8211; So the second parameters to play around was CURSOR_SHARING. For poorly coded application Oracle highly recomend to keep <strong>CURSOR_SHARING=FORCE</strong> . Also there are few bugs reported with CURSOR_SHARING=SIMILAR option as well as it is Deprecated from 11g onwards. <em><span style="color: #333399;">[</span></em></span><em><span style="color: #333399;"><strong>ANNOUNCEMENT: Deprecating the cursor_sharing = ‘SIMILAR’ setting [MOS Note ID 1169017.1]</strong></span></em><span style="color: #333399;"><em><span style="color: #333399;">]</span></em><br />
</span></p>
<p><strong><span style="color: #333399;">Conclusion :</span></strong></p>
<p><span style="color: #333399;">Changed initialization parameters for session cached cursors and cursor sharing hence reduced library cache contention by avoiding parse calls and releasing cpu cycle.<br />
</span></p>
<p><span style="color: #333399;">I have changed to</span></p>
<p><strong><span style="color: #333399;">CURSOR_SHARING=FORCE<br />
SESSION_CACHED_CURSOR=300</span></strong></p>
<p><span style="color: #333399;">Certaily you can dynamicaly do CURSOR_SHARING=FORCE</span></p>
<p><em><span style="color: #333399;">ALTER SYSTEM SET CURSOR_SHARING=FORCE SCOPE=BOTH;</span></em></p>
<p><span style="color: #333399;">But SESSION_CACHED_CURSOR is not dynamic and you need a bounce to reflects this. I was in trouble for this because it is a zero tolerence system and outage should be planned a month before. I cannot wait until that to tune this perf issue. Again there is anotehr back door method to implement SESSION_CACHED_CURSOR to get effect, but that’s a topic for another blog &#8211; you can see it in another post here ..</span></p>
<p><span style="color: #333399;">I have mentioned at the very start cursor parameters that can introduce  surprises. Yes, very true. After these two changes all the library cache contention was vanished.</span></p>
<p><span style="color: #333399;">Hard parses reduced from 58 per sec to 1 or 0 per sec. Library hit ratio become 98% and soft parse ration become 99%  and response time become jet fast.</span></p>
<p><strong><span style="color: #333399;">References:</span></strong></p>
<p><span style="color: #333399;"><a href="http://wiki.oracle.com/page/SESSION_CACHED_CURSOR" target="_blank">Oracle Wiki &#8211; Session Cached Cusrsor</a></span></p>
<p><span style="color: #333399;">MOS Note:<strong>261020.1</strong> High Version Count with CURSOR_SHARING = SIMILAR or FORCE</span></p>
<p><span style="color: #333399;">MOS Note ID <strong>94036.1</strong> Init.ora Parameter &#8220;CURSOR_SHARING&#8221; Reference </span></p>
<p><span style="color: #333399;"><a href="http://www.juliandyke.com/Presentations/LibraryCacheInternals.ppt" target="_blank">Julian Dyke&#8217; LibraryCacheInternals </a></span></p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/oracle-hanganalyze/" title="Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;">Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;</a></li><li><a href="http://orachat.com/oracle-dba-performance-queries/" title="Oracle DBA Silver Bullets &#8211; Performance Queries">Oracle DBA Silver Bullets &#8211; Performance Queries</a></li><li><a href="http://orachat.com/performance-tuning-awr/" title="Oracle Performance Tuning &#8211; How to Use AWR ?">Oracle Performance Tuning &#8211; How to Use AWR ?</a></li><li><a href="http://orachat.com/tuning-indexes-rac-4/" title="Tuning indexes on RAC environments-4">Tuning indexes on RAC environments-4</a></li><li><a href="http://orachat.com/tuning-indexes-rac-3/" title="Tuning indexes on RAC environments-3">Tuning indexes on RAC environments-3</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-library-cache-tuning-real-case-study/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;</title>
		<link>http://orachat.com/oracle-hanganalyze/</link>
		<comments>http://orachat.com/oracle-hanganalyze/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 11:21:37 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle Core Performance]]></category>
		<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[10g]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[performance tuning]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=698</guid>
		<description><![CDATA[Hanganalyze / Librarycache contention Last week I was called up to  help to resolve one of the production database hung issue. This totally screwed the database by all means  [ Database connections were hanging, Connections on the server using SQL*Plus as sysdba was also hanging, EM grid was spinning ] Dammn totally stuck &#8230;. you [...]]]></description>
			<content:encoded><![CDATA[<div><span style="color: #000080;"></p>
<h3>Hanganalyze / Librarycache contention</h3>
<p>Last week I was called up to  help to resolve one of the production  database hung issue. This totally screwed the database by all means  [ Database  connections were hanging, Connections on the server using SQL*Plus as sysdba was  also hanging, EM grid was spinning ] Dammn totally stuck &#8230;. you may  encounter such trap in your DBA life, so here how you come out from such vicious  issue.</p>
<p>What next !!  You need a back door entry to clutch through, where <strong>sqlplus  -prelim </strong>comes as a great help.</p>
<p>Before stepping into how did I analyze, let me walk through what is<strong> </strong><strong>sqlplus -prelim :</strong> This is the backdoor entry method to access  database (only SGA) in a hung situation where no other methods are allowing to  create new sessions in database. This will not create any session in DB rather  connect to SGA directly, you may think what can be done by only connecting SGA &#8211;  Yes, you can do loads of thing to show your face from the issue.</p>
<p><strong>A walk through</strong> &#8230;</p>
<p>Connected to sqlplus using -prelim option. Remember, it wont say &#8220;Connected  to Oracle Database 10.2.0.4&#8243; etc. Just sql prompt will be displayed.</p>
<p>$ sqlplus -prelim</p>
<p>SQL*Plus: Release 10.2.0.4.0 &#8211; Production on Fri May  20 04:42:05 2011</p>
<p>Copyright (c) 1982, 2006, Oracle. All Rights  Reserved.</p>
<p>Enter user-name: / as sysdba<br />
04:42:09 SQL&gt;</p>
<p>Now you can use oradebug utility to dump SGA. You can use oradebug only in  sql prompt. Type <strong>oradebug help</strong> for all commands.</p>
<p>SQL&gt; oradebug setmypid<br />
SQL&gt; oradebug hanganalyze 12</p>
<p>This will produce a trace file under udump with process ID. While examining  the trace file, I found there are about 120 objects waiting to get the library  cache latch, got the blocking session ID and Serial#. This gives me the OS  process ID for the blocker and checked for the trace files with that process  ID.  Yes, I got the blocking sql from the this trace and also the service name.</p>
<p>Now time to chase the application man ! I have asked him the logic used in this query and came to know he is running the update statement  through a loop with multiple threads .. ohh God, no surprise why there is a  library cache contention. So as a immediate remedy he was okay to kill that  session, kill -9 and killed the process.  Immediately everything started  working and later on application got a code fix to handle this SQL. That&#8217;s it so  simple <img src='http://orachat.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>Conclusion :</h3>
<p>When you can’t logon to the database to get the information from V$SESSION  (EVENT), try using oradebug command to do hanganalyze. Of course to run oradebug  you should connect to sqlplus and in hang situation sqlplus -prelim is the hero.  [Note, sqlplus -prelim option is present only in Oracle 10g and above]</p>
<p>Some MOS notes helped me:</p>
<p>Note: 215858.1 &#8211; &#8220;Interpreting HANGANALYZE trace files to diagnose hanging  and performance problems&#8221;</p>
<p>Note: 310830.1 &#8211; &#8220;How to Use Oradebug to Get Trace File Name and  Location&#8221;</p>
<p>Note: 417879.1 &#8211; &#8220;-prelim Option When Running System State Dump&#8221;</p>
<p>Cheers .. have a great debugging ..</p>
<p></span></div>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/oracle-dba-performance-queries/" title="Oracle DBA Silver Bullets &#8211; Performance Queries">Oracle DBA Silver Bullets &#8211; Performance Queries</a></li><li><a href="http://orachat.com/performance-tuning-awr/" title="Oracle Performance Tuning &#8211; How to Use AWR ?">Oracle Performance Tuning &#8211; How to Use AWR ?</a></li><li><a href="http://orachat.com/tuning-indexes-rac-4/" title="Tuning indexes on RAC environments-4">Tuning indexes on RAC environments-4</a></li><li><a href="http://orachat.com/tuning-indexes-rac-3/" title="Tuning indexes on RAC environments-3">Tuning indexes on RAC environments-3</a></li><li><a href="http://orachat.com/oracle-support/" title="Oracle Support &#8211; Useful Metalink References">Oracle Support &#8211; Useful Metalink References</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-hanganalyze/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Oracle Universal Content Management (UCM) Upgrade from 10g to 11g</title>
		<link>http://orachat.com/oracle-universal-content-management-ucm-upgrade-10g-11g/</link>
		<comments>http://orachat.com/oracle-universal-content-management-ucm-upgrade-10g-11g/#comments</comments>
		<pubDate>Wed, 04 May 2011 16:44:06 +0000</pubDate>
		<dc:creator>Vikas Krishna</dc:creator>
				<category><![CDATA[Oracle Fusion Applications]]></category>
		<category><![CDATA[Oracle Fusion Middleware 11g]]></category>
		<category><![CDATA[Oracle UCM 11g]]></category>
		<category><![CDATA[Oracle Weblogic 11g]]></category>
		<category><![CDATA[Fusion 11g]]></category>
		<category><![CDATA[Webcenter 11g]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=646</guid>
		<description><![CDATA[Step by step process to upgrade UCM 10g to 11g i.e to fusion infrastructure. These steps are exact replica from the upgrade that I performed prior implementation at customer site. 1.   Install Webcenter 11g Suite Install 11g Webcenter Suite and create a domain for UCM and check whether UCM 11g Admin console is coming up [...]]]></description>
			<content:encoded><![CDATA[<p>Step by step process to upgrade UCM 10g to 11g i.e to fusion infrastructure. These steps are exact replica from the upgrade that I performed prior implementation at customer site.</p>
<h2>1.   Install Webcenter 11g Suite</h2>
<p>Install 11g Webcenter Suite and create a domain for UCM and check whether UCM 11g Admin console is coming up properly.</p>
<p>In Our environment we have installed  UCM 10g and in the same node we installed Weblogic  Server 11g (which has UCM 11g).</p>
<p>Refer  <a href="http://onlineappsdba.com/index.php/2009/09/14/oracle-webcenter-suite-11g-fmw-installation-overview/" target="_blank">Install Webcenter 11g Suite</a></p>
<h2>2.Upgrade Oracle UCM schema</h2>
<p>We are using Mocha Xserver in our desktop as display server</p>
<p>Start mocha server in the desktop.Open a telnet session for server and export DISPLAY to IP address of desktop</p>
<p>export DISPLAY=143.156.98.23.0.0</p>
<p>Navigate to Enterprise Content Management Home bin(11g) directory and invoke upgrade assistant.</p>
<p><em><strong>cd /apps/opt/fmw/webcenter/Oracle_ECM1/bin </strong></em></p>
<p><em><strong>./ua</strong></em></p>
<p><em><strong><a href="http://orachat.com/wp-content/uploads/2011/05/one.jpg" target="_blank"><img class="size-full wp-image-651 alignnone" title="one" src="http://orachat.com/wp-content/uploads/2011/05/one.jpg" alt="" width="466" height="371" /></a></strong></em></p>
<p><strong>Chose the radio button to Upgrade Universal Content Management Schema </strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/two.jpg" target="_blank"><img class="alignnone size-full wp-image-657" title="two" src="http://orachat.com/wp-content/uploads/2011/05/two.jpg" alt="" width="449" height="357" /></a></strong></p>
<p>We had already taken a backup of schema. We had also checked certification matrix for upgrade, hence checked both the option and proceed further..</p>
<p><a href="http://orachat.com/wp-content/uploads/2011/05/three.jpg" target="_blank"><img class="alignnone size-full wp-image-660" title="three" src="http://orachat.com/wp-content/uploads/2011/05/three.jpg" alt="" width="466" height="371" /></a></p>
<p>Here enter the <strong>10g UCM</strong> instance directory bin location</p>
<p><a href="http://orachat.com/wp-content/uploads/2011/05/four.jpg" target="_blank"><img class="alignnone size-full wp-image-663" title="four" src="http://orachat.com/wp-content/uploads/2011/05/four.jpg" alt="" width="466" height="371" /></a></p>
<p><strong>Enter the database access details for 10g UCM schema</strong></p>
<p><a href="http://orachat.com/wp-content/uploads/2011/05/five.jpg" target="_blank"><img class="alignnone size-full wp-image-664" title="five" src="http://orachat.com/wp-content/uploads/2011/05/five.jpg" alt="" width="466" height="371" /></a></p>
<p><strong><br />
</strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/six.jpg" target="_blank"><img class="alignnone size-full wp-image-665" title="six" src="http://orachat.com/wp-content/uploads/2011/05/six.jpg" alt="" width="466" height="371" /></a></strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/seven.jpg" target="_blank"><img class="alignnone size-full wp-image-666" title="seven" src="http://orachat.com/wp-content/uploads/2011/05/seven.jpg" alt="" width="466" height="373" /></a></strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/eight.jpg" target="_blank"><img class="alignnone size-full wp-image-667" title="eight" src="http://orachat.com/wp-content/uploads/2011/05/eight.jpg" alt="" width="466" height="371" /></a></strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/nine.jpg" target="_blank"><img class="alignnone size-full wp-image-670" title="nine" src="http://orachat.com/wp-content/uploads/2011/05/nine.jpg" alt="" width="466" height="371" /></a></strong></p>
<h2>3.   Upgrade UCM Middle Tier</h2>
<p>Navigate to Enterprise Content Management Home bin(11g) directory and invoke upgrade assistant</p>
<p><strong>cd /apps/opt/fmw/webcenter/Oracle_ECM1/bin </strong></p>
<p><strong>./ua</strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/ten.jpg" target="_blank"><img class="alignnone size-full wp-image-671" title="ten" src="http://orachat.com/wp-content/uploads/2011/05/ten.jpg" alt="" width="466" height="371" /></a></strong></p>
<p><strong>Choose the option to Upgrade UCM middle Tier</strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/eleven.jpg" target="_blank"><img class="alignnone size-full wp-image-672" title="eleven" src="http://orachat.com/wp-content/uploads/2011/05/eleven.jpg" alt="" width="466" height="371" /></a></strong></p>
<p><strong>Enter </strong><strong>10g UCM instance bin directory details<br />
</strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/twelve.jpg"><img class="alignnone size-full wp-image-673" title="twelve" src="http://orachat.com/wp-content/uploads/2011/05/twelve.jpg" alt="" width="466" height="371" /></a></strong></p>
<p><strong>Here give the location of the UCM domain which we created. We can backup the cs directory in </strong><strong>weblogic 11g domain and then create a new cs directory.</strong></p>
<p><a href="http://orachat.com/wp-content/uploads/2011/05/thirteen.jpg" target="_blank"><img class="alignnone size-full wp-image-684" title="thirteen" src="http://orachat.com/wp-content/uploads/2011/05/thirteen.jpg" alt="" width="466" height="371" /></a></p>
<p><strong>Enter the access details for Weblogic Admin Server</strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/fourteen.jpg" target="_blank"><img class="alignnone size-full wp-image-685" title="fourteen" src="http://orachat.com/wp-content/uploads/2011/05/fourteen.jpg" alt="" width="468" height="371" /></a></strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/fifteen.jpg" target="_blank"><img class="alignnone size-full wp-image-686" title="fifteen" src="http://orachat.com/wp-content/uploads/2011/05/fifteen.jpg" alt="" width="466" height="371" /></a></strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/sixteen.jpg" target="_blank"><img class="alignnone size-full wp-image-687" title="sixteen" src="http://orachat.com/wp-content/uploads/2011/05/sixteen.jpg" alt="" width="466" height="371" /></a></strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/seventeen.jpg" target="_blank"><img class="alignnone size-full wp-image-688" title="seventeen" src="http://orachat.com/wp-content/uploads/2011/05/seventeen.jpg" alt="" width="466" height="371" /></a></strong></p>
<p><strong><a href="http://orachat.com/wp-content/uploads/2011/05/eighteen.jpg" target="_blank"><img class="alignnone size-full wp-image-689" title="eighteen" src="http://orachat.com/wp-content/uploads/2011/05/eighteen.jpg" alt="" width="466" height="371" /></a></strong></p>
<h2></h2>
<h2>4.   Change the Data Source for UCM 11g</h2>
<p>From Weblogic Admin Console navigate  Services -&gt; Data Sources -&gt; CSDS</p>
<p>Enter the <strong>UCM 10g</strong> schema details and then restart UCM server and the weblogic admin server.</p>
<h2>5.   Verify Instance</h2>
<p>Start upgrade assistance again</p>
<p><em><strong>cd /apps/opt/fmw/webcenter/Oracle_ECM1/bin </strong></em></p>
<p><em><strong>./ua</strong></em></p>
<p><a href="http://orachat.com/wp-content/uploads/2011/05/ninteen.jpg" target="_blank"><img class="alignnone size-full wp-image-690" title="ninteen" src="http://orachat.com/wp-content/uploads/2011/05/ninteen.jpg" alt="" width="466" height="371" /></a></p>
<p><a href="http://orachat.com/wp-content/uploads/2011/05/twenty.jpg" target="_blank"></a><a href="http://orachat.com/wp-content/uploads/2011/05/twentyone.jpg" target="_blank"><img class="alignnone size-full wp-image-692" title="twentyone" src="http://orachat.com/wp-content/uploads/2011/05/twentyone.jpg" alt="" width="468" height="371" /></a></p>
<p><a href="http://orachat.com/wp-content/uploads/2011/05/twentytwo.jpg" target="_blank"><img class="alignnone size-full wp-image-693" title="twentytwo" src="http://orachat.com/wp-content/uploads/2011/05/twentytwo.jpg" alt="" width="466" height="371" /></a></p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/fusion-dba-certifications/" title="Fusion DBA Certifications">Fusion DBA Certifications</a></li><li><a href="http://orachat.com/oracle-fusion-applications/" title="Oracle Fusion Applications">Oracle Fusion Applications</a></li><li><a href="http://orachat.com/oracle-application-server-oracle-weblogic-server/" title="Oracle Application Server  Vs. Oracle WebLogic Server ">Oracle Application Server  Vs. Oracle WebLogic Server </a></li><li><a href="http://orachat.com/weblogic-jvm-diagonostics/" title="Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM">Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM</a></li><li><a href="http://orachat.com/fusion-middleware/" title="Fusion Middleware Overview &#8211; Become a Fusion DBA">Fusion Middleware Overview &#8211; Become a Fusion DBA</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-universal-content-management-ucm-upgrade-10g-11g/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Oracle 11g New Feature Causes AMM to Restart</title>
		<link>http://orachat.com/oracle-11g-feature-amm-restart/</link>
		<comments>http://orachat.com/oracle-11g-feature-amm-restart/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 08:52:32 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle 11g]]></category>
		<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[Oracle Metalink]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Oracle Critical Alerts]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=622</guid>
		<description><![CDATA[This post is from one of the emails I have recieved from my friend Mackenzie D&#8217;Cruz, he experienced this issue on his production environment. This information is published by Don Burleson at http://www.dba-oracle.com. So this is just a copy to let our readers know about this issue. Beware, following new upgrades to 11gR2, you can [...]]]></description>
			<content:encoded><![CDATA[<h6>This post is from one of the emails I have recieved from my friend Mackenzie D&#8217;Cruz, he experienced this issue on his production environment.</h6>
<h6>This information is published by Don Burleson at http://www.dba-oracle.com. So this is just a copy to let our readers know about this issue.</h6>
<p>Beware, following new upgrades to 11gR2, you can find that AMM has reappeared, even if you think that you have disabled it.</p>
<p>Oracle Automatic Shared Memory Management (ASMM) was introduced in Oracle 10g for small databases where a one-sized-fits-all approach was used in small hands-off databases that did not have a DBA to intelligently allocate the SGA pools.</p>
<p>When a small system has a too small RAM region for the SGA, Oracle AMM will cause a performance problem with RAM thrashing and it tries to readjust all of the RAM regions.</p>
<p>In all large mission-critical databases, the DBA will disable AMM because an intelligent human will always do a better job than a simple software solution, especially when you need to intelligently reconfigure the SGA in anticipation of a changing workload.</p>
<p>The following references will be helpful in researching the behavior of AMM:</p>
<ul>
<li><a href="http://www.dba-oracle.com/oracle_news/news_linux_hugepages_asmm_memory.htm" target="_blank">Never use AMM with Linux hugepages</a></li>
<li> Review these <a href="http://www.dba-oracle.com/t_amm_automatic_vs_manual_ram_pools.htm" target="_blank">important notes</a> on when to turn AMM off.</li>
<li> Consult <a href="http://dba-oracle.com/googlesearchsite_proc.htm?cx=000522505899594707971%3A4-ldikxixw4&amp;cof=FORID%3A10&amp;ie=UTF-8&amp;q=amm" target="_blank">related notes</a> on using AMM in large production databases.</li>
</ul>
<p>Disabling AMM in Oracle 11g Release 2</p>
<p>You can enable and disable AMM by changing the value of these parameters to non-zero settings:</p>
<ul>
<li>sga_target</li>
<li>sga_max_size</li>
<li>pga_aggregate_target</li>
<li>sga_max_size</li>
<li>db_cache_size</li>
<li>shared_pool_size</li>
<li>java_pool_size</li>
</ul>
<p>nfortunately a new feature in 11gR2 turns AMM on unless a hidden parameter called _memory_imm_mode_without_autosga is set to FALSE.</p>
<p>Important 11gR2 Note:  Even if AMM has been disabled in Oracle 10g, AMM may reappear in Oracle 11g unless the following parameter is set:</p>
<p>alter system set &#8220;_memory_imm_mode_without_autosga&#8221;=FALSE scope=both;</p>
<p>There is a MOSC note about AMM in 11gR2 that notes that this regression back to AMM is the expected behavior in 11.2 for immediate memory allocation requests and that Oracle added this behavior as a 11gR2 new feature when automatic memory management was disabled.</p>
<p>The 11.2 Oracle support metalink  note on AMM regression is note number<a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=PROBLEM&amp;id=1269139.1"> </a><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=PROBLEM&amp;id=1269139.1" target="_blank">1269139.1</a>, titled:</p>
<p>SGA Re-Sizes Occurring Despite AMM/ASMM Being Disabled(MEMORY_TARGET/SGA_TARGET=0)</p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/oracle-hanganalyze/" title="Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;">Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;</a></li><li><a href="http://orachat.com/oracle-dba-performance-queries/" title="Oracle DBA Silver Bullets &#8211; Performance Queries">Oracle DBA Silver Bullets &#8211; Performance Queries</a></li><li><a href="http://orachat.com/oracle-8i-11g-hidden-features/" title="Oracle 8i to 11g – hidden features.">Oracle 8i to 11g – hidden features.</a></li><li><a href="http://orachat.com/real-application-testing/" title="Real Application Testing Oracle RAT 11g">Real Application Testing Oracle RAT 11g</a></li><li><a href="http://orachat.com/how-to-change-asm-sys-password-creating-sysasm-user-11g/" title="How to change ASM SYS Password and Creating SYSASM user 11g.">How to change ASM SYS Password and Creating SYSASM user 11g.</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-11g-feature-amm-restart/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Oracle DBA Silver Bullets &#8211; Performance Queries</title>
		<link>http://orachat.com/oracle-dba-performance-queries/</link>
		<comments>http://orachat.com/oracle-dba-performance-queries/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 14:40:12 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[Oracle DBA Scripts]]></category>
		<category><![CDATA[10g]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[performance tuning]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=617</guid>
		<description><![CDATA[Just thought to share few queries from my repository. It may be useful for all new DBAs. Of course these are quite old ones and you can do most of them through Enterprise Manager, still we DBAs always like command line Show sessions that are blocking each other : select 'SID ' &#124;&#124; l1.sid &#124;&#124;' [...]]]></description>
			<content:encoded><![CDATA[<p>Just thought to share few queries from my repository. It may be useful for all new DBAs. Of course these are quite old ones and you can do most of them through Enterprise Manager, still we DBAs always like command line <img src='http://orachat.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>Show sessions that are blocking each other :</h3>
<pre>select	'SID ' || l1.sid ||' is blocking  ' || l2.sid blocking
from	v$lock l1, v$lock l2
where	l1.block =1 and l2.request &gt; 0
and	l1.id1=l2.id1
and	l1.id2=l2.id2
/</pre>
<h3>Show locked objects :</h3>
<pre>set lines 100 pages 999
col username 	format a20
col sess_id 	format a10
col object	format a25
col mode_held	format a10
select	oracle_username || ' (' || s.osuser || ')' username
,	s.sid || ',' || s.serial# sess_id
,	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>
<h3>Show which row is locked :</h3>
<pre>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#)
from	v$session s
,	dba_objects do
where	sid=&amp;sid
and 	s.ROW_WAIT_OBJ# = do.OBJECT_ID
/

Then select the row with that rowid...

select * from &lt;table&gt; where rowid=&lt;rowid&gt;;</pre>
<h3>List locks :</h3>
<pre>column lock_type format a12
column mode_held format a10
column mode_requested format a10
column blocking_others format a20
column username format a10
SELECT	session_id
,	lock_type
,	mode_held
,	mode_requested
,	blocking_others
,	lock_id1
FROM	dba_lock l
WHERE 	lock_type NOT IN ('Media Recovery', 'Redo Thread')
/</pre>
<h3>Show all ddl locks in the system :</h3>
<pre>select	ses.username
,	ddl.session_id
,	ses.serial#
,	owner || '.' || ddl.name object
,	ddl.type
,	ddl.mode_held
from	dba_ddl_locks ddl
,	v$session ses
where	owner like '%userid%'
and	ddl.session_id = ses.sid
/</pre>
<h3>Generate kill statement for ddl locking sessions :</h3>
<pre>select    'alter system kill session ''' || ddl.session_id || ',' || ses.serial# || ''' immediate;'
from    dba_ddl_locks ddl
,    v$session ses
where    owner like '%userid%'
and    ddl.session_id = ses.sid
/</pre>
<h3>Show currently exectuing sql :</h3>
<pre>select sql_text
from v$sqlarea
where users_executing &gt; 0
/</pre>
<h3>Session statistics :</h3>
<pre>select    sn.name
,    st.value
from    v$sesstat st
,    v$statname sn
where    st.STATISTIC# = sn.STATISTIC#
and    st.VALUE &gt; 0
and    st.SID = &amp;SID
order     by value desc
/</pre>
<h3>Resource intensive sql :</h3>
<pre>change 8192 to match block size

select sql_text
,      executions
,      to_char((((disk_reads+buffer_gets)/executions) * 8192)/1048576, '9,999,999,990.00')
 as total_gets_per_exec_mb
,      to_char((( disk_reads             /executions) * 8192)/1048576, '9,999,999,990.00')
 as disk_reads_per_exec_mb
,      to_char((( buffer_gets            /executions) * 8192)/1048576, '9,999,999,990.00')
 as buffer_gets_per_exec_mb
,      parsing_user_id
from   v$sqlarea
where  executions &gt; 10
order by 6 desc
/</pre>
<h3>File io stats :</h3>
<pre>Requires timed_statistics=true

set lines 80 pages 999
col fname heading "File Name" format a60
col sizemb heading "Size(Mb)" format 99,999
col phyrds heading "Reads" format 999,999,999
col readtim heading "Time" format 99.999
col phywrts heading "Writes" format 9,999,999
col writetim heading "Time" format 99.999
select     lower(name) fname
,          (bytes / 1048576) sizemb
,          phyrds
,    readtim
,          phywrts
,    writetim
from       v$datafile df
,          v$filestat fs
where      df.file# = fs.file#
order      by 1
/</pre>
<h3>In session tracing :</h3>
<pre>To switch it on:

exec dbms_system.set_sql_trace_in_session (&lt;sid&gt;, &lt;serial#&gt;, true);

To switch it off:

exec dbms_system.set_sql_trace_in_session (&lt;sid&gt;, &lt;serial#&gt;, false);</pre>
<h3>switch on event 10046 :</h3>
<pre>To switch it on:

alter session set events '10046 trace name context forever, level 8'; 

To switch it off:

alter session set events '10046 trace name context off';
Note. use tkprof to interpret the results.</pre>
<h3>Rows per block :</h3>
<pre>select    avg(row_count) avg
, max(row_count) max
, min(row_count) min
from      (
 select  count(*) row_count
 from    &amp;table_name
 group   by substr(rowid, 1, 15)
 )
/</pre>
<h3>Show the buffer cache advisory :</h3>
<pre>Note. The current setting is halfway down and has a read factor of one.

set lines 100 pages 999
col est_mb format 99,999
col estd_physical_reads format 999,999,999,999,999
select    size_for_estimate est_mb
,    estd_physical_read_factor
,    estd_physical_reads
from    v$db_cache_advice
where    name = 'DEFAULT'
order by size_for_estimate
/

db_cache_advice needs to be on for the above to work

alter system set db_cache_advice=on;</pre>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/oracle-hanganalyze/" title="Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;">Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;</a></li><li><a href="http://orachat.com/performance-tuning-awr/" title="Oracle Performance Tuning &#8211; How to Use AWR ?">Oracle Performance Tuning &#8211; How to Use AWR ?</a></li><li><a href="http://orachat.com/tuning-indexes-rac-4/" title="Tuning indexes on RAC environments-4">Tuning indexes on RAC environments-4</a></li><li><a href="http://orachat.com/tuning-indexes-rac-3/" title="Tuning indexes on RAC environments-3">Tuning indexes on RAC environments-3</a></li><li><a href="http://orachat.com/oracle-support/" title="Oracle Support &#8211; Useful Metalink References">Oracle Support &#8211; Useful Metalink References</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-dba-performance-queries/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Oracle 8i to 11g – hidden features.</title>
		<link>http://orachat.com/oracle-8i-11g-hidden-features/</link>
		<comments>http://orachat.com/oracle-8i-11g-hidden-features/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 12:17:48 +0000</pubDate>
		<dc:creator>Rijesh</dc:creator>
				<category><![CDATA[Oracle 11g]]></category>
		<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[10g]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=609</guid>
		<description><![CDATA[Every release contains many new features and enhancements that are not highlighted in the marketing material. Oracle assumes all customers will move on to new versions when they are released. Here are few examples of those &#8211; New  features failed to spot. DBMS_SYSTEM.KSDWRT undocumented package installed in all databases Used to write messages to trace [...]]]></description>
			<content:encoded><![CDATA[<p>Every release contains many new features and enhancements that are not highlighted in the marketing material. Oracle assumes all customers will move on to new versions when they are released. Here are few examples of those &#8211; New  features failed to spot.</p>
<h2>DBMS_SYSTEM.KSDWRT</h2>
<ul>
<li>undocumented      package</li>
<li>installed      in all databases</li>
<li>Used to      write messages to trace files and/or alert log use</li>
</ul>
<p>DBMS_SYSTEM.KSDWRT<br />
(<br />
DEST NUMBER,    &#8211; 1 = Trace File, 2 = Alert Log, 3 = Both<br />
TST  VARCHAR2    &#8211; Message<br />
);<br />
eg:<br />
DBMS_SYSTEM.KSDWRT (1, ‘Output to trace file’);<br />
DBMS_SYSTEM.KSDWRT (2, ‘Output to alert log’);<br />
DBMS_SYSTEM.KSDWRT (3, ’Output to both’);</p>
<h2>BITAND</h2>
<ul>
<li>Initially      undocumented built-in function</li>
<li>Performs      a bit-wise AND between two operators</li>
</ul>
<p>eg:  SELECT BITAND (42,1) FROM dual;</p>
<ul>
<li>Can be      used as basis for OR and XOR functions</li>
</ul>
<h2>DBMS_MONITOR</h2>
<ul>
<li>Introduced      in Oracle 10.1</li>
<li>To enable      trace in another session use</li>
</ul>
<p>DBMS_MONITOR.SESSION_TRACE_ENABLE<br />
(<br />
SESSION_ID NUMBER,    &#8211; SID<br />
SERIAL_NUM NUMBER,    &#8211; Serial Number<br />
WAITS BOOLEAN,        &#8211; Include Waits<br />
BINDS BOOLEAN    &#8211; Include Binds<br />
);</p>
<ul>
<li>Waits      (event 10046  level 8 ) are enabled by default</li>
<li>Binds      (event 10046 level 4) are disabled by default</li>
<li>To      disable trace in another session use</li>
</ul>
<p>DBMS_MONITOR.SESSION_TRACE_DISABLE<br />
(<br />
SESSION_ID NUMBER,    &#8211; SID<br />
SERIAL_NUM NUMBER    &#8211; Serial Number<br />
);</p>
<ul>
<li>Can be      enabled at database level in Oracle 10.2</li>
<li>To enable      trace for all database sessions use</li>
</ul>
<p>DBMS_MONITOR.DATABASE_TRACE_ENABLE<br />
(<br />
WAITS BOOLEAN,    &#8211; Include Waits<br />
BINDS BOOLEAN    &#8211; Include Binds<br />
INSTANCE_NAME VARCHAR2    &#8211; Instance Name<br />
);</p>
<h2>Fixed Date</h2>
<ul>
<li>Initialization      Parameter</li>
<li>Useful      for deterministic testing</li>
<li>In Oracle      8.0 and above can be set dynamically using ALTER SYSTEM</li>
<li>To set      date only use FIXED_DATE = ‘DD-MON-YY’</li>
<li>To set      date and time use FIXED_DATE = YYYY-MM-DD-HH24:MI:SS</li>
</ul>
<h2>Flushing the Buffer Cache</h2>
<ul>
<li>Introduced      in Oracle 10.1</li>
<li>Flushes      all unpinned buffers from the buffer cache</li>
</ul>
<p>ALTER SYSTEM FLUSH BUFFER_CACHE;</p>
<ul>
<li>In Oracle      9.0.1 and above the following command has the same effect</li>
</ul>
<p>ALTER SESSION SET EVENTS<br />
‘IMMEDIATE TRACE NAME FLUSH_CACHE’;</p>
<ul>
<li>Useful      for deterministic testing but…</li>
<li>After      issuing this statement</li>
<li>Warm up      the cache before testing workloads</li>
</ul>
<h2>Optimizer Environment Variables</h2>
<ul>
<li>In      Oracle 10.1 and above, optimizer environment variables are externalized at      :</li>
<li>instance      level     - V$SYS_OPTIMIZER_ENV</li>
<li>session      level     - V$SES_OPTIMIZER_ENV</li>
<li>statement      level &#8211; V$SQL_OPTIMIZER_ENV</li>
<li>Use the      values in these views when determining why execution plans differ</li>
</ul>
<h2>DBMS_XPLAN</h2>
<ul>
<li>Introduced      in Oracle 9.2</li>
<li>Formats      PLAN_TABLE contents generated by EXPLAIN PLAN</li>
<li>SELECT *      FROM TABLE (dbms_xplan.display);</li>
<li>DISPLAY      function parameters include TABLE_NAME – name of plan table STATEMENT_ID –      statement ID in plan table</li>
</ul>
<ul>
<li>In Oracle      10.1 and above</li>
</ul>
<p>New DISPLAY_CURSOR function, By default displays plan for last statement executed in session<br />
<strong>SELECT * FROM TABLE (dbms_xplan.display_cursor);</strong></p>
<h2>V$SESSION_WAIT_HISTORY</h2>
<ul>
<li>Introduced      in Oracle 10.1</li>
<li>Externalises      last 10 wait events for each session</li>
<li>Similar      information to V$SESSION_WAIT – but much more user friendly</li>
</ul>
<h2>Renaming Database Objects</h2>
<ul>
<li>To      rename a table:</li>
<li>RENAME      oldname TO newname;</li>
</ul>
<ul>
<li>To rename      an index</li>
<li>ALTER      INDEX oldname RENAME TO newname;</li>
</ul>
<ul>
<li>In      Oracle 9.2 and above to rename a column</li>
<li>ALTER      TABLE t1 RENAME COLUMN oldname TO newname;</li>
</ul>
<ul>
<li>In      Oracle 9.2 and above to rename a constraint</li>
<li>ALTER      TABLE t1 RENAME CONSTRAINT oldname TO newname;</li>
</ul>
<ul>
<li>In Oracle      10.1 and above to rename a tablespace</li>
<li>ALTER      TABLESPACE  oldname RENAME TO newname;</li>
</ul>
<h2>Resumable Statements</h2>
<p>Oracle 9.0.1 and above long running operations encountering out of space errors can be resumed<br />
Resumable operations include</p>
<ul>
<li>Queries</li>
<li>DML      Statements</li>
<li>SQL*Loader      operations</li>
<li>Import      operations</li>
<li>DDL      statements</li>
</ul>
<p><strong>Out of space errors include</strong></p>
<ul>
<li>Tablespace      full</li>
<li>Maximum      number of extents reached for object</li>
<li>Tablespace      quota exceeded for a user</li>
</ul>
<p>When resumable space allocation is enabled, Operation suspends if an out of space error occurs. Details of the error are written to DBA_RESUMABLE</p>
<ul>
<li>DBA can      optionally be alerted</li>
<li>DBA can      either  fix the error</li>
<li>Operation      automatically resumes execution when error is fixed</li>
<li>If a      further error is detected, operation will suspend again</li>
</ul>
<p>eg:<br />
Resumable space allocation is enabled<br />
ALTER SESSION ENABLE RESUMABLE<br />
NAME ‘Batch Update’ TIMEOUT 3600;</p>
<p>INSERT INTO tab2<br />
SELECT * FROM tab1;</p>
<p>Out of space error occurs<br />
ORA-01653: unable to extend table US01.T2 by 210 in tablespace ‘TS99’</p>
<ul>
<li>Error is      written to alert log</li>
<li>DBA      queries DBA_RESUMABLE view for details of suspended operation</li>
<li>DBA fixes      error condition</li>
<li>Suspended      operation resumes automatically</li>
<li>Operation      completes successfully</li>
</ul>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/oracle-hanganalyze/" title="Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;">Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;</a></li><li><a href="http://orachat.com/oracle-dba-performance-queries/" title="Oracle DBA Silver Bullets &#8211; Performance Queries">Oracle DBA Silver Bullets &#8211; Performance Queries</a></li><li><a href="http://orachat.com/how-to-change-asm-sys-password-creating-sysasm-user-11g/" title="How to change ASM SYS Password and Creating SYSASM user 11g.">How to change ASM SYS Password and Creating SYSASM user 11g.</a></li><li><a href="http://orachat.com/performance-tuning-awr/" title="Oracle Performance Tuning &#8211; How to Use AWR ?">Oracle Performance Tuning &#8211; How to Use AWR ?</a></li><li><a href="http://orachat.com/tuning-indexes-rac-4/" title="Tuning indexes on RAC environments-4">Tuning indexes on RAC environments-4</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-8i-11g-hidden-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fusion DBA Certifications</title>
		<link>http://orachat.com/fusion-dba-certifications/</link>
		<comments>http://orachat.com/fusion-dba-certifications/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 15:32:55 +0000</pubDate>
		<dc:creator>Stewart</dc:creator>
				<category><![CDATA[Oracle Fusion Middleware 11g]]></category>
		<category><![CDATA[Oracle Weblogic 11g]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Fusion 11g]]></category>
		<category><![CDATA[Weblogic]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=594</guid>
		<description><![CDATA[Here are certifications to take up and get ready for the emerging market of Fusion DBA / SOA Admin / Fusion Architect 1Z0-108 : Oracle WebLogic Server 10g System Administration 1Z0-541 : Oracle WebCenter 11g Essentials 1Z0-545 : Identity Administration and Analytics 11g Essentials 1Z0-451 : Oracle SOA Foundation Practitioner 1Z0-543 : Oracle Application Integration [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Here are certifications to take up and get ready for the emerging market of Fusion DBA / SOA Admin / Fusion Architect</p>
<p style="text-align: left;">1Z0-108 : Oracle WebLogic Server 10g System Administration<br />
1Z0-541 : Oracle WebCenter 11g Essentials<br />
1Z0-545 : Identity Administration and Analytics 11g Essentials<br />
1Z0-451 : Oracle SOA Foundation Practitioner<br />
1Z0-543 : Oracle Application Integration Architecture 11g Essentials</p>
<p style="text-align: left;">I will be posting about Preparing for the Exam, Degree of Difficulty, Study Material and Sample Questions &#8211; watch out this place for update.</p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/oracle-fusion-applications/" title="Oracle Fusion Applications">Oracle Fusion Applications</a></li><li><a href="http://orachat.com/oracle-application-server-oracle-weblogic-server/" title="Oracle Application Server  Vs. Oracle WebLogic Server ">Oracle Application Server  Vs. Oracle WebLogic Server </a></li><li><a href="http://orachat.com/weblogic-jvm-diagonostics/" title="Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM">Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM</a></li><li><a href="http://orachat.com/fusion-middleware/" title="Fusion Middleware Overview &#8211; Become a Fusion DBA">Fusion Middleware Overview &#8211; Become a Fusion DBA</a></li><li><a href="http://orachat.com/oracle-application-integration-architecture-foundation-pack/" title="Oracle Application Integration Architecture (AIA) Foundation Pack">Oracle Application Integration Architecture (AIA) Foundation Pack</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/fusion-dba-certifications/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Real Application Testing Oracle RAT 11g</title>
		<link>http://orachat.com/real-application-testing/</link>
		<comments>http://orachat.com/real-application-testing/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 16:53:56 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle 11g]]></category>
		<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=562</guid>
		<description><![CDATA[What is the critical concern when we need to make a change in the production database ?  The biggest concern is the risk of the change &#8211; &#8220;mess up&#8221; something. Even the most minor changes can have an awful effect, eventually producing a visible impact. In Oracle Database 11g, We have a new feature called [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left; padding-left: 30px;">What is the critical concern when we need to make a change in the production database ?  The biggest concern is the risk of the change &#8211; &#8220;mess up&#8221; something. Even the most minor changes can have an awful effect, eventually producing a visible impact. In Oracle Database 11g, We have a new feature called <a href="http://download.oracle.com/docs/cd/B28359_01/server.111/e12253/rat_intro.htm#RATUG101" target="_blank">Real Application Testing</a>. Here are few experiments I performed with Real Application Testing, I used APIs instead of DB console/ EM &#8211; same can be performed with DB console also.</p>
<p style="text-align: left; padding-left: 30px;">Some bullets &#8211; before moving to the try-out -&gt;</p>
<h3 style="text-align: left; padding-left: 30px;">Oracle RAT &#8211; Real Application Testing</h3>
<ul style="text-align: left; padding-left: 30px;">
<li>Introduced in Oracle 11.1</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Licensable option</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Includes
<ul>
<li>Database Replay</li>
<li>SQL Performance Analyzer</li>
</ul>
</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Database Replay
<ul>
<li>Captures database workload on production system</li>
<li>Replays captured workload on test system</li>
<li>Optionally includes concurrency and timing characteristics</li>
<li>Generates reports and recommends changes</li>
</ul>
</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>SQL Performance Analyzer
<ul>
<li>Identifies performance divergence between workloads on source and target platforms</li>
<li>Generates tuning recommendations</li>
</ul>
</li>
</ul>
<p style="text-align: left;">Here are my try-out with Database Replay.</p>
<h3 style="text-align: left; padding-left: 30px;">Database Replay</h3>
<p style="text-align: left; padding-left: 30px;">Requires the following steps:</p>
<ul style="text-align: left; padding-left: 30px;">
<li>Capture workload into capture files</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Copy files to test system and pre-process them</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Replay files on test system</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Perform detailed analysis of workload capture and replay using reports generated by Database Replay</li>
</ul>
<p style="text-align: left; padding-left: 30px;"><strong>Potential scenarios where database replay may help:</strong></p>
<ul style="text-align: left; padding-left: 30px;">
<li>Testing operating system upgrades</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Testing database upgrades and migrations</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Testing parameter changes</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Evaluate migration from single-instance to RAC</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Testing storage changes</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Debugging</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Testing database manageability features</li>
</ul>
<h3 style="text-align: left; padding-left: 30px;">Capture Workload</h3>
<ul style="text-align: left; padding-left: 30px;">
<li>Create an operating system directory</li>
</ul>
<address style="padding-left: 90px; text-align: left;"> <strong><span style="color: #000000;">[oracle@fuwision]$ mkdir /home/oracle/rat/test1</span></strong></address>
<ul style="text-align: left; padding-left: 30px;">
<li>Create an Oracle directory</li>
</ul>
<address style="padding-left: 90px; text-align: left;"><strong>SQL&gt; CREATE DIRECTORY dir1 AS &#8216;/home/oracle/rat/test1&#8242;;</strong><br />
</address>
<ul style="text-align: left; padding-left: 30px;">
<li>Start the capture process</li>
</ul>
<address style="padding-left: 90px; text-align: left;"><strong>dbms_workload_capture.start_capture </strong></address>
<address style="padding-left: 90px; text-align: left;"><strong>(</strong></address>
<address style="padding-left: 120px; text-align: left;"><strong>name =&gt; &#8216;TEST4&#8242;,dir =&gt; &#8216;DIR4&#8242;</strong></address>
<address style="padding-left: 90px; text-align: left;"><strong>);</strong></address>
<ul style="text-align: left; padding-left: 30px;">
<li>Run the workload &#8211; Do some random works and transactions etc.</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>Finish the capture process</li>
</ul>
<address style="padding-left: 90px; text-align: left;"><strong> dbms_workload_capture.finish_capture;</strong></address>
<p style="text-align: left; padding-left: 30px;">Before a workload can be replayed, the application data state should be logically equivalent to that of the capture system at the start time of workload capture.If RMAN was used to back up the capture system, you can use RMAN DUPLICATE capabilities to create the test database.</p>
<address style="padding-left: 90px; text-align: left;"> </address>
<h3 style="text-align: left; padding-left: 30px;">Replay Preparation</h3>
<ul style="text-align: left; padding-left: 30px;">
<li>Copy the capture files to the target test database server</li>
</ul>
<ul style="text-align: left; padding-left: 30px;">
<li>On the target database &#8211; Pre process the captured workload</li>
</ul>
<address style="padding-left: 120px; text-align: left;"><strong>dbms_workload_replay.process_capture</strong></address>
<address style="padding-left: 120px; text-align: left;"><strong>(</strong></address>
<address style="padding-left: 150px; text-align: left;"><strong> capture_dir =&gt; &#8216;DIR1&#8242;)</strong></address>
<address style="padding-left: 120px; text-align: left;"><strong>);</strong></address>
<ul style="text-align: left; padding-left: 30px;">
<li>Initialize the replay</li>
</ul>
<address style="padding-left: 120px; text-align: left;"><strong> dbms_workload_replay.initialize_replay </strong></address>
<address style="padding-left: 120px; text-align: left;"><strong>(</strong></address>
<address style="padding-left: 150px; text-align: left;"><strong> replay_name =&gt; &#8216;REPLAY1&#8242;,</strong></address>
<address style="padding-left: 150px; text-align: left;"><strong> replay_dir =&gt; &#8216;DIR1&#8242;</strong></address>
<address style="padding-left: 120px; text-align: left;"><strong>);</strong></address>
<p style="padding-left: 90px; text-align: left;">
<ul style="text-align: left; padding-left: 30px;">
<li>Prepare the replay</li>
</ul>
<address style="padding-left: 120px; text-align: left;"><strong>dbms_workload_replay.prepare_replay</strong></address>
<address style="padding-left: 120px; text-align: left;"><strong>(</strong><strong> </strong></address>
<address style="padding-left: 150px; text-align: left;"><strong>synchronization =&gt; FALSE</strong></address>
<address style="padding-left: 120px; text-align: left;"><strong>);</strong></address>
<address style="text-align: left; padding-left: 30px;"> </address>
<h3 style="text-align: left; padding-left: 30px;">Workload Replay</h3>
<ul style="padding-left: 30px; text-align: left;">
<li>Copy the workload files to the client system. This could be the same target system or any other machine where 11g client is installed For eg:</li>
</ul>
<address style="padding-left: 120px; text-align: left;"><strong>/home/oracle/rat/test1</strong></address>
<ul style="padding-left: 30px; text-align: left;">
<li>On the client , run the workload client to calibrate the replay</li>
</ul>
<address style="padding-left: 120px; text-align: left;"><strong>$ wrc orachat/orachat@cluster1-tns mode=CALIBRATE<br />
\ replaydir=/home/oracle/rat/test1</strong></address>
<ul style="text-align: left;">
<li>The calibration process recommends the number of client processes required to perform the replay</li>
</ul>
<ul style="text-align: left;">
<li>Replay the workload</li>
</ul>
<address style="padding-left: 120px; text-align: left;"><strong>$ wrc orachat/orachat@cluster1-tns mode=REPLAY </strong></address>
<address style="padding-left: 120px; text-align: left;"><strong>\replaydir=/home/oracle/rat/test1 </strong></address>
<ul style="text-align: left;">
<li>wrc &#8211; is a multithreaded program located in the $ORACLE_HOME/bin directory, where each thread submits a workload from a captured session.</li>
</ul>
<ul style="text-align: left;">
<li>The client will not start to replay the workload until the replay has been started on the target database</li>
</ul>
<ul style="text-align: left;">
<li>On the target database, start the replay process</li>
</ul>
<ul style="text-align: left;">
<li>
<address><strong>SQL&gt;</strong><strong> exec dbms_workload_replay.start_replay;</strong></address>
</li>
</ul>
<ul style="text-align: left;">
<li>When the replay process completes on the client, run the replay report</li>
</ul>
<address style="padding-left: 120px; text-align: left;"><strong>SET SERVEROUTPUT ON TRIMSPOOL ON LONG 500000 LINESIZE 200<br />
VAR v_rep_rpt CLOB;<br />
DECLARE<br />
l_cap_id NUMBER;  l_rep_id NUMBER;<br />
BEGIN<br />
l_cap_id := dbms_workload_replay.get_replay_info (dir =&gt; &#8216;DIR4&#8242;);<br />
SELECT MAX (id) INTO l_rep_id FROM dba_workload_replays<br />
WHERE capture_id = l_cap_id;<br />
:v_rep_rpt := dbms_workload_replay.report<br />
(<br />
replay_id =&gt; l_rep_id,<br />
format =&gt; DBMS_WORKLOAD_CAPTURE.TYPE_TEXT<br />
);<br />
END;<br />
/<br />
PRINT :v_rep_rpt </strong></address>
<address style="padding-left: 120px; text-align: left;"> </address>
<address style="text-align: left;"><span style="text-decoration: underline;"><strong>Reference:</strong></span></address>
<address style="text-align: left;"><a href="http://download.oracle.com/docs/cd/B28359_01/server.111/e12253/rat_intro.htm#RATUG101" target="_blank">Real Application testing &#8211; Oracle 11g Library</a></address>
<address style="text-align: left;"> </address>
<address style="padding-left: 120px; text-align: left;"> </address>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/oracle-hanganalyze/" title="Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;">Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;</a></li><li><a href="http://orachat.com/oracle-11g-feature-amm-restart/" title="Oracle 11g New Feature Causes AMM to Restart">Oracle 11g New Feature Causes AMM to Restart</a></li><li><a href="http://orachat.com/oracle-dba-performance-queries/" title="Oracle DBA Silver Bullets &#8211; Performance Queries">Oracle DBA Silver Bullets &#8211; Performance Queries</a></li><li><a href="http://orachat.com/oracle-8i-11g-hidden-features/" title="Oracle 8i to 11g – hidden features.">Oracle 8i to 11g – hidden features.</a></li><li><a href="http://orachat.com/how-to-change-asm-sys-password-creating-sysasm-user-11g/" title="How to change ASM SYS Password and Creating SYSASM user 11g.">How to change ASM SYS Password and Creating SYSASM user 11g.</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/real-application-testing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Tips to Maximize performance and scalability of Oracle E-business Suite 11i</title>
		<link>http://orachat.com/performance-scalability-oracle-e-business-suite-11i/</link>
		<comments>http://orachat.com/performance-scalability-oracle-e-business-suite-11i/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 20:12:02 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle Apps 11i / R12]]></category>
		<category><![CDATA[Oracle Core Performance]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[performance tuning]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=553</guid>
		<description><![CDATA[Application Tier: Forms Forms performance issues may arise when dead connection persists on the server and consuming the server resources. Enable the forms dead client connection can eliminate the dead connection. FORMS60_TIMEOUT=10 (recommended value and value specified in minutes) Do $ ps –ef&#124; grep f60webmx and terminates f60webmx processes for dead clients. Enable Forms Abnormal [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>Application Tier: Forms</strong></h3>
<p>Forms performance issues may arise when dead connection persists on the server and consuming the server resources. Enable the forms dead client connection can eliminate the dead connection.</p>
<ul>
<li> FORMS60_TIMEOUT=10 (recommended value and value specified in minutes)</li>
</ul>
<ul>
<li>Do $ ps –ef| grep f60webmx and terminates f60webmx processes for dead clients.</li>
</ul>
<ul>
<li>Enable Forms Abnormal Termination Handler by enabling theFORMS60_CATCHTERM</li>
</ul>
<ul>
<li>Deploy with socket mode for internal user.</li>
</ul>
<ul>
<li>Form – Cancel Query Should not be enabled unless you are on Forms patch set 14 (Forms version 6.0.8.23.x or higher).Cancel Query increases middle-tier CPU as well as DB CPU. To disable the cancel query, Set the Profile “FND: Enable Cancel Query” to No.</li>
</ul>
<ul>
<li>Tune the Cancel query features like
<ul>
<li>Export FORM60_LOV_INITIAL=32000</li>
<li>Export FORM60_LOV_MINIMUM=5000</li>
<li>Export FORM60_LOV_WEIGHT=0</li>
<li>These variables must be set in $APPL_TOP/.env or ‘formservlet.ini’ file.</li>
</ul>
</li>
</ul>
<ul>
<li>Ensure users are optimally utilizing the professional Forms interfaces and for that avoid opening and closing forms across transactions</li>
</ul>
<ul>
<li>Avoid Blind queries</li>
</ul>
<ul>
<li>Trace Form.
<ul>
<li>Open the problematic, Go to Menu &gt; Help &gt; diagnostics &gt; Trace with waits and binds</li>
</ul>
</li>
</ul>
<h3>Application Tier &#8211; Reports</h3>
<ul>
<li>Ensure users provide selective parameters to the standard reports.</li>
</ul>
<ul>
<li>Review the report output:
<ul>
<li>Number of rows returned to the report.</li>
<li>Number of report pages.</li>
</ul>
</li>
</ul>
<ul>
<li>SQL Trace can be generated at request submission time (SRS form – Debug Options) or by setting the “Enable Trace” flag in the concurrent program definition form.</li>
</ul>
<h4>Reports Tracing:</h4>
<ul>
<li>If the SQL trace for the report does not account for the elapsed time of the request, then generate a reports trace by appending tracing parameters to the concurrent program command line.</li>
</ul>
<ul>
<li>The following are the trace options:
<ul>
<li>TRACE_ALL: log all possible trace information in the trace file. (DEFAULT)</li>
<li>TRACE_APP: log traces information on all the report objects in the trace file.</li>
<li>TRACE_BRK: list breakpoints in the trace file.</li>
<li>TRACE_ERR: list error messages and warnings in the trace file.</li>
<li>TRACE_PLS : log traces information on all the PL/SQL objects in the trace file.</li>
<li>TRACE_PRF : log performance statistics in the trace file.</li>
<li>TRACE_SQL : log traces information on all the SQL in the trace file.</li>
<li>TRACE_TMS: enter a timestamp for each entry in the trace file.</li>
</ul>
</li>
</ul>
<ul>
<li>Enabling Reports Trace (pre 11.5.10)
<ul>
<li>Sign-on to Apps with System Administrator responsibility</li>
<li>Navigate to Concurrent -&gt; Program -&gt; Define Query the concurrent program (report) which you want to trace. Locate the “Options” field and enter the following values : TRACEOPTS= TRACEFILE</li>
<li>Save the concurrent program</li>
<li>Run the report and a trace file will be generated.</li>
<li>Remember to clear the trace options after running the report.</li>
</ul>
</li>
</ul>
<ul>
<li>Enabling Reports Trace (11.5.10)
<ul>
<li>Use the Debug Options page at request submission.</li>
</ul>
</li>
</ul>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/oracle-library-cache-tuning-real-case-study/" title="Oracle library cache tuning &#8211; A Real Case Study.">Oracle library cache tuning &#8211; A Real Case Study.</a></li><li><a href="http://orachat.com/oracle-hanganalyze/" title="Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;">Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;</a></li><li><a href="http://orachat.com/oracle-dba-performance-queries/" title="Oracle DBA Silver Bullets &#8211; Performance Queries">Oracle DBA Silver Bullets &#8211; Performance Queries</a></li><li><a href="http://orachat.com/performance-tuning-awr/" title="Oracle Performance Tuning &#8211; How to Use AWR ?">Oracle Performance Tuning &#8211; How to Use AWR ?</a></li><li><a href="http://orachat.com/dbconsole/" title="DB Console issue after cloning 11.5.10.2 environment">DB Console issue after cloning 11.5.10.2 environment</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/performance-scalability-oracle-e-business-suite-11i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Fusion Applications</title>
		<link>http://orachat.com/oracle-fusion-applications/</link>
		<comments>http://orachat.com/oracle-fusion-applications/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 15:59:08 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle Fusion Applications]]></category>
		<category><![CDATA[Oracle Fusion Middleware 11g]]></category>
		<category><![CDATA[Fusion 11g]]></category>
		<category><![CDATA[Fusion Applications]]></category>
		<category><![CDATA[Weblogic]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=542</guid>
		<description><![CDATA[Oracle Announces Oracle Fusion Applications Oracle Applications Strategy Oracle Fusion Applications Oracle Fusion Applications Design Principles Oracle Fusion HCM Oracle Fusion CRM Oracle Fusion Financials Oracle Fusion SCM Oracle Fusion Project Portfolio Management Oracle Fusion Procurement Oracle Fusion GRC Oracle Images and Screenshots on Flickr Viewers of this post also viewed...Fusion DBA CertificationsOracle Application Server [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://www.oracle.com/us/corporate/press/173456" target="_blank">Oracle Announces Oracle Fusion Applications</a></h2>
<ul>
<li><a href="http://www.oracle.com/applications" target="_top">Oracle Applications Strategy</a></li>
<li><a href="http://www.oracle.com/fusion" target="_top">Oracle Fusion Applications</a></li>
<li><a href="http://www.oracle.com/us/products/applications/fusion/fusion-design-adoption-170887.html" target="_top">Oracle Fusion Applications Design Principles</a></li>
<li><a href="http://www.oracle.com/us/products/applications/fusion/fusion-hcm-170785.html" target="_top">Oracle Fusion HCM</a></li>
<li><a href="http://www.oracle.com/us/products/applications/fusion/fusion-crm-170775.html" target="_top">Oracle Fusion CRM</a></li>
<li><a href="http://www.oracle.com/us/products/applications/fusion/fusion-financials-170808.html" target="_top">Oracle Fusion Financials</a></li>
<li><a href="http://www.oracle.com/us/products/applications/fusion/fusion-doo-170798.html" target="_top">Oracle Fusion SCM</a></li>
<li><a href="http://www.oracle.com/us/products/applications/fusion/fusion-ppm-170791.html" target="_top">Oracle Fusion Project Portfolio Management</a></li>
<li><a href="http://www.oracle.com/us/products/applications/fusion/fusion-procurement-170892.html" target="_top">Oracle Fusion Procurement</a></li>
<li><a href="http://www.oracle.com/us/solutions/corporate-governance/index.html" target="_top">Oracle Fusion GRC</a></li>
<li><a href="http://www.flickr.com/photos/oracle_images/sets/72157624867161443/" target="_top">Oracle Images and Screenshots on Flickr</a></li>
</ul>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/fusion-dba-certifications/" title="Fusion DBA Certifications">Fusion DBA Certifications</a></li><li><a href="http://orachat.com/oracle-application-server-oracle-weblogic-server/" title="Oracle Application Server  Vs. Oracle WebLogic Server ">Oracle Application Server  Vs. Oracle WebLogic Server </a></li><li><a href="http://orachat.com/weblogic-jvm-diagonostics/" title="Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM">Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM</a></li><li><a href="http://orachat.com/fusion-middleware/" title="Fusion Middleware Overview &#8211; Become a Fusion DBA">Fusion Middleware Overview &#8211; Become a Fusion DBA</a></li><li><a href="http://orachat.com/oracle-application-integration-architecture-foundation-pack/" title="Oracle Application Integration Architecture (AIA) Foundation Pack">Oracle Application Integration Architecture (AIA) Foundation Pack</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-fusion-applications/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Oracle Application Server  Vs. Oracle WebLogic Server</title>
		<link>http://orachat.com/oracle-application-server-oracle-weblogic-server/</link>
		<comments>http://orachat.com/oracle-application-server-oracle-weblogic-server/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 12:42:29 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle Fusion Middleware 11g]]></category>
		<category><![CDATA[Oracle Weblogic 11g]]></category>
		<category><![CDATA[Fusion 11g]]></category>
		<category><![CDATA[Weblogic]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=525</guid>
		<description><![CDATA[Are you working with Oracle Application Server ? If you are familiar with the architecture of Oracle AS then a comparison study would be easy to grasp the Weblogic concepts. Here are some of my observations during my Weblogic study phase &#8211; This way it is easy to remember basics. Architecture Comparison In Oracle AS [...]]]></description>
			<content:encoded><![CDATA[<p>Are you working with Oracle Application Server ? If you are familiar with the architecture of Oracle AS then a comparison study would be easy to grasp the Weblogic concepts. Here are some of my observations during my Weblogic study phase &#8211; This way it is easy to remember basics.</p>
<h3>Architecture Comparison</h3>
<ul>
<li>In Oracle AS 10g R3 Application Server Control is active on only one instance (identified as Administration instance in a cluster) even though it manages other associated Oracle AS instances. Similarly, in Oracle WebLogic Server the Administrative Console is active only on one server instance (<a href="http://download.oracle.com/docs/cd/E14571_01/core.1111/e10103/terminology.htm#ASCON125" target="_blank">Administration Server</a>) but can manage other server instances (<a href="http://download.oracle.com/docs/cd/E14571_01/core.1111/e10103/terminology.htm#ASCON125" target="_blank">Managed Servers)</a> in a domain.</li>
</ul>
<ul>
<li>In Oracle AS 10g Release 2 there is a central configuration repository managed by Distributed Configuration Management (DCM). In Oracle WebLogic Server also there is a central configuration repository (<a href="http://download.oracle.com/docs/cd/E14571_01/web.1111/e13716/config_files.htm#DOMCF127" target="_blank">config.xml</a>).</li>
</ul>
<ul>
<li>In Oracle AS 10g Release 2, all the instances that shared the configuration repository constituted a topology element called Farm. The Farm is similar to a <a href="http://download.oracle.com/docs/cd/E14571_01/web.1111/e13716/understand_domains.htm#DOMCF115" target="_blank">Domain</a> in Oracle WebLogic Server.</li>
</ul>
<ul>
<li>The weblogic server is an instance of weblogic.server, which executes in a Java Virtual Machine (<a href="http://download.oracle.com/docs/cd/E14571_01/web.1111/e10240/jvm.htm#FSDEP741" target="_blank">JVM</a>). This is similar to an Oracle AS instance with just an OC4J container.</li>
</ul>
<ul>
<li>Managed server is an oracle weblogic server instance that hosts business applications, application components, web services and associated resources. It is similar to an Oracle AS 10gR3 without the management components.</li>
</ul>
<ul>
<li>Administration Server and OC4J Administration Instance &#8211; Administration Server stores the master copy of the domain configuration, including the configuration for all the Managed Servers in the domain. In this way, it functions as an Oracle AS instance that contains the file-based repository.</li>
</ul>
<ul>
<li>An Oracle WebLogic Server cluster consists of multiple Oracle WebLogic Server instances. This is similar to an OC4J cluster in Oracle AS. When you configure an Oracle AS Cluster (OC4J), you can use the Oracle HTTP Server as the front end. The load balancing directives are configured in the mod_oc4j configuration of the front-end Oracle HTTP Server. When you configure an Oracle WLS cluster, you should configure a mechanism such as an Apache or a non-clustered WLS instance to function as the front end for the cluster. You should also configure the load balancing within the cluster and not at the front end.</li>
</ul>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/09/Picture1.jpg"><img class="aligncenter size-full wp-image-527" title="Picture1" src="http://orachat.com/wp-content/uploads/2010/09/Picture1.jpg" alt="" width="505" height="297" /></a></p>
<h3>Administration and Installation</h3>
<ul>
<li>An Oracle Application Server has integrated installation and configuration where as Weblogic server separates installation of binaries using the installer and configuration of domains that contains the servers by using domain configuration wizard.</li>
</ul>
<ul>
<li>Admin Console: A web application with GUI that is used to manage and monitor an active domain. This is similar to the Oracle Application Server Control Console.</li>
</ul>
<ul>
<li>Weblogic Scripting Tool (<a href="http://download.oracle.com/docs/cd/E14571_01/core.1111/e10105/getstart.htm#ASADM10693" target="_blank">WLST</a>): A command line scripting interface that you use to manage and monitor an active or inactive weblogic server domain. This is similar to the OPMNCTL and DCMCTL tools but has more capabilities.</li>
</ul>
<h3>Oracle Weblogic Server 11g Evolution History</h3>
<p><a href="http://orachat.com/wp-content/uploads/2010/09/Picture2.jpg"><img class="size-full wp-image-530 alignleft" title="Picture2" src="http://orachat.com/wp-content/uploads/2010/09/Picture2.jpg" alt="" width="525" height="305" /></a></p>
<p><strong><br />
</strong></p>
<p><strong>Reference: <a href="http://download.oracle.com/docs/cd/E14571_01/wls.htm" target="_blank">Oracle Weblogic Library</a></strong></p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/fusion-dba-certifications/" title="Fusion DBA Certifications">Fusion DBA Certifications</a></li><li><a href="http://orachat.com/oracle-fusion-applications/" title="Oracle Fusion Applications">Oracle Fusion Applications</a></li><li><a href="http://orachat.com/weblogic-jvm-diagonostics/" title="Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM">Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM</a></li><li><a href="http://orachat.com/fusion-middleware/" title="Fusion Middleware Overview &#8211; Become a Fusion DBA">Fusion Middleware Overview &#8211; Become a Fusion DBA</a></li><li><a href="http://orachat.com/oracle-application-integration-architecture-foundation-pack/" title="Oracle Application Integration Architecture (AIA) Foundation Pack">Oracle Application Integration Architecture (AIA) Foundation Pack</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-application-server-oracle-weblogic-server/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How to change ASM SYS Password and Creating SYSASM user 11g.</title>
		<link>http://orachat.com/how-to-change-asm-sys-password-creating-sysasm-user-11g/</link>
		<comments>http://orachat.com/how-to-change-asm-sys-password-creating-sysasm-user-11g/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 13:54:13 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[Oracle RAC]]></category>
		<category><![CDATA[Oracle Storage]]></category>
		<category><![CDATA[10g]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=519</guid>
		<description><![CDATA[Things tried: SQL&#62; select INSTANCE_NAME from v$instance; INSTANCE_NAME &#8212;&#8212;&#8212;&#8212;&#8212;- +ASM SQL&#62; ALTER USER sys IDENTIFIED BY &#60;new_password&#62; REPLACE &#60;old_password&#62;; ALTER USER sys IDENTIFIED BY &#60;new_password&#62; REPLACE &#60;old_password&#62; * ERROR at line 1: ORA-01109: database not open We can not change the password for ASM databases via alter user command.Because passwords are managed through password file [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Things tried:</strong></p>
<p><span style="color: #ff0000;">SQL&gt; select INSTANCE_NAME from v$instance;</span></p>
<p><span style="color: #ff0000;">INSTANCE_NAME<br />
&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
+ASM</span></p>
<p><span style="color: #ff0000;">SQL&gt; ALTER USER sys IDENTIFIED BY &lt;new_password&gt; REPLACE &lt;old_password&gt;;<br />
ALTER USER sys IDENTIFIED BY &lt;new_password&gt; REPLACE &lt;old_password&gt;<br />
*<br />
ERROR at line 1:<br />
ORA-01109: database not open</span></p>
<p>We can not change the password for ASM databases via alter user command.Because <strong>passwords are managed through password file in ASM</strong>. The password should be the one provided when the password file was created,also REMOTE_LOGIN_PASSWORDFILE should be set to EXCLUSIVE on all instances.</p>
<p>So only way to change password would be recreating the password file using orapwd utility or create another ASM DBA user to manage ASM instance. Remember only one default user [sys] will be present in ASM instance. Now if DBA decided to create another user to manage ASM instance, here are my tries</p>
<p><span style="color: #ff0000;">SQL&gt; create user asmdba identified by test01;<br />
create user asmdba identified by test01<br />
*<br />
ERROR at line 1:<br />
ORA-15306: ASM password file update failed on at least one node</span></p>
<p>The <strong>ORA-15306 </strong>error demonstrates that the ASM password file is corrupt. Now remove all the ASM password file from each node. Create the ASM password file manually on the first node and copy to other nodes</p>
<p>Recreate the password file for the ASM instance as follows:</p>
<p>Unix:<br />
<em>orapwd file=&lt;ORACLE_HOME&gt;/dbs/PWD&lt;SID&gt; password=&lt;sys_password&gt; </em></p>
<p>Windows:<br />
<em>orapwd file=&lt;ORACLE_HOME&gt;/database/PWD&lt;SID&gt;.ora password=&lt;sys_password&gt;</em></p>
<p>Now sys password is reset, we are ready to use sys for ASM management. I decided to create another user ASMDBA as I tried above.</p>
<p><span style="color: #ff0000;">SQL&gt; create user ASMDBA identified by test01;</span></p>
<p><span style="color: #ff0000;">User created.</span></p>
<p><span style="color: #ff0000;">SQL&gt; grant SYSASM, SYSOPER to ASMDBA;</span></p>
<p><span style="color: #ff0000;">Grant succeeded.</span></p>
<p><span style="color: #ff0000;">SQL&gt; select * from v$pwfile_users;</span></p>
<p><span style="color: #ff0000;">USERNAME SYSDBA SYSOPE SYSASM<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212; &#8212;&#8212; &#8212;&#8212;<br />
SYS TRUE TRUE TRUE<br />
ASMDBA FALSE TRUE TRUE</span></p>
<p>Remember there is no DBA views you can access in ASM and only way to change password is through orapwd utility.</p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/tuning-indexes-rac-4/" title="Tuning indexes on RAC environments-4">Tuning indexes on RAC environments-4</a></li><li><a href="http://orachat.com/tuning-indexes-rac-3/" title="Tuning indexes on RAC environments-3">Tuning indexes on RAC environments-3</a></li><li><a href="http://orachat.com/oracle-support/" title="Oracle Support &#8211; Useful Metalink References">Oracle Support &#8211; Useful Metalink References</a></li><li><a href="http://orachat.com/oracle-hanganalyze/" title="Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;">Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;</a></li><li><a href="http://orachat.com/oracle-dba-performance-queries/" title="Oracle DBA Silver Bullets &#8211; Performance Queries">Oracle DBA Silver Bullets &#8211; Performance Queries</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/how-to-change-asm-sys-password-creating-sysasm-user-11g/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Certification &#8211; Oracle Database 11g New Features for Administrator 1Z0-050</title>
		<link>http://orachat.com/certification-11g-administrator/</link>
		<comments>http://orachat.com/certification-11g-administrator/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 14:24:56 +0000</pubDate>
		<dc:creator>Shankar</dc:creator>
				<category><![CDATA[Oracle Certifications]]></category>
		<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[ocp]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=514</guid>
		<description><![CDATA[Are you Oracle 10g OCP ? Then its time to upgrade for 11g OCP. Its very easy, focus on 11g new features &#8211; you can refer to Arup Nanda&#8217;s top new features white paper from Oracle web site also go through bellow questions, these are 100% sure questions repeated in all exams. QUESTION 1 Identify [...]]]></description>
			<content:encoded><![CDATA[<p><em>Are you Oracle 10g OCP ? Then its time to upgrade for 11g OCP. Its very easy, focus on 11g new features &#8211; you can refer to Arup Nanda&#8217;s top new features white paper from Oracle web site also go through bellow questions, these are <strong>100% sure questions</strong> repeated in all exams.</em></p>
<p><strong>QUESTION 1</strong><br />
Identify two situations in which you can use Data Recovery Advisor for recovery.<br />
(Choose two.)<br />
A. The user has dropped an important table that needs to be recovered.<br />
B. The database files are corrupted when the database is open.<br />
C. You are not able to start up the database instance because the required database files<br />
are missing.<br />
D. The archived log files are missing for which backup is not available.<br />
Answer: B,C</p>
<p><strong>QUESTION 2</strong><br />
In your database, the LDAP_DIRECTORY_SYSAUTH initialization parameter has been<br />
set to YES and the users who need to access the database as DBAs have been granted<br />
SYSDBA enterprise role in Oracle Internet Directory (OID). SSL and the password file<br />
have been configured. A user SCOTT with the SYSDBA privilege tries to connect to the<br />
database instance from a remote machine using the command:<br />
$ SQLPLUS scott/tiger@DB01 AS SYSDBA<br />
where DB01 is the net service name.<br />
Which authentication method would be used first?<br />
A. authentication by using the local OS of the database server<br />
B. authentication by using the Oracle Internet Directory<br />
C. authentication by password file<br />
D. authentication by using certificates over SSL<br />
Answer: C</p>
<p><strong>QUESTION 3</strong><br />
Examine the following values of the initialization parameters in the database having the<br />
SID ORCL:<br />
BACKGROUND_DUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/bdump<br />
USER_DUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/udump<br />
CORE_DUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/cdump<br />
DIAGNOSTIC_DEST=<br />
The environment variables have the following value:<br />
ORACLE_BASE=/u01/app/oracle<br />
ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1<br />
What is the location of the Automatic Diagnostic Repository (ADR) home?<br />
A. /u01/app/oracle/product/11.1.0/db_1<br />
B. /u01/app/oracle<br />
C. $ORACLE_HOME/bdump<br />
D. $ORACLE_HOME/log</p>
<p><strong>QUESTION 4</strong><br />
Observe the following PL/SQL block:<br />
BEGIN<br />
dbms_spm.configure(&#8216;SPACE_BUDGET_PERCENT&#8217;, 30);<br />
END;<br />
Which statement is correct regarding the above PL/SQL block?<br />
A. It automatically purges the SQL management objects when SMB occupies more than<br />
30% of the SYSAUX tablespace.<br />
B. It reserves 30% of the space in the SYSAUX tablespace for SQL Management Base<br />
(SMB).<br />
C. It reserves 30% of the space in the SYSTEM tablespace for SMB.<br />
D. It generates a weekly warning in the alert log file when SMB occupies more than 30%<br />
of the SYSAUX tablespace.<br />
Answer: D</p>
<p><strong>QUESTION 6</strong><br />
You are managing an Oracle Database 11g ASM instance having three disks in a disk<br />
group with ASM compatibility attribute set to 11.1.0 and redundancy set to high. One of<br />
the disks in the disk group becomes unavailable because of power failure. Which<br />
statements will be true in this scenario? (Choose all that apply.)<br />
A. The disk is immediately dropped from the disk group.<br />
B. The ASM tracks the extents that are modified during the outage.<br />
C. The ASM migrates the extents from the unavailable disk to the remaining disks.<br />
D. The disk automatically goes offline.<br />
Answer: B,D</p>
<p><strong>QUESTION 7</strong><br />
The SQL Tuning Advisor has been configured with default configurations in your<br />
database instance. Which recommendation is automatically implemented without the<br />
DBA&#8217;s intervention after the SQL Tuning Advisor is run as part of the AUTOTASK<br />
framework?<br />
A. statistics recommendations<br />
B. SQL profile recommendations<br />
C. restructuring of SQL recommendations<br />
D. index-related recommendations<br />
Answer: B</p>
<p><strong>QUESTION 9</strong><br />
Which statements are true regarding table compression? (Choose all that apply.)</p>
<p>A. It saves disk space and reduces memory usage.<br />
B. It saves disk space but has no effect on memory usage.<br />
C. It incurs extra CPU overhead during DML as well as direct loading operations.<br />
D. It incurs extra CPU overhead during DML but not direct loading operations.<br />
E. It requires uncompress operation during I/O.<br />
Answer: A,C</p>
<p><strong>QUESTION 10</strong><br />
You are working as a DBA on the decision support system. There is a business<br />
requirement to track and store all transactions for at least three years for a few tables in<br />
the database. Automatic undo management is enabled in the database. Which<br />
configuration should you use to accomplish this task?<br />
A. Enable Flashback Data Archive for the tables.<br />
B. Specify undo retention guarantee for the database.<br />
C. Enable supplemental logging for the database.<br />
D. Query V$UNDOSTAT to determine the amount of undo that will be generated and<br />
create an undo tablespace for that size.<br />
E. Create Flashback Data Archive on the tablespace on which the tables are stored.<br />
Answer: A</p>
<p><strong>QUESTION 11</strong><br />
USER_DATA is a nonencrypted tablespace that contains a set of tables with data. You<br />
want to convert all existing data in the USER_DATA tablespace and the new data into<br />
the encrypted format. Which methods would you use to achieve this? (Choose all that<br />
apply.)<br />
A. Encrypt the USER_DATA tablespace using the ALTER TABLESPACE statement so<br />
that all the data in the tablespace is automatically encrypted.<br />
B. Use Data Pump to transfer the existing data to a new encrypted tablespace.<br />
C. Use ALTER TABLE..MOVE to transfer the existing data to a new encrypted<br />
tablespace.<br />
D. Enable row movement for each table to be encrypted and then use ALTER<br />
TABLESPACE to encrypt the tablespace.<br />
E. Use CREATE TABLE AS SELECT to transfer the existing data to a new encrypted<br />
tablespace.<br />
Answer: B,C,E</p>
<p><strong>QUESTION 13</strong><br />
Which three are the valid statements in relation to SQL plan baselines? (Choose three.)<br />
A. The plans generated for every SQL statement are stored in the SQL plan baseline by<br />
default.<br />
B. The plans can be manually loaded to the SQL plan baseline.<br />
C. The plan baselines are stored temporarily in the memory as long as the database<br />
instance is running.<br />
D. The plans in the SQL plan baseline are verified and accepted plans.<br />
E. For the SQL plan baselines to be accessible to the optimizer, the SYSAUX tablespace<br />
must be online.<br />
Answer: B,D,E</p>
<p><strong>QUESTION 14</strong><br />
You plan to use SQL Performance Analyzer to analyze the SQL workload. You created a<br />
SQL Tuning Set as a part of the workload capturing. What information is captured as part<br />
of this process? (Choose all that apply.)<br />
A. the system change number (SCN)<br />
B. the execution plan<br />
C. the execution context<br />
D. the SQL text<br />
E. the execution frequency<br />
Answer: C,D,E</p>
<p><strong>QUESTION 15</strong><br />
Which two statements are true regarding the Automatic Diagnostic Repository (ADR) in<br />
Oracle Database 11g? (Choose two.)<br />
A. The BACKGROUND_DUMP_DEST initialization parameter overrides the<br />
DIAGNOSTIC_DEST initialization parameter for the location of the alert log file.<br />
B. A single ADR can support multiple ADR homes for different database instances.<br />
C. The alert files are stored in XML file format in the TRACE directory of each ADR<br />
home.<br />
D. If the environmental variable ORACLE_BASE is set, then DIAGNOSTIC_DEST is<br />
set to $ORACLE_BASE.<br />
Answer: B,D</p>
<p><strong>QUESTION 16</strong><br />
While deploying a new application module, the software vendor ships the application<br />
software along with appropriate SQL plan baselines for the new SQLs being introduced.<br />
Which two statements describe the consequences? (Choose two.)<br />
A. The optimizer does not generate new plans for the SQL statements for which the SQL<br />
plan baseline has been imported.<br />
B. The new SQL statements initially run with the plans that are known to produce good<br />
performance under standard test configuration.<br />
C. The plan baselines can be evolved over time to produce better performance.<br />
D. The newly generated plans are directly placed into the SQL plan baseline without<br />
being verified.<br />
Answer: B,C</p>
<p><strong>QUESTION 17</strong></p>
<p>Your system has been upgraded from Oracle Database 10g to Oracle Database 11g. You<br />
imported SQL Tuning Sets (STS) from the previous version. After changing the<br />
OPTIMIZER_FEATURE_ENABLE parameter to 10.2.0.4 and running the SQL<br />
Performance Analyzer, you observed performance regression for a few SQL statements.<br />
What would you do with these SQL statements?<br />
A. Set OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES to FALSE to prevent the<br />
plans from being loaded to the SQL plan baseline.<br />
B. Capture the plans from the previous version using STS and then load them into the<br />
stored outline.<br />
C. Set OPTIMIZER_USE_PLAN_BASELINES to FALSE to prevent the use of<br />
regressed plans.<br />
D. Capture the plans from the previous version using STS and then load them into SQL<br />
Management Base (SMB).</p>
<p><strong>QUESTION 20</strong><br />
Examine the following RMAN command:<br />
BACKUP DATABASE<br />
TAG TESTDB<br />
KEEP UNTIL &#8216;SYSDATE+1&#8242;<br />
RESTORE POINT TESTDB06;<br />
Which two statements are true regarding the backup taken by using the above RMAN<br />
command? (Choose two.)<br />
A. Archived redo logs are backed up only if the database is open during the backup.<br />
B. The backup is deleted after one day, regardless of the default retention policy settings.<br />
C. The backup becomes obsolete after one day, regardless of the default retention policy<br />
settings.<br />
D. Only data files and the control file are backed up.<br />
Answer: A,C</p>
<p><strong>QUESTION 21</strong><br />
Which statement describes the information returned by the<br />
DBMS_SPACE.SPACE_USAGE procedure for LOB space usage?<br />
A. It returns space usage of only SecureFile LOB chunks.<br />
B. It returns space usage of only BasicFile LOB chunks.<br />
C. It returns both BasicFile and SecureFile LOB space usage for both partitioned and<br />
nonpartitioned tables.<br />
D. It returns both BasicFile and SecureFile LOB space usage for only nonpartitioned<br />
tables.<br />
Answer: A</p>
<p><strong>QUESTION 22</strong><br />
Evaluate the following command:<br />
SQL&gt;ALTER SYSTEM SET db_securefile = &#8216;IGNORE&#8217;;<br />
What is the impact of this setting on the usage of SecureFiles?</p>
<p>A. It forces SecureFiles to be created even if the BASICFILE option is specified to create<br />
the LOB.<br />
B. It forces BasicFiles to be created even if the SECUREFILE option is specified to<br />
create the LOB.<br />
C. It does not allow the creation of SecureFiles and generates an error if the<br />
SECUREFILE option is specified to create the LOB.<br />
D. It ignores the SECUREFILE option only if a Manual Segment Space Management<br />
tablespace is used and creates a BasicFile.<br />
Answer: B</p>
<p><strong>QUESTION 23</strong><br />
Which two statements are true regarding the functionality of the remap command in<br />
ASMCMD? (Choose two.)<br />
A. It reads the blocks from a good copy of an ASM mirror and rewrites them to an<br />
alternate location on disk if the blocks on the original location cannot be read properly.<br />
B. It repairs blocks by always reading them from the mirror copy and writing them to the<br />
original location.<br />
C. It repairs blocks that have read disk I/O errors.<br />
D. It checks whether the alias metadata directory and the file directory are linked<br />
correctly.<br />
Answer: A,C</p>
<p><strong>QUESTION 24</strong><br />
Which tasks can be accomplished using the DBMS_LOB.SETOPTIONS procedure?<br />
A. only encryption and deduplication settings for only SecureFile CLOBs<br />
B. only encryption and compression settings for all SecureFile LOBs<br />
C. deduplication, encryption, and compression settings for all SecureFile LOBs<br />
D. deduplication, encryption, and compression settings only for SecureFile CLOBs<br />
Answer: C</p>
<p>QUESTION 25<br />
Which statement describes the effect of table redefinition on the triggers attached to the<br />
table?<br />
A. All triggers on the table are invalidated and are automatically revalidated with the next<br />
DML execution on the table.<br />
B. All triggers on the table are invalidated and must be manually recompiled before the<br />
next DML execution on the table.<br />
C. All triggers on the table remain valid.<br />
D. Only triggers that are affected by the changes to the structure of the table are invalidated and automatically revalidated with the next DML execution on the table.</p>
<p>Answer: A</p>
<p><strong>QUESTION 26</strong><br />
Evaluate the following code:<br />
SQL&gt;VARIABLE task_name VARCHAR2(255);<br />
SQL&gt;VARIABLE sql_stmt VARCHAR2(4000);<br />
SQL&gt;BEGIN<br />
:sql_stmt := &#8216;SELECT COUNT(*) FROM customers<br />
WHERE cust_state_province =&#8221;CA&#8221;&#8217;;<br />
:task_name := &#8216;MY_QUICKTUNE_TASK&#8217;;<br />
DBMS_ADVISOR.QUICK_TUNE(DBMS_ADVISOR.SQLACCESS_ADVISOR,<br />
:task_name, :sql_stmt);<br />
END;<br />
What is the outcome of this block of code?<br />
A. It creates a task and workload but does not execute the task.<br />
B. It produces an error because the SQL Tuning Set has not been created.<br />
C. It produces an error because a template has not been created.<br />
D. It creates a task and workload, and executes the task.<br />
Answer: D</p>
<p><strong>QUESTION 27</strong><br />
What is the advantage of setting the ASM-preferred mirror read for the Stretch cluster<br />
configuration?<br />
A. It improves performance by reading from a copy of an extent closest to the node.<br />
B. This feature enables much faster file opens.<br />
C. It improves performance as fewer extent pointers are needed in the shared pool.<br />
D. It improves resync operations.<br />
Answer: A</p>
<p><strong>QUESTION 28</strong><br />
You run the SQL Tuning Advisor (STA) to tune a SQL statement that is part of a fixed<br />
SQL plan baseline. The STA generates a SQL profile for the SQL statement, which<br />
recommends that you accept the profile. Which statement is true when you accept the<br />
suggested SQL profile?<br />
A. The tuned plan is not added to the SQL plan baseline.<br />
B. The tuned plan is added to the fixed SQL plan baseline as a fixed plan.<br />
C. The tuned plan is added to a new nonfixed SQL plan baseline as a nonfixed plan.<br />
D. The tuned plan is added to the fixed SQL plan baseline as a nonfixed plan.</p>
<p>Answer: D</p>
<p><strong>QUESTION 29</strong><br />
You plan to collect the Automatic Workload Repository (AWR) data every Monday<br />
morning for a month. You want Oracle Database to automatically create a baseline every<br />
Monday and remove the old baseline. What is the correct action to achieve this?<br />
A. Create and populate a SQL Tuning Set from the AWR on every Monday.<br />
B. Change the RETENTION setting for the AWR snapshots to 7 days on Monday.<br />
C. Create a repeating baseline template.<br />
D. Insert a finding directive for future ADDM tasks.<br />
Answer: C</p>
<p><strong>QUESTION 30</strong><br />
Which three statements are true regarding persistent lightweight jobs? (Choose three.)<br />
A. Persistent lightweight jobs modify several tables in the data dictionary to generate a<br />
lot of redo.<br />
B. The user cannot set privileges on persistent lightweight jobs.<br />
C. Persistent lightweight jobs are useful when users need to create a large number of jobs<br />
in a short time.<br />
D. Persistent lightweight jobs are useful when users need to create a small number of jobs<br />
that run infrequently.<br />
E. The use of a template is mandatory to create persistent lightweight jobs.<br />
Answer: B,C,E</p>
<p>Full set of questions available. Put your email address in comment section.</p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/oracle-hanganalyze/" title="Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;">Oracle Hanganalyze Performance Problems &#8220;sqlplus -prelim&#8221;</a></li><li><a href="http://orachat.com/oracle-11g-feature-amm-restart/" title="Oracle 11g New Feature Causes AMM to Restart">Oracle 11g New Feature Causes AMM to Restart</a></li><li><a href="http://orachat.com/oracle-dba-performance-queries/" title="Oracle DBA Silver Bullets &#8211; Performance Queries">Oracle DBA Silver Bullets &#8211; Performance Queries</a></li><li><a href="http://orachat.com/oracle-8i-11g-hidden-features/" title="Oracle 8i to 11g – hidden features.">Oracle 8i to 11g – hidden features.</a></li><li><a href="http://orachat.com/real-application-testing/" title="Real Application Testing Oracle RAT 11g">Real Application Testing Oracle RAT 11g</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/certification-11g-administrator/feed/</wfw:commentRss>
		<slash:comments>83</slash:comments>
		</item>
		<item>
		<title>Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &amp; JRockit JVM</title>
		<link>http://orachat.com/weblogic-jvm-diagonostics/</link>
		<comments>http://orachat.com/weblogic-jvm-diagonostics/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 16:04:32 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle Fusion Middleware 11g]]></category>
		<category><![CDATA[Oracle Weblogic 11g]]></category>
		<category><![CDATA[Fusion 11g]]></category>
		<category><![CDATA[Weblogic]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=500</guid>
		<description><![CDATA[Java Virtual Machine (JVM) : The Java Virtual Machine (JVM) is a virtual “execution engine” instance that executes the bytecodes in compiled Java class files. Java programs are compiled into a form called Java bytecodes. To the JVM, a stream of bytecodes is a sequence of instructions. Tuning the JVM to achieve optimal application performance [...]]]></description>
			<content:encoded><![CDATA[<h3>Java Virtual Machine (JVM) :</h3>
<p>The Java Virtual Machine (JVM) is a virtual “execution engine” instance that executes the bytecodes in compiled Java class files. Java programs are compiled into a form called Java bytecodes. To the JVM, a stream of bytecodes is a sequence of instructions.</p>
<p>Tuning the JVM to achieve optimal application performance is one of the most critical aspects of  WebLogic Server performance.</p>
<p><strong><span style="color: #ff0000;">Oracle recommends to use:</span></strong><br />
• Oracle JRockit JVM for production servers<br />
• Sun HotSpot JVM for development servers and for running other WLS utilities</p>
<p><strong><span style="color: #ff0000;">Setting Weblogic Server JVM Arguments:</span></strong></p>
<p>If we want to use different JVM after domain creation is possible by setting some WLS JVM arguments.</p>
<p>Start JVM with Custom JVM settings.</p>
<p><strong>export JAVA_VENDOR=&#8221;Oracle&#8221;<br />
export USER_MEM_ARGS=&#8221;-Xms512m –Xmx1g&#8221;<br />
./startWebLogic.sh</strong></p>
<ul>
<li> “Oracle” indicates that you are using the JRockit SDK. It is valid only on platforms that supportJRockit.</li>
<li> “Sun” indicates that you are using the Sun SDK.</li>
<li> “HP” and “IBM” indicate that you are using SDKs that Hewlett Packard or IBM have provided. These values are valid only on platforms that support HP or IBM SDKs.</li>
</ul>
<p><strong><span style="color: #ff0000;">Basic Sun JVM Arguments :</span></strong></p>
<ul>
<li>-XX:NewSize (default 2 MB): Default size of new generation (in bytes)</li>
<li> -XX:MaxNewSize: Maximum size of new generation (in bytes). Since 1.4, MaxNewSize is computed as a function of NewRatio.</li>
<li> -XX:NewRatio (default = 2): Ratio of new to old generation sizes</li>
<li> -XX:SurvivorRatio (default = 8): Ratio of Eden size to one survivor space size.</li>
<li> -XX:TargetSurvivorRatio (default = 50%): Desired percentage of survivor space used after scavenge</li>
<li> -XX:MaxPermSize: Size of the permanent generation</li>
</ul>
<p><strong><span style="color: #ff0000;">Basic JRockit JVM Arguments:</span></strong></p>
<ul>
<li>-Xms The initial amount of heap allocated to the JVM</li>
<li>-Xmx The maximum amount of heap that this JVM can allocate</li>
<li>-Xns Size of the nursery generation in the heap</li>
<li>-XgcPrio A priority level that helps to determine which GC algorithms the JVM will use at run time:</li>
<li> throughput: Maximize application throughput</li>
<li> pausetime: Minimize how long GC runs</li>
<li> deterministic: Consistent response times</li>
<li>-XXcompactRatio The percentage of the heap</li>
</ul>
<p><strong><span style="color: #ff0000;">Common JVM Issues:</span></strong></p>
<p><strong>Out of Memory :</strong> JVMs trigger java.lang.OutOfMemoryError when there is insufficient memory to perform some task . An out-of-memory condition can occur when there is free memory available in the heap but it is too fragmented and not contiguously located to store the object being allocated or moved (as part of a garbage collection cycle).</p>
<p><strong>Memory Leak :</strong> Are a common cause of out-of-memory errors, can occur because of  excessive caching.</p>
<p><strong>JVM Crash:</strong> We can identify and troubleshoot a JVM crash by the diagnostic files that are generated by the JVM. A snapshot is created<br />
that captures that state of the JVM process at the time of the error.</p>
<p>This binary file contains information about the entire JVM process and needs to be opened using debugging tools.<br />
The <a href="http://www.gnu.org/software/gdb/" target="_blank">gdb debugging tool</a>, popular on Linux, can extract useful information from core files. The Dr.Watson tool on Windows provides similar capabilities.</p>
<p>On the Sun JVM, the log file is named hs_err_pid&lt;pid&gt;.log, where &lt;pid&gt; is the process ID of the process. JRockit refers to this error log as a “dump” file, and is named jrockit.&lt;pid&gt;.dump.</p>
<p><span style="color: #ff0000;"><strong>Basic JVM Tools</strong></span><strong><span style="color: #ff0000;">:</span></strong><br />
– Stack Trace<br />
– Thread Dump<br />
– Verbose GC<br />
– Sun Profiler Agent<br />
– Sun Diagnostic Tools<br />
– JVisualVM</p>
<p><strong><span style="color: #ff0000;">Sun JVM Diagnostic Tools:</span></strong></p>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/08/Picture11.jpg"><img class="aligncenter size-full wp-image-506" title="Picture1" src="http://orachat.com/wp-content/uploads/2010/08/Picture11.jpg" alt="" width="469" height="219" /></a></p>
<p><span style="color: #ff0000;"><strong>References:</strong></span></p>
<p><a href="http://download.oracle.com/docs/cd/E14571_01/web.1111/e14529/system_administration.htm" target="_blank">Weblogic Server 11g System Administration</a></p>
<p><a href="https://support.oracle.com/CSP/ui/flash.html#tab=KBHome%28page=KBHome&amp;id=%28%29%29,%28page=KBNavigator&amp;id=%28bmDocDsrc=KB&amp;bmDocType=TROUBLESHOOTING&amp;bmDocID=1103610.1&amp;viewingMode=1143&amp;from=BOOKMARK&amp;bmDocTitle=Troubleshooting%20Whole%20Server%20Migration%20Setup%20for%20Fusion%20Middleware%2011g%29%29" target="_blank">Troubleshooting Whole Server Migration Setup for Fusion Middleware 11g [ID 1103610.1]</a> [Login to Oracle Support before clicking this link]</p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/fusion-dba-certifications/" title="Fusion DBA Certifications">Fusion DBA Certifications</a></li><li><a href="http://orachat.com/oracle-fusion-applications/" title="Oracle Fusion Applications">Oracle Fusion Applications</a></li><li><a href="http://orachat.com/oracle-application-server-oracle-weblogic-server/" title="Oracle Application Server  Vs. Oracle WebLogic Server ">Oracle Application Server  Vs. Oracle WebLogic Server </a></li><li><a href="http://orachat.com/fusion-middleware/" title="Fusion Middleware Overview &#8211; Become a Fusion DBA">Fusion Middleware Overview &#8211; Become a Fusion DBA</a></li><li><a href="http://orachat.com/oracle-application-integration-architecture-foundation-pack/" title="Oracle Application Integration Architecture (AIA) Foundation Pack">Oracle Application Integration Architecture (AIA) Foundation Pack</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/weblogic-jvm-diagonostics/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Fusion Middleware Overview &#8211; Become a Fusion DBA</title>
		<link>http://orachat.com/fusion-middleware/</link>
		<comments>http://orachat.com/fusion-middleware/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 11:23:14 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle Fusion Middleware 11g]]></category>
		<category><![CDATA[Fusion 11g]]></category>
		<category><![CDATA[Weblogic]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=454</guid>
		<description><![CDATA[Fusion Middleware &#8211; Portfolio of Oracle Middleware Products Here are the Fusion Middleware  family of products Application Server – Java EE 5.0  Containers SOA Suite – Integration and Process Management User Interaction – Web Center and Portal Identity Management Suite – Broad range of IM products Business Intelligence – Platform for BI and Data Warehousing [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;">Fusion Middleware &#8211; Portfolio of Oracle Middleware Products</h2>
<p style="text-align: left;"><strong><span style="color: #ff0000;">Here are the Fusion Middleware  family of products</span></strong></p>
<ul style="text-align: left;">
<li>Application Server – Java EE 5.0  Containers</li>
<li>SOA Suite – Integration and Process Management</li>
<li>User Interaction – Web Center and Portal</li>
<li>Identity Management Suite – Broad range of IM products</li>
<li style="text-align: left;">Business Intelligence – Platform for BI and Data Warehousing</li>
</ul>
<p style="text-align: left;"><strong>Now lets see each product / components of Fusion Middleware</strong></p>
<div style="text-align: left;">
<p><strong><span style="color: #ff0000;">1) Application Server </span></strong></p>
<ul>
<li>HTTP Server</li>
<li>OPMN</li>
<li>Java EE 5.0 &#8211; Servlets and EJB Containers</li>
</ul>
</div>
<div style="text-align: left;"><span style="color: #ff0000;"><strong>2) </strong><strong>SOA Suite </strong></span></div>
<div style="text-align: left;">
<ul>
<li>BPEL (Service Orchestration, Request – Reply)</li>
<li>Events (Publish-Subscribe, Alerts for Business Events)</li>
<li>ESB (Routing, Transformation, Adapters)</li>
<li>Services Security  (WS-Security, SAML, SSO)</li>
</ul>
</div>
<div style="text-align: left;"><strong><span style="color: #ff0000;">3) WebCenter</span></strong></div>
<div style="text-align: left;">
<ul>
<li>JSF (Java Server Faces)</li>
<li>Application Integration  (Portal and Portlets)</li>
<li>Content Integration (Document and Web Content Repo)</li>
<li>Community Integration (Wiki, blogs, RSS, Discussion, Shared Workspace, etc.)</li>
<li>Communication Integration (VoIP, Chat/SMS, Mail, Web Conference,etc.)</li>
</ul>
</div>
<div style="text-align: left;"><span style="color: #ff0000;"><strong>4) Identity Management</strong></span></div>
<div style="text-align: left;">
<ul>
<li>LDAP</li>
<li>Single Sign-On</li>
<li>Identity Federation (SAML, Liberty II)</li>
<li>Access and Identity Management</li>
<li>Virtual Directory</li>
</ul>
</div>
<div style="text-align: left;"><span style="color: #ff0000;"><strong>5) Business Intelligence</strong></span></div>
<div style="text-align: left;">
<ul>
<li>BI Platform (BI Server, Dashboard, Answers, Reporting &amp; Publishing. etc.)</li>
<li>BI Publisher (Formerly XML Publisher)</li>
</ul>
</div>
<div style="text-align: left;"><strong>Here are high level architecture diagram ( Images from oracle documentation) for each products in Fusion Middleware :</strong></div>
<div style="text-align: left;"><strong>.<br />
</strong></div>
<p style="text-align: left;"><span style="color: #ff0000;"><strong>Oracle AS– J2EE Architecture</strong></span></p>
<div style="text-align: left;">
<p><span style="color: #ff0000;"><strong><a href="http://orachat.com/wp-content/uploads/2010/08/Picture1.jpg"><img class="aligncenter size-full wp-image-459" title="Picture1" src="http://orachat.com/wp-content/uploads/2010/08/Picture1.jpg" alt="" width="460" height="334" /></a></strong></span></p>
<p><span style="color: #ff0000;"><strong><span style="color: #000000;">.</span><br />
</strong></span></p>
</div>
<div style="text-align: left;">
<p>.</p>
<p><strong><span style="color: #ff0000;">WebCenter Suite Architecture</span></strong></p>
</div>
<div style="text-align: left;">
<p><a href="http://orachat.com/wp-content/uploads/2010/08/Picture2.jpg"><img class="aligncenter size-full wp-image-463" title="Picture2" src="http://orachat.com/wp-content/uploads/2010/08/Picture2.jpg" alt="" width="519" height="273" /></a></p>
<p>.</p>
<p>.</p>
</div>
<p style="text-align: left;"><span style="color: #ff0000;"><strong>Oracle SOA Suite Architecture</strong></span></p>
<div style="text-align: left;">
<p><a href="http://orachat.com/wp-content/uploads/2010/08/Picture3.jpg"><img class="aligncenter size-full wp-image-467" title="Picture3" src="http://orachat.com/wp-content/uploads/2010/08/Picture3.jpg" alt="" width="482" height="234" /></a></p>
<p>.</p>
<p>.</p>
</div>
<div style="text-align: left;">
<p><span style="color: #ff0000;"><strong>Oracle Identity Management Suite Architecture</strong></span></p>
</div>
<div style="text-align: left;">
<p><span style="color: #ff0000;"><strong><a href="http://orachat.com/wp-content/uploads/2010/08/Picture4.jpg"><img class="aligncenter size-full wp-image-470" title="Picture4" src="http://orachat.com/wp-content/uploads/2010/08/Picture4.jpg" alt="" width="522" height="259" /></a><span style="color: #000000;">.</span></strong></span></p>
<p><span style="color: #000000;"><strong>.</strong></span></p>
<p><span style="color: #ff0000;"><strong>Oracle BI Suite Architecture</strong></span></p>
<p style="text-align: center;"><span style="color: #ff0000;"><strong><a href="http://orachat.com/wp-content/uploads/2010/08/Picture5.jpg"><img class="aligncenter size-full wp-image-481" title="Picture5" src="http://orachat.com/wp-content/uploads/2010/08/Picture5.jpg" alt="" width="485" height="269" /></a></strong></span></p>
<p style="text-align: left;">
<p style="text-align: left;"><span style="color: #000000;">Oracle Weblogic is the base stack for fusion middleware. Therefore knowledge of weblogic administration is must for  a Fusion DBA.</span></p>
<p style="text-align: left;"><span style="color: #000000;">Here are the Weblogic training series from </span><a href="http://onlineappsdba.com/index.php/2008/07/22/oracle-weblogic-installation-steps/" target="_blank"><strong>OnlineAppsDBA.com</strong></a></p>
<p style="text-align: left;"><strong>Oracle Documentation for Fusion Middleware :-</strong></p>
<p style="text-align: left;"><a href="http://download.oracle.com/docs/cd/E12839_01/core.1111/e10103/intro.htm#BABFFHGF" target="_blank">Fusion Middleware Concept Guide</a><span style="text-decoration: underline;"><br />
</span></p>
<p style="text-align: left;"><a href="http://download.oracle.com/docs/cd/E12839_01/core.1111/e10103/intro.htm#BABFFHGF" target="_blank">Fusion Middleware Administrators Guide</a></p>
<p style="text-align: left;"><a href="http://download.oracle.com/docs/cd/E12839_01/nav/portal_booklist.htm" target="_blank">Fusion Middleware 11g Library</a></p>
<p style="text-align: left;"><span style="text-decoration: underline;"><strong>Blogroll</strong></span></p>
<p style="text-align: left;"><a href="http://onlineappsdba.com/index.php/2009/07/28/oracle-fusion-middleware-11g-concepts-for-apps-dbas/" target="_blank">http://onlineappsdba.com/index.php/2009/07/28/oracle-fusion-middleware-11g-concepts-for-apps-dbas/</a></p>
<p style="text-align: left;">
<p style="text-align: left;"><strong><br />
</strong></p>
<p style="text-align: left;"><span style="color: #ff0000;"><strong><br />
</strong></span></p>
</div>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/fusion-dba-certifications/" title="Fusion DBA Certifications">Fusion DBA Certifications</a></li><li><a href="http://orachat.com/oracle-fusion-applications/" title="Oracle Fusion Applications">Oracle Fusion Applications</a></li><li><a href="http://orachat.com/oracle-application-server-oracle-weblogic-server/" title="Oracle Application Server  Vs. Oracle WebLogic Server ">Oracle Application Server  Vs. Oracle WebLogic Server </a></li><li><a href="http://orachat.com/weblogic-jvm-diagonostics/" title="Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM">Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM</a></li><li><a href="http://orachat.com/oracle-application-integration-architecture-foundation-pack/" title="Oracle Application Integration Architecture (AIA) Foundation Pack">Oracle Application Integration Architecture (AIA) Foundation Pack</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/fusion-middleware/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Oracle Application Integration Architecture (AIA) Foundation Pack</title>
		<link>http://orachat.com/oracle-application-integration-architecture-foundation-pack/</link>
		<comments>http://orachat.com/oracle-application-integration-architecture-foundation-pack/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 14:03:18 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle Fusion Middleware 11g]]></category>
		<category><![CDATA[Oracle SOA 11g]]></category>
		<category><![CDATA[Oracle Weblogic 11g]]></category>
		<category><![CDATA[Oralce AIA 11g]]></category>
		<category><![CDATA[Fusion 11g]]></category>
		<category><![CDATA[Oracle AIA]]></category>
		<category><![CDATA[Weblogic]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=438</guid>
		<description><![CDATA[Oracle Application Integration Architecture ( AIA) FP: Oracle Application Integration Architecture (AIA) Foundation Pack to integrate heterogeneous application portfolio to build cross-functional business processes. Foundation Pack will help to overcome the most common yet critical application integration challenges by providing you with a set of prebuilt enterprise objects and services, application integration management infrastructure and [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;">Oracle Application Integration Architecture ( AIA) FP:</h2>
<ul style="text-align: left;">
<li>Oracle Application Integration Architecture (AIA) Foundation Pack to integrate heterogeneous application portfolio to build cross-functional business processes.</li>
<li>Foundation Pack will help to overcome the most common yet critical application integration challenges by providing you with a set of prebuilt <strong>enterprise objects</strong> and <strong>services, </strong>application integration <strong>management infrastructure</strong> and a proven application <strong>integration methodology.</strong></li>
</ul>
<h3 style="text-align: left;">Foundation Pack Components:</h3>
<ul style="text-align: left;">
<li>Enterprise Business Objects (<strong>EBO</strong>)
<ul>
<li>Standard business data object definitions and reusable data components representing a business object such as Sales Order, Party, Item, Customer, etc</li>
<li>Delivered as XML Schema Definition (XSD) files.</li>
</ul>
</li>
<li>Enterprise Business Services (<strong>EBS</strong>)
<ul>
<li>Represent the application independent web service definition for performing a business task.</li>
<li>Define standard business level interfaces among the applications that want to participate in the integration.</li>
</ul>
</li>
<li>SOA Governance Tools
<ul>
<li>Set of tools to manage and govern your entire integration lifecycle.</li>
<li>Business Service Repository (<strong>BSR</strong>) : Catalog of the objects, messages, and services that compose the integration scenarios.</li>
<li>Composite Application Validation System (<strong>CAVS</strong>) : Enables to test integration web services without the deployed participating applications in place.</li>
<li>Composite Application Error Management and Resolution : Way to manage errors across technologies in integration layer.</li>
</ul>
</li>
<li>Reference Process Model and Architecture
<ul>
<li>Documented application independent business process models that act as a blueprint for mapping business processes.</li>
</ul>
</li>
</ul>
<h3 style="text-align: left;">AIA Version History and Tech Stack Implementation:</h3>
<ul style="text-align: left;">
<li>First stable version was 2.x series i.e 2.1, 2.2, 2.3, 2.4 and 2.5</li>
<li>AIA 2.x versions was deployed on SOA 10g  i.e OAS 10gR3 or Weblogic Server 9.2</li>
<li>Oracle service registry for SOA or Aqualogic service registry for Weblogic were mandatory components for 2.x series.</li>
</ul>
<h3 style="text-align: left;">AIA 11g R1 :</h3>
<ul style="text-align: left;">
<li>Latest AIA release for Fusion Middleware Stack.</li>
<li>Weblogic 10.3 is the core base stack for deployment.</li>
<li>Deployed on SOA 11g R1 (11.1.1.2.0) which intern can install only on Weblogic 10.3</li>
<li>Use of service registry is optional, where as this was mandatory for AIA 2.x release.</li>
<li>Powered by Fusion Middleware 11g</li>
</ul>
<p style="text-align: left;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture12.jpg"><img class="aligncenter size-full wp-image-439" title="Picture1" src="http://orachat.com/wp-content/uploads/2010/07/Picture12.jpg" alt="" width="477" height="346" /></a></p>
<h3 style="text-align: left;">How to Use AIA FP in Real Time World:</h3>
<ol style="text-align: left;">
<li>Pre-built Integrations
<ol>
<li>Direct Integrations (<strong>DI</strong>): Pre-built integrations that manage data flows and data synchronizations between Applications.</li>
<li>Process Integration Packs (<strong>PIPs)</strong>:  Pre-built composite business processes across enterprise Applications.</li>
</ol>
</li>
<li>Custom Integrations
<ol>
<li>New process definitions and Entrprise Business Flow ( EBF ) using FP&#8217;s EBO and EBS.</li>
<li>Non-Oracle application integrations with Oracle Enterprise [for those PIP is not available]</li>
</ol>
</li>
</ol>
<h3 style="text-align: left;">PIP &#8211; Process Integration Pack :</h3>
<p style="text-align: left;">Pre-built composite business process, business objects and services for specific application integration. Its a ready made pack that can use to resolve complex IT needs for integration.</p>
<p style="text-align: left;"><strong>Here are few commonly used PIP in the current industry:</strong></p>
<ul style="text-align: left;">
<li>Siebel CRM Integration Pack for Oracle Order Management</li>
<li>Agile Product Lifecycle Management Integration Pack for Oracle E-Business Suite</li>
<li>Oracle Design to Release Integration Pack for Agile Product Lifecycle Management and JD Edwards Enterprise</li>
<li>Agile Product Lifecycle Management Integration Pack for SAP</li>
<li>Oracle Customer Master Data Management Integration Option for Oracle E-Business Suite</li>
<li>Siebel CRM Integration Pack for i-flex FLEXCUBE Account Originations</li>
<li>Siebel Call Center Integration Pack for Oracle Adverse Event                    Reporting System</li>
<li>Oracle Application Integration Achitecture for Communications</li>
<li>Oracle Primavera to the Oracle E-Business Suite</li>
<li>Oracle CRM On Demand to Oracle&#8217;s JD Edwards World</li>
</ul>
<p style="text-align: left;">You can expect AIA FP installation and deployment, few common integration using PIP etc  in the coming posts&#8230;</p>
<p style="text-align: left;"><span style="text-decoration: underline;"><strong>Sources and References:</strong></span></p>
<ul style="text-align: left;">
<li><a href="http://www.oracle.com/technology/documentation/intarch.html" target="_blank">Oracle Application Integration              Architecture Documentation</a></li>
<li><a href="http://wiki.oracle.com/page/Application+Integration+Architecture">AIA Oracle WiKi</a></li>
<li><a href="https://support.oracle.com/CSP/main/article?cmd=show&amp;type=NOT&amp;doctype=REFERENCE&amp;id=1087355.1#REF_TEXT">Oracle Support Release and Installation Doc</a> [Login to Metalink Before Clicking on this Link]</li>
<li><a href="http://edelivery.oracle.com/" target="_blank">AIA Documentation from e-Delivery</a></li>
</ul>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/fusion-dba-certifications/" title="Fusion DBA Certifications">Fusion DBA Certifications</a></li><li><a href="http://orachat.com/oracle-fusion-applications/" title="Oracle Fusion Applications">Oracle Fusion Applications</a></li><li><a href="http://orachat.com/oracle-application-server-oracle-weblogic-server/" title="Oracle Application Server  Vs. Oracle WebLogic Server ">Oracle Application Server  Vs. Oracle WebLogic Server </a></li><li><a href="http://orachat.com/weblogic-jvm-diagonostics/" title="Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM">Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM</a></li><li><a href="http://orachat.com/fusion-middleware/" title="Fusion Middleware Overview &#8211; Become a Fusion DBA">Fusion Middleware Overview &#8211; Become a Fusion DBA</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-application-integration-architecture-foundation-pack/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle Primavera P6 Architecture</title>
		<link>http://orachat.com/oracle-primavera/</link>
		<comments>http://orachat.com/oracle-primavera/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 15:59:15 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle DBA]]></category>
		<category><![CDATA[Oracle Primavera P6]]></category>
		<category><![CDATA[Primavera P6]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=420</guid>
		<description><![CDATA[Primavera P6 Primavera provides a set of integrated components that meet the project management needs of different areas of an organization. It uses standard Windows interfaces, Web-enabled technology with application server and database support. Primavera P6 can be implemented on a standalone or client/server machine. For the client/server implementation requires the installation and configuration of [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;"><span style="text-decoration: underline;">Primavera P6</span></h2>
<p style="text-align: left;">Primavera provides a set of integrated components that meet the project management needs of different areas of an organization. It uses standard Windows interfaces, Web-enabled technology with application server and database support.</p>
<p style="text-align: left;">Primavera P6 can be implemented on a standalone or client/server machine. For the client/server implementation requires the installation and configuration of both client software and server-based components.</p>
<h2 style="text-align: left;"><span style="text-decoration: underline;">Primavera Server Component: </span></h2>
<p style="text-align: left;">Primavera may require the installation and configuration of the following server-based components:</p>
<ol style="text-align: left;">
<li>Database: Project data and project methodologies are each stored in separate central databases. These two databases should be maintained on a database server running Oracle.</li>
<li>Group Server: If your implementation of Primavera includes the Timesheets client module, you must install the Group Server. This component is a Windows 2003 service that runs on your Web server and allows clients to download Timesheets from that server using their Web browsers.</li>
</ol>
<h2 style="text-align: left;"><span style="text-decoration: underline;">Primavera Client Component:</span></h2>
<p style="text-align: left;">The Primavera P6 solution consists of the following client modules:</p>
<ol style="text-align: left;">
<li>Project Management: Project Management is a module that enables users to plan and control a large number of projects.</li>
<li>Methodology Management: Methodology Management is a module for authoring and storing methodologies, or project plan templates.</li>
<li>Timesheets: Timesheets is a Web-based inter-project communication and timekeeping system</li>
</ol>
<h2 style="text-align: left;"><span style="text-decoration: underline;">Additional Components:</span></h2>
<p style="text-align: left;">Primavera implementation may require the installation of one or more optional components. These additional components expand the functionality of the Primavera solution:</p>
<ol style="text-align: left;">
<li><strong>P6 Web Access: </strong> P6 Web Access provides browser-based access to project, portfolio, and resource data across the enterprise. Every P6 Web Access user can customize dashboards to create an individualized and focused view of the specific projects and categories of project data that are most relevant to their role in managing projects and resources.</li>
<li><strong>(Distributed) Job Service: </strong>The Job Service is a Windows 2003/ 2008 service that runs defined jobs on project data at preconfigured intervals. Users create jobs in the Project Management module. The job details are stored in the central project management database. The Job Service periodically reads the database and performs jobs as directed. This service must run on a server that has a constant connection to the database server.</li>
<li><strong>ProjectLink: </strong> ProjectLink is a plug-in that enables Microsoft Project (MSP) users to work in the MSP environment while being connected to Primavera&#8217;s enterprise features.</li>
<li><strong>SDK (Software Development Kit):</strong> The SDK enables you to integrate the data in the project management database with external databases and applications. It provides access to the schema and to business logic. The SDK supports the Open Database Connectivity (ODBC) standard and ODBC-compliant interfaces, such as OLE DB, for connecting to the project management database. The SDK may be installed on any computer that needs to integrate with the Primavera database.</li>
</ol>
<h2 style="text-align: left;"><span style="text-decoration: underline;">P6 Configuration and Component requirements</span></h2>
<p style="text-align: left;">The following table lists each client component and the corresponding server-based components that it requires.</p>
<p style="text-align: left;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture11.jpg"><img class="aligncenter size-full wp-image-421" title="Picture1" src="http://orachat.com/wp-content/uploads/2010/07/Picture11.jpg" alt="" width="508" height="197" /></a></p>
<p style="text-align: left;"><strong>Note:-</strong></p>
<ul style="text-align: left;">
<li>If using Oracle as the RDBMS, these modules require the Oracle client software to be installed on the client computer.</li>
<li>The Job Service is an optional component for the Project Management module.</li>
<li>The Group Server is an optional component for P6 Web Access; it is required if you are using the Timesheets functionality of P6 Web Access.</li>
<li>P6 Web Access is an optional component for Timesheets and is only required if resource timesheets must be reviewed and approved.</li>
<li>The Content and Workflows Repositories are optional components of P6 Web Access. They can serve as aids in document management and project request processes</li>
</ul>
<h2 style="text-align: left;"><span style="text-decoration: underline;">Primavera P6 Standard Architecture:</span></h2>
<p style="text-align: left;"><span style="text-decoration: underline;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture21.jpg"><img class="aligncenter size-full wp-image-422" title="Picture2" src="http://orachat.com/wp-content/uploads/2010/07/Picture21.jpg" alt="" width="494" height="361" /></a></span></p>
<h2 style="text-align: left;"><span style="text-decoration: underline;">Proposed P6 Configuration :</span></h2>
<p style="text-align: left;"><span style="text-decoration: underline;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture31.jpg"><img class="aligncenter size-full wp-image-424" title="Picture3" src="http://orachat.com/wp-content/uploads/2010/07/Picture31.jpg" alt="" width="496" height="182" /></a></span></p>
<p style="text-align: left;"><span style="text-decoration: underline;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture41.jpg"><img class="aligncenter size-full wp-image-425" title="Picture4" src="http://orachat.com/wp-content/uploads/2010/07/Picture41.jpg" alt="" width="494" height="85" /></a></span></p>
<p style="text-align: left;">
<p style="text-align: left;"><span style="text-decoration: underline;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture51.jpg"><img class="aligncenter size-full wp-image-426" title="Picture5" src="http://orachat.com/wp-content/uploads/2010/07/Picture51.jpg" alt="" width="494" height="98" /></a></span></p>
<p style="text-align: left;">
<p style="text-align: left;"><strong>Practical Product Limits:</strong><br />
The following table summarizes various practical limits. Exceeding these limits can result in performance issues.</p>
<p style="text-align: left;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture61.jpg"><img class="aligncenter size-full wp-image-423" title="Picture6" src="http://orachat.com/wp-content/uploads/2010/07/Picture61.jpg" alt="" width="494" height="246" /></a></p>
<p style="text-align: left;">
<h3 style="text-align: left;">Contact us at <span style="color: #ff0000;">dba@orachat.com</span> for your Primavera P6 consulting</h3>
<p>Copyright © <a href="../">OraChat – Oracle DBAs</a> | <a href="http://www.fuwision.com/">Powered By Fuwision Consulting</a></p>
<p>www.orachat.com</p>
<p style="text-align: left;">
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li>No Related Post</li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/oracle-primavera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Oracle WebLogic Server 11g</title>
		<link>http://orachat.com/installing-oracle-weblogic-server-103/</link>
		<comments>http://orachat.com/installing-oracle-weblogic-server-103/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 14:30:13 +0000</pubDate>
		<dc:creator>Rupesh</dc:creator>
				<category><![CDATA[Oracle Fusion Middleware 11g]]></category>
		<category><![CDATA[Oracle Weblogic 11g]]></category>
		<category><![CDATA[Fusion 11g]]></category>
		<category><![CDATA[Weblogic]]></category>

		<guid isPermaLink="false">http://orachat.com/?p=401</guid>
		<description><![CDATA[WebLogic Server 11gR1 (10.3.0) Oracle WebLogic Server forms part of Oracle Fusion Middleware portfolio and supports Oracle, DB2, Microsoft SQL Server, MySQL Enterprise and other JDBC-compliant databases. Oracle WebLogic Platform also includes: Portal which includes Commerce Server and Personalization Server WebLogic Integration WebLogic Workshop, an Eclipse IDE for Java, SOA and Rich Internet applications JRockit, [...]]]></description>
			<content:encoded><![CDATA[<h2>WebLogic Server 11gR1 (10.3.0)<em></em></h2>
<p>Oracle WebLogic Server forms part of Oracle Fusion Middleware portfolio and supports Oracle, DB2, Microsoft SQL Server, MySQL Enterprise and other JDBC-compliant databases. Oracle WebLogic Platform also includes:</p>
<ul>
<li> Portal which includes Commerce Server and Personalization Server</li>
<li> WebLogic Integration</li>
<li> WebLogic Workshop, an Eclipse IDE for Java, SOA and Rich Internet applications</li>
<li> JRockit, a custom JVM.</li>
</ul>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture1.jpg"><img class="aligncenter size-full wp-image-406" title="Picture1" src="http://orachat.com/wp-content/uploads/2010/07/Picture1.jpg" alt="" width="477" height="344" /></a></p>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture2.jpg"><img class="aligncenter size-full wp-image-407" title="Picture2" src="http://orachat.com/wp-content/uploads/2010/07/Picture2.jpg" alt="" width="479" height="344" /></a></p>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture3.jpg"><img class="aligncenter size-full wp-image-408" title="Picture3" src="http://orachat.com/wp-content/uploads/2010/07/Picture3.jpg" alt="" width="481" height="344" /></a></p>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture4.jpg"><img class="aligncenter size-full wp-image-409" title="Picture4" src="http://orachat.com/wp-content/uploads/2010/07/Picture4.jpg" alt="" width="481" height="344" /></a></p>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture5.jpg"><img class="aligncenter size-full wp-image-410" title="Picture5" src="http://orachat.com/wp-content/uploads/2010/07/Picture5.jpg" alt="" width="479" height="344" /></a></p>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture6.jpg"><img class="aligncenter size-full wp-image-411" title="Picture6" src="http://orachat.com/wp-content/uploads/2010/07/Picture6.jpg" alt="" width="479" height="344" /></a></p>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture7.jpg"><img class="aligncenter size-full wp-image-412" title="Picture7" src="http://orachat.com/wp-content/uploads/2010/07/Picture7.jpg" alt="" width="480" height="344" /></a></p>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture8.jpg"><img class="aligncenter size-full wp-image-413" title="Picture8" src="http://orachat.com/wp-content/uploads/2010/07/Picture8.jpg" alt="" width="479" height="344" /></a></p>
<p style="text-align: center;"><a href="http://orachat.com/wp-content/uploads/2010/07/Picture9.jpg"><img class="aligncenter size-full wp-image-405" title="Picture9" src="http://orachat.com/wp-content/uploads/2010/07/Picture9.jpg" alt="" width="554" height="374" /></a></p>
<h2  class="related_post_title">Viewers of this post also viewed...</h2><ul class="related_post"><li><a href="http://orachat.com/fusion-dba-certifications/" title="Fusion DBA Certifications">Fusion DBA Certifications</a></li><li><a href="http://orachat.com/oracle-fusion-applications/" title="Oracle Fusion Applications">Oracle Fusion Applications</a></li><li><a href="http://orachat.com/oracle-application-server-oracle-weblogic-server/" title="Oracle Application Server  Vs. Oracle WebLogic Server ">Oracle Application Server  Vs. Oracle WebLogic Server </a></li><li><a href="http://orachat.com/weblogic-jvm-diagonostics/" title="Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM">Oracle WebLogic Server 11g  &#8211; JVM Diagonostics &#8211; Sun JVM &#038; JRockit JVM</a></li><li><a href="http://orachat.com/fusion-middleware/" title="Fusion Middleware Overview &#8211; Become a Fusion DBA">Fusion Middleware Overview &#8211; Become a Fusion DBA</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orachat.com/installing-oracle-weblogic-server-103/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

