Sunday, 8 February 2015

Scripts to check Temp Tablespace

Script to Check Temp Space:

SELECT a.tablespace_name,ROUND((c.total_blocks*b.block_size)/1024/1024/1024,2)
"Total Size [GB]",ROUND((a.used_blocks*b.block_size)/1024/1024/1024,2) "Used_size[GB]",
ROUND(((c.total_blocks-a.used_blocks)*b.block_size)/1024/1024/1024,2) "Free_size[GB]",
ROUND((a.max_blocks*b.block_size)/1024/1024/1024,2) "Max_Size_Ever_Used[GB]",            
ROUND((a.max_used_blocks*b.block_size)/1024/1024/1024,2) "MaxSize_ever_Used_by_Sorts[GB]" ,
ROUND((a.used_blocks/c.total_blocks)*100,2) "Used Percentage"
FROM V$sort_segment a,dba_tablespaces b,(SELECT tablespace_name,SUM(blocks)
total_blocks FROM dba_temp_files GROUP by tablespace_name) c
WHERE a.tablespace_name=b.tablespace_name AND a.tablespace_name=c.tablespace_name;

========================================================================
Script to check  top 10 consuming process :

select * from
(SELECT d.tablespace_name,a.sid,a.serial#,a.program,a.module,a.action,a.username "DB Username",a.osuser,ROUND((b.blocks*d.block_size)/1024/1024,2) "Used MB",c.sql_text
FROM v$session a, v$tempseg_usage b, v$sqlarea c,dba_tablespaces d
WHERE a.saddr = b.session_addr AND c.address= a.sql_address AND c.hash_value = a.sql_hash_value AND d.tablespace_name=b.tablespace ORDER BY b.tablespace, b.blocks DESC)
where rownum <=10

========================================================================
Script to check TEMP USAGE :


col name for a20
SELECT d.status "Status", d.tablespace_name "Name", d.contents "Type", d.extent_management
"ExtManag",
TO_CHAR(NVL(a.bytes / 1024 / 1024, 0),'99,999,990.900') "Size (M)", TO_CHAR(NVL(t.bytes,
0)/1024/1024,'99999,999.999') ||'/'||TO_CHAR(NVL(a.bytes/1024/1024, 0),'99999,999.999') "Used (M)",
TO_CHAR(NVL(t.bytes / a.bytes * 100, 0), '990.00') "Used %"
FROM sys.dba_tablespaces d, (select tablespace_name, sum(bytes) bytes from dba_temp_files group by
tablespace_name) a,
(select tablespace_name, sum(bytes_cached) bytes from
v$temp_extent_pool group by tablespace_name) t
WHERE d.tablespace_name = a.tablespace_name(+) AND d.tablespace_name = t.tablespace_name(+)
AND d.extent_management like 'LOCAL' AND d.contents like 'TEMPORARY';

========================================================================
Script to Check Percentage Usage of Temp Tablespace:

select (s.tot_used_blocks/f.total_blocks)*100 as "percent used"
from (select sum(used_blocks) tot_used_blocks
from v$sort_segment where tablespace_name='TEMP') s,
(select sum(blocks) total_blocks
from dba_temp_files where tablespace_name='TEMP') f;

========================================================================
Script to Check Sort Segment Usage by a particular User:

SELECT s.username,s.sid,s.serial#,u.tablespace, u.contents, u.extents, u.blocks
FROM v$session s, v$sort_usage u
WHERE s.saddr=u.session_addr
order by u.blocks desc;

========================================================================
Script to Check Total Free space in Temp Tablespace :

select tablespace_name , (free_blocks*8)/1024/1024  FreeSpaceInGB,
(used_blocks*8)/1024/1024  UsedSpaceInGB,
(total_blocks*8)/1024/1024  TotalSpaceInGB
from v$sort_segment where tablespace_name like '%TEMP%'

========================================================================
Get 10 sessions with largest temp usage :

cursor bigtemp_sids is
select * from (
select s.sid,
s.status,
s.sql_hash_value sesshash,
u.SQLHASH sorthash,
s.username,
u.tablespace,
sum(u.blocks*p.value/1024/1024) mbused ,
sum(u.extents) noexts,
nvl(s.module,s.program) proginfo,
floor(last_call_et/3600)||':'||
floor(mod(last_call_et,3600)/60)||':'||
mod(mod(last_call_et,3600),60) lastcallet
from v$sort_usage u,
v$session s,
v$parameter p
where u.session_addr = s.saddr
and p.name = 'db_block_size'
group by s.sid,s.status,s.sql_hash_value,u.sqlhash,s.username,u.tablespace,
nvl(s.module,s.program),
floor(last_call_et/3600)||':'||
floor(mod(last_call_et,3600)/60)||':'||
mod(mod(last_call_et,3600),60)
order by 7 desc,3)
where rownum < 11;

========================================================================

Identifying WHO is currently using TEMP Segments :

