Article 14
Steps to purge the FND_OPP_AQ Table if the count reaches the threshold1) Bring down the Application services before performing this activity2) Reboot the database once.$ sqlplus / as sysdbaSQL*Plus:...
View ArticleScript to find Invalid objects list with Error details
-- Script to find Invalid objects list with Error detailsset lines 170set pages 10000col owner format a20col TEXT format a100col NAME format a30col LINE format 9999999BREAK ON OWNER ON NAME SKIP...
View ArticleScript to get SQL ID which has more than one plan hash value.
-- Script to get SQL ID which has more than one plan hash value.-- This is for last 7 days data from sysdate,SET SERVEROUTPUT ONDECLARE v_count number := 0; CURSOR SQLID IS SELECT SQL_ID,...
View ArticleArticle 11
Query to Find whether user is active or Inactive in EBSSQL :SELECT 'Active', valid.* FROM fnd_user valid WHERE valid.user_id IN (SELECT user_id FROM fnd_user...
View ArticleArticle 10
Manual Method to generate Output files(PDF,EXCEL,TXT,HTML) Using BI-Publisher Desktop in EBS When OPP fails or not able to generate Out for some Concurrent Programs.1) Download the Oracle BI...
View ArticleArticle 9
Some Useful DBA Queries Related to TEMP Usage, Free Blocks, Temp tablespace groups, Block Wise Check, Free Extents, Segments etc..To check instance-wise total allocated, total used TEMP for both rac...
View ArticleOracle Database 12C release 1 (12.1)-ENCRYPTION_PWD_PROMPT=Y
There is new option to pass in silent mode encryption password in Oracle 12C during exporting sensitive data. In new version user is asked about password during execution of export.expdp ......
View ArticleData Pump Enhancements in Oracle Database 12c Release 1 (expdp, impdp)
New parameters of DataPump:LOGGINGDISABLE_ARCHIVE_LOGGING (part of the TRANSFORM parameter)ENCRYPTION_PWD_PROMPTCOMPRESSION_ALGORITHM
View ArticleCompress/Uncompressed Data During Import in 12c
COMPRESSION options isCOMPRESSION_ALGORITHM=[BASIC | LOW | MEDIUM | HIGH]BASIC offers the most efficient usage of CPU and effective compression ratio; it is deemed to be applicable to most sessions.LOW...
View ArticleLOG TIME in 12c datapump
Data Pump – LOGGING. This command-line parameter can have four values:NONE: No timestamp information is displayed. (This is the default.)STATUS: Timestamp messages on status are displayed.LOGFILE: Same...
View ArticleExporting Views as Tables in 12c datapump
Oracle 12c introduces the possibility to export VIEWS as TABLES using the expdp parameter VIEWS_AS_TABLES:VIEWS_AS_TABLES=[schema_name.]view_name[:table_name], ...For exampleimpdp directory=exam_dir...
View ArticleArticle 3
Alert Log: Shutdown Waiting for Active Calls to Complete.Error:You are attempting to shut down the database and the database hangs. The alert log contains the following message:...
View ArticleArticle 2
OATM Migration Appears to Have Hung. How Can I Monitor It's Progress?The Oracle Applications Tablespace Model was another long awaited feature that gotintroduced in 11.5.10.Prior to...
View ArticleArticle 1
Commands to check the load average in Solaris platformThe following commands are present by default in Solaris Operating system solaris 10u11. prstat -a sar 1 5 iostat...
View ArticleDatabase Smart Flash Cache
If your database is running on Solaris or Oracle Linux, you can optionally add another memory component: Database Smart Flash Cache. Database Smart Flash Cache is an extension of the SGA-resident...
View ArticleAbout Incidents in OEM
An incident is a single occurrence of a problem. When a problem (critical error) occurs multiple times, an incident is created for each occurrence. Incidents are timestamped and tracked in the...
View ArticleAdvanced Index Compression
Advanced Index Compression works well on all supported indexes, including those indexes that are not good candidates for the existing prefix compression feature; including indexes with no, or few,...
View ArticleCreating an Unusable Index
When you create an index in the UNUSABLE state, it is ignored by the optimizer and is not maintained by DML. An unusable index must be rebuilt, or dropped and re-created, before it can be used.If the...
View ArticleCreating an Invisible Index
An invisible index is an index that is ignored by the optimizer unless you explicitly set the OPTIMIZER_USE_INVISIBLE_INDEXES initialization parameter to TRUE at the session or system level.To create...
View Article