DBMS_AUTO_INDEX
The DBMS_AUTO_INDEX package provides the interface for managing auto indexes in an Oracle database.The DBMS_AUTO_INDEX package is the interface for configuring auto indexes and generating reports of...
View ArticleJava Web Start(JWS)
What is Java Web Start and how is it launched?The Java Web Start software allows you to download and run Java applications from the web. The Java Web Start software:Provides an easy, one-click...
View ArticleOracle 19c Certificated Matrix Walk through
1. Certified PlatformsThe Certified Platforms list includes items that have been explicitly certified by EBS development.Linux x86-64Oracle Linux 7.4 Update 4 (7.4) or laterRed Hat Enterprise Linux 7.4...
View ArticleProcedure to Perform TDE Tablespace Online Encryption
This section describes the steps needed to perform TDE Tablespace Online Encryption for an Oracle E-Business Suite database.Source your Oracle E-Business Suite Database Oracle Home.Create the required...
View ArticleSession Sequences in Oracle Database:
Basic UsageAdding the SESSION keyword during sequence creation causes it to be created as a session sequence. Using the GLOBAL keyword, or omitting the additional clause entirely will create the...
View ArticleTemporary Undo
Each Oracle database contains a set of system related tablespaces, such as, SYSTEM, SYSAUX, UNDO & TEMP, and each are used for different purposes within the Oracle database. Pre Oracle 12c R1, undo...
View ArticleOracle E-Business Suite 12.2.9 Released
Oracle E-Business Suite 12.2.9 ReleasedOracle has recently released Oracle E-Business Suite new version 12.2.9. This update has many new features. In this post we will see new features of EBS...
View ArticleEnhanced Features of EBS 12.2.5
Enhanced new Application DBA features of Oracle E-Business Suite Release 12.2.5 Script to Automate Changing Oracle WebLogic Server Administration User Password (Conditional to be on patch set level...
View ArticleRMAN New Features in Oracle 18c
RMAN New Features in Oracle 18c 18c: Multitenant DB EnhancementBackup history preservationØ Restore a PDB from a backup taken as non-multitenant, or when the PDB was plugged into a different CDBØ...
View ArticleEBS 12.2 Allowed Resources –Configuration
Allowed Resources –Configuration1. Allowed Resources enabled by default starting with 12.2.62. Allowed JSPs in 12.2.4 and 12.2.5 not enabled by default3. New profile option for...
View ArticleLock Account Automatically With INACTIVE_ACCOUNT_TIME
Lock Account Automatically With INACTIVE_ACCOUNT_TIMEIn Oracle 12.2 Release We can use the INACTIVE_ACCOUNT_TIME resource parameter in profile to automatically lock the account of a database user who...
View ArticleDisable TDE In Oracle 12c
Disable TDE In Oracle 12cThough Oracle hasn’t provided straight forward method to disable TDE . But there is a work around for this.Follow Below stepsFind the encrypted table columns and modify...
View ArticleORA-25152: TEMPFILE Cannot Be Dropped At This Time
ORA-25152: TEMPFILE Cannot Be Dropped At This TimePROBLEM:While dropping a tempfile got the below error.SQL> alter tablespace TEMP drop tempfile ‘/archive/TEST/TESTDB/temp01.dbf’;alter tablespace...
View ArticleORA-39095: Dump File Space Has Been Exhausted: Unable To Allocate
ORA-39095: Dump File Space Has Been Exhausted: Unable To AllocatePROBLEM:While running expdp with filesize parameter, got below error.expdp dumpfile=full1.dmp logfile=full1.log directory=T...
View ArticleFind Objects That Are Making Catalog And Catproc Invalid
Find Objects That Are Making Catalog And Catproc InvalidSometimes catalog and catproc components become invalid due to some invalid objects. You need to find those objects and take necessary...
View ArticleScript to Find the Hot blocks
SET LINESIZE 200SET VERIFY OFFSELECT *FROM (SELECT name, addr, gets, misses, sleeps FROM v$latch_children WHERE name = 'cache buffers chains' AND misses > 0 ORDER BY misses DESC)WHERE rownum <...
View ArticleScript to know the unusable Indexes for specified Schema or all Schemas
SET VERIFY OFF LINESIZE 200COLUMN owner FORMAT A30COLUMN index_name FORMAT A30COLUMN table_owner FORMAT A30COLUMN table_name FORMAT A30SELECT owner, index_name, index_type, table_owner, table_name...
View ArticleScript to know the auto-index configuration for each container.
COLUMN parameter_name FORMAT A40COLUMN parameter_value FORMAT A40SELECT con_id, parameter_name, parameter_value FROM cdb_auto_index_configORDER BY 1, 2;
View ArticleScript will display the segment advice for the specified segment
SET SERVEROUTPUT ON SIZE 1000000SET LINESIZE 200SET VERIFY OFFDECLARE l_object_id NUMBER; l_task_name VARCHAR2(32767) := 'SEGMENT_ADVISOR_TASK'; l_object_type VARCHAR2(32767) := UPPER('&1');...
View ArticleScript will Explain the scheduler information about job chain rules
SET LINESIZE 200COLUMN owner FORMAT A10COLUMN chain_name FORMAT A15COLUMN rule_owner FORMAT A10COLUMN rule_name FORMAT A15COLUMN condition FORMAT A25COLUMN action FORMAT A20COLUMN comments FORMAT...
View Article