SELECT sysdate,a.username, a.sid, a.serial#, a.osuser, (b.blocks*d.block_size)/1048576 MB_used, c.sql_text
FROM v$session a, v$tempseg_usage b, v$sqlarea c,
     (select block_size from dba_tablespaces where tablespace_name='TEMP') d
    WHERE b.tablespace = 'TEMP'
    and a.saddr = b.session_addr
    AND c.address= a.sql_address
    AND c.hash_value = a.sql_hash_value
    AND (b.blocks*d.block_size)/1048576 > 1024
    ORDER BY b.tablespace, 6 desc;


Thursday, 5 February 2015

Metalink Note ids for Oracle Core and Apps DBA

META-LINK NOTE IDs:
RDBMS and E-Business Suite Installation and Configuration
118218.1 11i. Installing a Digital Cerificate on both the Server and Client.
252217.1 Requirements for Installing Oracle 9iR2 on RHEL3
146469.1 Installation & Configuration of Oracle Login server & Portal3i
152775.1 XML gateway installation
165700.1 Multiple Jserv configuration
207159.1 Documentation of 9iAS
210514.1 Express Server WebIV Note numbers
170931.1 Notes on Motif troubleshooting
177610.1 Oracle Forms in Applications FAQ
258021.1 How to monitor the progress of a materialized view refresh (MVIEW)
330250.1 Tips & Tricks To Make Apache Work With Jserv
139684.1 Oracle Applications Current Patchset Comparison Utility – patchsets.sh
236469.1 Using Distributed AD in Applications Release 11.5.
96630.1 Cash Management Overview
233428.1 Sharing the Application Tier File System in Oracle Applications 11i
243880.1 Shared APPL_TOP FAQ
330250.1 Tips & Tricks To Make Apache Work With Jserv
241370.1 Concurrent Manager Setup and Configuration Requirements in an 11i RAC Environment
209721.1 How to Change the Port Number on one Machine, When we Use Multiple Collaboration Suite Tiers
177377.1 How to change passwords in Portal (Database and lightweight user passwords)
304748.1 Internal: E-Business Suite 11i with Database FAQ
166213.1 SPFILE internals ** INTERNAL ONLY **
216208.1 Oracle9i Application Server (9iAS) with Oracle E-Business Suite Release
11i Troubleshooting186981.1 Oracle Application Server with Oracle E-Business Suite Release 11i
Physical Standby
Note:180031.1 Creating a Data Guard physical standby
Note:214071.1 Creating a Data Guard physical standby with Data Guard Manager
Note:232649.1 Configuring gap resolution
Note:232240.1 Performing a switchover
Note:227196.1 Performing a failover
Note:187242.1 Applying Patchsets with Physical Standby in Place
Logical Standby
Note:186150.1 Creating a logical standby
Note:214071.1 Creating a logical standby with Data Guard Manager
Note:232240.1 Performing a switchover
Note:227196.1 Performing a failover
Note:233261.1 Tuning Log Apply Services
Note:215020.1 Troubleshooting Logical Standbys
Note:210989.1 Applying Patchsets with Logical Standby in Place
Note:233519.1 Known Issues with Logical Standby
Dataguard General Information
Note:205637.1 Configuring Transparent Application Failover with Data Guard
Note:233509.1 Data Guard Frequently Asked Questions
Note:225633.1 Using SSH with 9i Data Guard
Note:233425.1 Top Data Guard Bugs
Note:219344.1 Usage, Benefits and Limitations of Standby RedoLogs
Note:201669.1 Setup and maintenance of Data Guard Broker using DGMGRL
Note:203326.1 Data Guard 9i Log Transportation on RAC
Note:239100.1 Data Guard Protection Modes Explained
Dataguard Configuration Best Practices
Note:240874.1 Primary Site and Network Configuration Best Practices
Note:240875.1 9i Media Recovery Best Practices
Frequently Asked Questions
68993.1 Concurrent Managers on NT
1013526.102 Changing and Resetting Release 11 Applications Passwords
130608.1 ADPATCH BASICS
74924.1 ADI (Applications Desktop Integrator) Installation
61552.1 DIAGNOSING DATABASE HANGING ISSUES
114226.1 How to Set Up Apache and JSERV w/ Oracle XSQL, JSP, and Developer
146469.1 Installing and Configuring Oracle Login Server and Oracle Portal 3i with Oracle Applications 11i
146468.1 Installing Oracle9i Application Server 1.0.2.2.2 with Oracle Applications 11i
62463.1 Detailed Guide on How the Intelligent Agent Works
104452.1 Troubleshooting (Concurrent Manager Unix specific)
122662.1 How to change the hostname or domainname of your portal
231286.1 Configuring the Oracle Workflow 2.6 Java-based Notification Mailer with Oracle Applications 11i
230688.1 Basic ApacheJServ Troubleshooting with IsItWorking.class
204015.1 Export/Import Process for Oracle Applications Release 11i Database Instances Using Oracle8i EE
158818.1 Migrating the Workflow Mailer to the APPLMGR Account
185431.1 Troubleshooting Oracle Applications Manager OAM 2.0 for 11i
177089.1 OAM11i Standalone Mode Setup and Configuration
172174.1 WF 2.6: Oracle Workflow Notification Mailer Architecture in Release 11i
166021.1 Oracle Applications Manager 11i – Pre-requisite Patches
166115.1 Oracle Applications Manager 11i integrated with Oracle Applications 11i
165041.1 Generic Service Management Functionality
204090.1 Generic Service Management Configuration using Applications Context Files
139863.1 Configuring and Troubleshooting the Self Service Framework with Oracle Applications (latest version)
187735.1 Workflow FAQ – All Versions
166830.1 Setting up Real Application Cluster (RAC) environment on Linux – Single node
158868.1 Step by Step, Oracle 9iAS Installation Process
123243.1 Scheduling Web Reports Via Oracle Reports Server CGI
165195.1 Using AutoConfig to Manage System Configurations with Oracle Applications 11i
RMAN and Backup & Restore
60545.1 How to Extract Controlfiles, Datafiles, and Archived Logs from RMAN Backupsets
10gR2 Setup Installation, ASM,CRS, RAC , Troubleshooting
471165.1 Additional steps to install 10gR2 RAC on IBM zSeries Based Linux (SLES10)
407086.1 USING CLONING IN CRS/RAC WINDOWS ENVIRONMENTS TO ADD A NODE
414163.1 10gR2 RAC Install issues on Oracle EL5 or RHEL5 or SLES10 (VIPCA Failures)
467753.1 Veritas clusterware 5.0 not recognized by Oracle due to the fact that Veritas
467176.1 RAC: Installing RDBMS Oracle Home Hangs The Oui
466975.1 Step to remove node from Cluster when the node crashes due to OS or H/w
330358.1 CRS 10g R2 Diagnostic Collection Guide
401132.1 How to install Oracle Clusterware with shared storage on block devices
392207.1 CSSD Startup fails with NSerr (12532,12560) transport:(502,0,0) during Install
333166.1 CSSD Startup Fails with NSerr (12546,12560) transport:(516,0,0) During install
330929.1 CRS Stack Fails to Start After Reboot ORA-29702 CRS-0184
463255.1 Enable trace for gsd issues on 10gR2 RAC
338924.1 CLUVFY Fails With Error: Could not find a suitable set of interfaces for VIPs
462616.1 Reconfiguring the CSS disktimeout of 10gR2 Clusterware for Proper LUN Failover
461884.1 How To Disable Fatal Mode Oprocd On HP-UX Itanium 10gR2
404474.1 Status of Certification of Oracle Clusterware with HACMP 5.3 & 5.4
329530.1 Using Redhat Global File System (GFS) as shared storage for RAC
458324.1 Increased ‘Log File Sync’ waits in 10gR2
341214.1 How To clean up after a Failed (or successful) Oracle Clusterware Installation
454638.1 srvctl command failed – An unexpected exception has been detected in native
276434.1 Modifying the VIP or VIP Hostname of a 10g Oracle Clusterware Node
383123.1 PRKP-1001 CRS-215 srvctl Can not Start 2nd Instance
358620.1 How To Recreate Voting And OCR Disk In 10gR1/2 RAC
200346.1 RAC: Frequently Asked Questions
220970.1 RAC: Frequently Asked Questions
269320.1 Removing a Node from a 10g RAC Cluster
430266.1 How to install 10gR2 and 9iR2 on the same node with different UDLM requirement
283684.1 How to Change Interconnect/Public Interface IP Subnet in a 10g Cluster
391790.1 Unable To Connect To Cluster Manager Ora-29701
294430.1 CSS Timeout Computation in RAC 10g (10g Release 1 and 10g Release 2)
316583.1 VIPCA FAILS COMPLAINING THAT INTERFACE IS NOT PUBLIC
416868.1 CDMP DIRECTORIES AND TRW FILES ON RAC
414177.1 Executing root.sh errors with “Failed To Upg Oracle Cluster Registry Config
390483.1 DRM – Dynamic Resource management
390880.1 OCR Corruption after Adding/Removing voting disk to a cluster when CRS stack
309542.1 How to start/stop the 10g CRS ClusterWare
396643.1 CVU HAS INCORRECT ORA_CRS_HOME VARIABLE AFTER APPLYING CRS BUNDLE II
387205.1 The 10.1.0.4 DB Cannot Start With 10.2.0.2.0 CRS And ASM
270512.1 Adding a Node to a 10g RAC Cluster
395156.1 Startup (mount) of 2nd RAC instance fails with ORA-00600 [kccsbck_first]
363777.1 How to Completely Remove a Service so that its Service_id Can Be Reused
391112.1 Database Resource Manager Spins Lmon To 100% Of Cpu
365530.1 Permissions not set correctly after 10gR2 installation
357808.1 Diagnosability for CRS / EVM / RACG
284752.1 10g RAC: Steps To Increase CSS Misscount, Reboottime and Disktimeout
332180.1 ASMCMD – ASM command line utility
371434.1 Using Openfiler iSCSI with an Oracle database
338047.1 cluvfy ERROR: Unable to retrieve database release version
183408.1 Raw Devices and Cluster Filesystems With Real Application Clusters
367564.1 Server Reboots When Rolling Upgrading CRS(10gr1 -> 10gr2)
358545.1 Root.sh is failing with CORE dumps, during CRS installation
343092.1 How to setup Linux md devices for CRS and ASM
295871.1 How to verify if CRS install is Valid
331934.1 RAC Single Instance (ASM) startup fails with ORA-27300/ORA-27301/ORA-27302
341974.1 10gR2 RAC Scheduling and Process Prioritization
341971.1 10gR2 RAC GES Statistics
341969.1 10gR2 RAC OS Best Practices
341965.1 10gR2 RAC Reference
341963.1 10gR2 RAC Best Practices
313540.1 Manually running cvu to verify stages during a CRS/RAC installation
331168.1 Oracle Clusterware consolidated logging in 10gR2
339710.1 Abnormal Program Termination When Installing 10gR2 on RHAS 4.0
339383.1 CSSD FAILURE DOES NOT REBOOT THE NODE
337937.1 Step By Step – 10gR2 RAC with ASM install on Linux(x86) – Demo
280209.1 10g RAC Performance Best Practices
CLONING
216664.1 FAQ: Cloning Oracle Applications Release 11i
230672.1 Cloning Oracle Applications Release 11i with Rapid Clone
135792.1 Cloning Oracle Applications Release 11i
Discoverer
139516.1 Discoverer 4i with Oracle Applications 11i
257798.1 Discoverer 10g (9.0.4) with Oracle Applications 11i
139516.1 Installation of Discoverer 4i
AutoConfig
165195.1 Using AutoConfig to Manage System Configurations with Oracle Applications 11i
218089.1 Autoconfig FAQ
Real Application Clusters(RAC)
181503.1 Real Application Clusters Whitepapers (OTN)
280209.1 10g RAC Performance Best Practices (INTERNAL ONLY)
302806.1 IBM General Parallel File System (GPFS) and Oracle RAC on AIX 5L and IBM eServer pSeries
270512.1 Adding a Node to a 10g RAC Cluster
137288.1 Manual Database Creation in Oracle9i (Single Instance and RAC)
292776.1 10g RAC Lessons Learned
280216.1 10g RAC Reference (INTERNAL ONLY)
269320.1 Removing a Node from a 10g RAC Cluster
226561.1 9iRAC Tuning Best Practices (INTERNAL ONLY)
220178.1 Installing and setting up ocfs on Linux – Basic Guide
208375.1 How To Convert A Single Instance Database To RAC In A Cluster File System Configuration
255359.1 Automatic Storage Management (ASM) and Oracle Cluster File System (OCFS) in Oracle10g
341963.1 10gR2 RAC Best Practices (INTERNAL ONLY)
273015.1 Migrating to RAC using Data Guard
329530.1 Using Redhat Global File System (GFS) as shared storage for RAC
270901.1 How to Dynamically Add a New Node to an Existing 9.2.0 RAC Cluster
203326.1 Data Guard 9i Log Transportation on RAC
169539.1 A Short Description of HA Options Available in 9i
160120.1 Oracle Real Application Clusters on Sun Cluster v3
226569.1 9iRAC Most Common Performance Problem Areas (INTERNAL ONLY)
251578.1 Step-By-Step Upgrade of Oracle Cluster File System (OCFS v1) on Linux
247135.1 How to Implement Load Balancing With RAC Configured System Using JDBC
139436.1 Understanding 9i Real Application Clusters Cache Fusion
285358.1 Creating a Logical Standby from a RAC Primary Using a Hot Backup
222288.1 9i Rel 2 RAC Running on IBM’s General Parallel File System
226567.1 9iRAC Related Init.ora Parameters (INTERNAL ONLY)
210889.1 RAC Installation with a NetApp Filer in Red Hat Linux Environment
341965.1 10gR2 RAC Reference (INTERNAL ONLY)
341969.1 10gR2 RAC OS Best Practices (INTERNAL ONLY)
226566.1 9iRAC Related Latches (INTERNAL ONLY)
220970.1 RAC: Frequently Asked Questions
268202.1 Dynamic node addition in a Linux cluster
285455.1 HOW TO MAKE AN EXCLUSIVE INSTANCE AVAILABLE ON MULTIPLE CLUSTER NODES.
332257.1 Using Oracle Clusterware with Vendor Clusterware FAQ
245079.1 Steps to clone a 11i RAC environment to a non-RAC environment
235158.1 How To Enable/Disbale Archive Log Mode on Oracle9i Real Application Cluster
210022.1 How To Add A New Instance To The Existing Two Nodes RAC Database Manually
317516.1 Adding and Deleting a Cluster Node on 10gR2 / Linux
271685.1 How to Run Autoconfig for RAC Environment on Apps Tier Only
278816.1 How to Setup Parallel Concurrent Processing using Shared APPL_TOP for RAC Environment
334459.1 How to change hostname in RAC environment
250378.1 Migrating Applications 11i to use Oracle9i RAC (Real Application Clusters).
295998.1 How to solve corruptions on OCFS file system
345081.1 How to Rename a RAC Database in a 10g Real Application Clusters Environment
312051.1 How To Remove Ocfs From Linux Box.
PORTAL
228516.1 How to copy (export/import) Portal database schemas of IAS 9.0.2 to another database
330391.1 How to copy (export/import) Portal database schemas of IAS 10.1.2 to another database
UPGRADES
125767.1 Upgrading Devloper6i with Oracle Applications 11i
216550.1 RDBMS upgrade to 9.2.0
161779.1 Upgradation of HTTP Server
212005.1 Upgrade Oracle Applications to 11.5.8
139863.1 Self Servie Framework Upgrade
112867.1 Express Server & OFA upgrade
124606.1 Jinitiator upgrade
130091.1 JDK upgrade to 1.3
130091.1 Upgrading Oracle Applications 11i to use JDK 1.3
144069.1 Upgrading to Workflow 2.6 with Oracle Applications 11i
159657.1 Complete Upgrade Checklist for Manual Upgrades from 8.X / 9.0.1 to Oracle9i
EXPORT / IMPORT
Note 230627.1 – 9i Export/Import Process for Oracle Applications Release 11i
Note 331221.1 – 10g Export/Import Process for Oracle Applications Release 11i
Note 362205.1 – 10g Release 2 Export/Import Process for Oracle Applications Release 11i
Note 277650.1 – How to Use Export and Import when Transferring Data Across Platforms or Acros…
Note 243304.1 – 10g: Transportable Tablespaces Across Different Platforms
Note 341733.1 – Export/Import DataPump Parameters INCLUDE and EXCLUDE – How to Load and Unload..
Purge
  • Note 132254.1 Speeding up and Purging Workflow
  • Note 277124.1 FAQ on Purging Oracle Workflow Data
  • Note 337923.1 A closer examination of the Concurrent Program Purge Obsolete Workflow Runtime Data
  • Note 466593.1 How To Delete Diagnostic Logs and Statistics?
  • Note 413795.1 Page Access Tracking Data Purge Concurrent Request Fails With Ora-942
  • Note 461897.1 Which Tables store the Page Access Tracking Data?
  • Note 144806.1 A Detailed Approach To Purging Oracle Workflow Runtime Data
  • Note 264191.1 Quick Reference: How To Purge Obsolete Workflow Runtime Data For Applications
  • Note: 871721.1 – How To Purge FND_LOBS?
  • Note: 303709.1 – Reclaiming unused space in APPLSYSD tablespace
  • Note: 298698.1 – Avoiding abnormal growth of FND_LOBS table in Applications 11i
  • Note: 555463.1 – How to Purge Generic or Purchasing Attachments from the FND_LOBS Table
  • Note: 732713.1 – Purging Strategy for eBusiness Suite 11i
  • Note: 742822.1 – How to Purge FND_LOBS Table Where Expiration_Date Is Null
  • Note: 371342.1 – Why does the EXPIRATION_DATE column of FND_LOBS table have NULL entries?
Patch
  • Note 233039.1 Patch Information Bundle File (InfoBundle11i.zip)
Workflow
  • Note  364647.1 How are FND_USERS, HR, and WF_LOCAL_ROLES Kept In Synchronization?
  • Note 444446.1 Diagram of Relationship between Core Workflow Tables
  • Note  231286.1] Configuring the Oracle Workflow 2.6 Java-based Notification Mailer with Oracle Applications 11i
  • Note  433359.1  Tracking Workflow Notification Event Messages).
  • Note  1126608.1 WFLOAD Fails for POAPPRV Workflow with “1405: Invalid performer ‘PREPARER_USER_NAME”
  • Note  312582.1 How To Resubmit a Document For Approval When the Document is IN PROCESS Due To PO Document Approval Manager Errors
  • Note  116375.1 Workflow How to Get Information Required to Run wfstatus/wfstat.sql
  • How To Diagnose Deferred Purchase Order And Requisition Workflows? [ID 884391.1]
Preference
  • Note 578574.1 – How To Set Email Style Preference For All Users At Once?
  • Note 451929.1 – How to mass change Mail Preferences for FND USERS
Information Center
  • ++ Note 112552.1 Oracle Applications Release 11i Information Center
  • Note  1196096.1 E-Business Suite: Oracle Payables Information Center
  • Note  1099813.1 Oracle E-Business Suite HRMS / HCM Information Center
Diagnostics
  • Note  781198.1 Diagnostics for Database Performance Issues
  • Note 168181.1 Diagnosing Oracle HRMS Person Assignment Issues Using Per.zip
Virtualization & VMWare
  • Note 249212.1 Support Position for Oracle Products Running on VMWare Virtualized Environments
  • Note 794016.1 Hardware Vendor Virtualization Technologies on non x86/x86-64 Architectures and Oracle E-Business Suite
  • Note  465915.1 Using Oracle VM with Oracle E-Business Suite Release 11i or Release 12
Cloning
  • Note  230672.1 Cloning Oracle Applications Release 11i with Rapid Clone
Discoverer
  • Note  374806.1 OC4J_BI_FORMS Failures: How To Generate OPMN Diagnostic Logs For Discoverer Troubleshooting
  • Note  728452.1 How To Force Discoverer Plus 10g (10.1.2) To Use A Specific Or Dynamic Sun JRE / JVM Version
  • How To Customize Oracle Business Intelligence Discoverer 10g (10.1.2) Connection Page [ID 312463.1]
Support
  • Note  266043.1 Support of Linux and Oracle Products on Linux
FSG
  • Note  1091420.1 In Rel 11i, without using Report Manager, how to get FSG output in Excel
  • Note  302980.1 Is There An XML Template To Run FSG Reports In Excel?
  • Note  738699.1 Migrating ADI to the Web
Tracing Techniques
  • Note  296559.1 FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12
  • Note  117129.1 How to get a Trace for And Begin to Analyze a Performance Issue
  • Note  130182.1 How To Trace From Form, Report, Program And Others In Oracle Applications
  • Note: 737530.1 – Tracing the LSNRCTL Control Utility
XML Publisher
  • Note  556032.1 How to Download Oracle XML Publisher Desktop 5.6.3
  • Note  1138602.1 Overview of Available Patches for Oracle XML Publisher (embedded in Oracle E-Business Suite)
  • Note  362496.1 How to Determine the Version of Oracle XML Publisher
  • for Oracle E-Business Suite 11i and Release 12
appsdba
  • A++ Note 210326.1 Oracle Applications DBA 11i+ Features Matrix
  • A++ Note 214088.1 Oracle Applications System Administration Scripts
  • Running Configuration Wizards from the Command Line in Oracle Applications 11i (Doc ID: Note:277574.1)
  • Script to Determine Users Connected to Oracle Apps and For Imitating Users Before Bouncing Apache or Forms Services (Doc ID: Note:430948.1)
Notifications
  • Note  344810.1 11.5.10: Need To See Entire Charge Account in Notification To Approve Requisitions and Purchase Orders
  • A++ Note 404524.1  How Can Item Attributes Be Added To The Requisition Lines Section So They Appear On The Approval Email Notification?
  • A++ Note 1199603.1 Master Note On Purchasing Document Approval Notifications
  • Note  727277.1 Notification Summary Page Not Showing All The Purchase Order Lines
  • Note  413798.1 PO Approval Notifications Do Not Have the Purchase Order Lines Section
  • Note  210628.1 FAQ: Purchasing Reminder Notifications
  • Note  467346.1 Hundreds Of Reminder Notifications Suddenly Generated
  • 11.5.10: Need To See Entire Charge Account in Notification To Approve Requisitions and Purchase Orders [ID 344810.1]
Performance
  • Note: 69565.1 – A Holistic Approach to Performance Tuning Oracle Applications Systems
  • Note: 744143.1 – Tuning performance on eBusiness suite
  • Note: 864226.1 – How Can I Diagnose Poor E-Business Suite Performance?
  • Note: 169935.1 – Troubleshooting Oracle Applications Performance Issues
  • Note: 244040.1 – Oracle E-Business Suite Recommended Performance Patche
  • Note 41634.1 - Tkprof Simplistic Overview
  • Note 46234.1- Interpreting Explain planNote 22908.1 - What are Latches and What Causes Latch Contention
  • NOTE.228913.1- Systemwide Tuning using STATSPACK Reports
  • NOTE.164504.1- How to Check Why Shutdown Immediate Hangs?
  • Note 375935.1 - What To Do and Not To Do When 'shutdown immediate' Hangs
  • NOTE.35934.1- Cost Based Optimizer - Common Misconceptions and Issues
  • Note 62365.1 - What to do with "ORA-60 Deadlock Detected" Errors
  • Note 203238.1- Using Parallel Execution
  • Note 377847.1- Unsafe Peeked Bind Variables and Histograms
  • Note 462072.1- File System's Buffer Cache versus Direct I/O
  • Note 147468.1 - Checkpoint Tuning and Troubleshooting Guide
  • Note.458881.1 -Killed Session Hung Consuming 100% CPU
  • Note.468740.1 - "Pmon Failed To Acquire Latch" Messages in Alert Log -Database Hung
  • Note.430555.1 - Database Hung With "kksfbc child completion" and "Cursor- Pin X" Waits
  • NOTE.215858.1- Interpreting HANGANALYZE trace files to diagnose hanging
  • Attachments
    • How to Limit The Attachment File Size? [ID 604458.1]
    • Is There A File Size Limit For EBS Attachments [ID 739643.1]
    • Attachments and Exports, a Troubleshooting Guide [ID 135444.1]
    • How to Purge Generic or Purchasing Attachments from the FND_LOBS Table [ID 555463.1]
    • How Do You Manually Generate A Form In Release 12 [ID 554336.1]
    • Known Causes of FRM-92101 Error In Forms [ID 604633.1]
    • Oracle Forms in Applications FAQ [ID 177610.1]
    • How To relink a single executable via ADADMIN Utility [ID 388198.1]
    • How to Generate a Specific Form Through AD utility adadmin [ID 178722.1]
Other
  • Note 268546.1 Applications Patching Knowledge Browser Product Page
  • Note 884391.1 How To Diagnose Deferred Purchase Order And Requisition Workflows?
  • Note 316365.1 Oracle Applications Release 11.5.10.2 Maintenance Pack Installation Instructions
  • Note 787209.1  How to find the correct version of JDeveloper to use with eBusiness Suite 11i or Release 12.
Note ids for Security

Note 1020945.6 - How to Setup Auditing
Note 70679.1 - How to Audit Logon/Logoff Events with Triggers
Note 222807.1 -How To Audit GRANT ANY PRIVILEGE Or GRANT ANY ROLE
Note 340240.1 - "An Assessment of the Oracle Password Hashing Algorithm"


Note ids for Unix

Note 262004.1 - Configuring RHEL 3 and Oracle 9iR2 32-bit with Hugetlb
Note 260152.1 - Summary About the Large SGA & Address Space on RH Linux
Note 226209.1 - Linux: How to Check Current Shared Memory, Semaphore Values
Note 37914.1 - Raw Devices and Oracle - 20 Common Questions and Answers
Note 110888.1 - How to Trace Unix System Calls
Note 293561.1 - Unix Commands on Different OS's
Note 18089.1 - UNIX: Connect AS SYSBDA / SYSOPER Privilege on Oracle RDBMS

Note ids for Globalization Support

Note 158577.1 - NLS_LANG explained
Note 179133.1 - Windows NLS_LANG
Unix NLS_LANG - Metalink doc: 264157.1
Note 340512.1 - Timestamps and time zones - Frequently Asked Questions
Note 227338.1- Character Set Scanner - Frequently Asked Questions
Note 119164.1 - Changing Database Character Set - Valid Superset Definitions
Note 226692.1- Finding out your NLS Setup
Note 264157.1- The correct NLS_LANG setting in Unix Environments
Note 227338.1 - Character Set Scanner - Frequently Asked Questions


Note ids for Administration

Note 262066.1 - How To Size UNDO Tablespace For Automatic Undo Management
Note 268870.1 - How to Shrink the datafile of Undo Tablespace
Note 206007.1 - How To Automate Cleanup Of Dead Connections And INACTIVE
Note 1029252.6 - How to Resize a Datafile
Note 199298.1 - Diagnosing excessive redo generation


Note ids for Automatic Storage Management (ASM)

Note 359266.1 - FAQ ASMLIB CONFIGURE,VERIFY, TROUBLESHOOT
Note 266028.1 - ASM Using Files Instead of Real Devices on Linux
Note.443835.1- ASM Fast Mirror Resync - Example To Simulate Transient Disk Failure And Restore Disk
Note.438580.1 - How To Move The Database To Different Diskgroup (Change Diskgroup Redundancy)
Note.445037.1 - ASM Fast Rebalance
Note.429098.1- 11g ASM New Feature
Note.451900.1 - ASMCMD - New commands in 11g
Note.431143.1 - 'WARNING- allocation failure on disk ' Messages In Asm Alert Log
Note.419014.1 - ORA-15041 V$ASM_DISK Shows HUNG State for Dropped Disks
NOTE.345180.1 - How to duplicate a controlfile when ASM is involved
===================================================================================

Note.174436.1 : Oracle Applications Patching FAQ
Note.231701.1 : How to Find Patching History (10.7, 11.0, 11i)
Note.175485.1 : How to Apply an 11i Patch When adpatch is Already Running
Note.252422.1 : Requesting Translation Synchronization Patches in Release
Note.316366.1 : 11.5.10 Oracle E-Business Suite Consolidated Update 2 (CU2)
Note.259484.1 : Release 11.5.10 Maintenance Pack Installation Instructions
Note.316365.1 : Oracle Applications Release 11.5.10.2 Maintenance Pack
Note.139684.1 : Oracle Applications Current Patchset Comparison Utility –
Note.181665.1 : Release 11i Adpatch Basics
Note.358247.1 : ORA-00001 : unique constraint violated error while applying
Note.358417.1 : Unable to Start Concurrent Managers After Applying 11i.
Note.353414.1 : Application Technology Group (ATG) Patching Policy
Note.359198.1 : XDF files fail to load on HP-UX, Memory Fault(Coredump)
Note.232834.1 : Oracle Applications Release 11.5.9 Maintenance Pack
Note.337274.1 : About Oracle Applications Technology 11i.ATG_PF.H Rollup 3
Note.244040.1 : Oracle E-Business Suite Recommended Performance Patches
Note.367756.1 : Uploading Java Objects To Patch History Tables Fails While
Note.76708.1 : Using ADSPLICE To Add Products To The APPL_TOP In
Note.230672.1 : Cloning Oracle Applications Release 11i with Rapid Clone
Note.216664.1 : FAQ : Cloning Oracle Applications Release 11i
Note.242123.1 : Create new middle tier node in existing Apps 11i
Note.238276.1 : Migrating to Linux with Oracle Applications Release 11i
Note.364565.1 : Troubleshoot RapidClone or OAM Clone issues
Note.243693.1 : Rapid Clone Coredumps when Running Adcfgclone.pl
Note.398619.1 : Clone Oracle Applications 11i using Oracle Application Manager (OAM Clone)
Note.200963.1 : R11.5.3/R11.5.4/R11.5.5 Upgrade And Install Issues
Note.289765.1 : Oracle Applications Release 11i (11.5.10) Upgrade Assistant
Note.289788.1 : Upgrading Oracle Applications
Note.316277.1 : Unable To Change Guest User Password In Oracle Applications
Note.295484.1 : Clear Server Cache and Bounce Apache (Web Server)
Note.113947.1 : Step by Step Troubleshooting Guide to Solve APPS Invalid
Note.1007808.6 : HOW TO HANDLE CORE DUMPS ON UNIX
Note.298550.1 : Troubleshooting Workflow Data Growth Issues
Note.469213.1 : How To Encrypt The Apps Password In Wdbsvr.App
Note.293369.1 : OPatch documentation list
Note.119319.1 : How to Replace Oracle Logo with Company Logo on Applications 11i Sign-On Screen
Note.554336.1 : How Do You Manually Generate A Form In Release 12 (frmcmp)
Note.444286.1 : How to manually generate a R12 report on Unix
Note:186150.1 Creating a logical standby
Note:214071.1 Creating a logical standby with Data Guard Manager
Note:232240.1 Performing a switchover
Note:227196.1 Performing a failover
Note:233261.1 Tuning Log Apply Services
Note:215020.1 Troubleshooting Logical Standbys
Note:210989.1 Applying Patchsets with Logical Standby in Place
Note:233519.1 Known Issues with Logical Standby
Note:240874.1 Primary Site and Network Configuration Best Practices
Note:240875.1 9i Media Recovery Best Practices
Note:60545.1 How to Extract Controlfiles, Datafiles, and Archived Logs from RMAN Backupsets
Note:139516.1 Discoverer 4i with Oracle Applications 11i
Note.257798.1 Discoverer 10g (9.0.4) with Oracle Applications 11i
Note.139516.1 Installation of Discoverer 4i
Note.74660.1 : Resolving Invalid Objects in Oracle Applications
Note.312572.1 : About Oracle Applications Technology Updates for Release 11.
Note.316806.1 : Oracle Applications Installation Update Notes, Release 11i
Note.370274.1 : New Features in Oracle Application 11i
Note.275734.1 : India Localization
Note.47837.1 : Applications Utilities FAQ
Note.189487.1 : System Administration FAQ’s
Note.289786.1 : Installing Oracle Applications: A Guide to Using Rapid
Note.245079.1 : Steps to clone a 11i RAC environment to a non-RAC
Note.133972.1 : How to Reset the APPS and APPLSYS Passwords in Release 11.5
Note.287176.1 : DMZ Configuration with Oracle E-Business Suite 11i
Note.342332.1 : Troubleshooting Login Problems in Oracle Applications 11i
Note.144689.1 : How to Generate a Report (.rdf) File from the UNIX Command
Note.144599.1 : How to Generate a .pll Library File for Applications 11i
Note.208375.1 : How To Convert A Single Instance Database To RAC In A
Note.279956.1 : Oracle E-Business Suite Release 11i with 9i RAC :
Note.312731.1 : Configuring Oracle Applications Release 11i with 10g RAC
Note.362135.1 : Configuring Oracle Applications Release 11i with 10g R2 RAC
Note.233038.1 : AD Command Line Options
Note.186125.1 : Applications 11i and Standby Databases
Note.260887.1 : Steps to Clean Nonexistent Nodes or IP Addresses from
Note.342459.1 : Diagnostics Overview
Note.338003.1 : How to change the hostname and/or port of the Database Tier
Note.341322.1 : How to change the hostname of an Apps Tier using AutoConfig
Note.230627.1 : 9i Export/Import Process for Oracle Applications Release 11i
Note.331221.1 : 10g Export/Import Process for Oracle Applications Release 11i
Note.362205.1 : 10g Release 2 Exp/Imp Process for Oracle Applications Release 11i
Note.333785.1 : Oracle Applications Internationalization Guide
Note.343253.1 : Tns-12555, Tns-12560, Tns-00525, Linux Error : 1 Starting
Note.150168.1 : Obtaining Forms Runtime Diagnostics (FRD) In Oracle
Note.283225.1 : How to Recreate the Listener for Event and Listener for
Note.153960.1 : FAQ : X Server testing and troubleshooting
Note.337937.1 : Step By Step – 10gR2 RAC with ASM install on Linux(x86) –
Note.225456.1 : Troubleshooting Guide for Cloning Issues
Note.253763.1 : After Cloning on Target instance FRM-92050 Failed to
Note.189867.1 : Troubleshooting FRM-92050, FRM-92100, FRM-92101, FRM-92102
Note.363759.1 : How To Add Diagnostic Tools To Responsibility Menu