People and Culture Blog

Troubleshooting and Resolving ‘CheckApplicable’ Prerequisite Error When Applying Oracle GI RU July-2023 Patch

Overview of blog  In this blog post, we will explore a comprehensive solution to resolve the issue of ‘oracle.rdbms.deconfig, 19.0.0.0.0’: Cannot delete file ‘/usr/local/oracle/19.3.0.0/suptools/tfa’ and the subsequent ‘CheckApplicable’ prerequisite failure.…

Read More

HARNESSING BLOCK CHANGE TRACKING FOR ENHANCED PERFORMANCE

Block changing tracking improves the performance of incremental backups by recording changed blocks in the block change tracking file. During an incremental backup, instead of scanning all data blocks to identify which blocks have changed, RMAN uses this file to identify the changed blocks that need to be backed up. TO ENSURE THE CURRENT PERFORMANCE OF INCREMENTAL BACKUPS: SQL>  select SESSION_KEY, INPUT_TYPE, STATUS, to_char(START_TIME,’mm/dd/yy hh24:mi’) start_time, to_char(END_TIME,’mm/dd/yy hh24:mi’) end_time, elapsed_seconds/3600 hrs from V$RMAN_BACKUP_JOB_DETAILS order by session_key; The above command will show the performance of daily incremental backups. i.e., How many hours the database backup is running before enabling the block change tracking. TO ENSURE THE BLOCK CHANGE TRACKING IS ENABLED IN THE DATABASE: SQL> select status, filename from v$block_change_tracking; It will show the block change tracking is enabled in our database or not. If it shows disabled, we want to enable the parameter by issue the below command. SQL> alter database enable block change tracking; NOTE:- After enables the BLOCK_CHANGE_TRACKING, wait for a day to complete the database backup. Then issue the above command to ensure the incremental backup performance. It will show you the positive differences compares to the earliest performance.

Read More

ORA-20004:ERROR IN SENDING AN EMAIL IN APEX

ORA-20004: Error in sending an Email – You have exceeded the maximum number of email messages per workspace. Please contact your administrator. REASON: Actually, Number of mails can be sent…

Read More

ODA (Oracle Database Appliance) Monitoring commands

Hardware monitoring commands: – Display information about the environment and hardware:- odaadmcli show env_hw Display information about the filesystem:- odaadmcli show fs Display information about the Memory:- odaadmcli show memory…

Read More

Delete Archive logs in primary database and then sync primary and standby databases.

Delete Archive logs in primary database and then sync primary and standby databases. Introduction: This article delves into the careful process of deleting archive logs in a primary database and…

Read More

Autoconfig Completed with error issue in applptmp

Autoconfig Completed with error issue in applptmp Introduction: The objective of this blog is to overcome an error while running autoconfig in oracle EBS 12.2.10 application tier. While running autoconfig in application tier…

Read More

ORA-07445 – exception encountered: core dump

ORA-07445 – exception encountered: core dump Issue :- DB was down due to the ORA – 07445 error in the alert log Cause:- ORA-07445: exception encountered: core dump [kggchk()+52] [SIGSEGV]…

Read More

DIRECT JOINS in UPDATE and DELETE statements.

   ORACLE 23-C NEW FEATURES DIRECT JOINS in UPDATE and DELETE statements. CONTENTS SNO CONTENTS PAGE NUMBER 1 Introduction 3 2 Why do we need this feature 3 3 Update…

Read More

GENERATING THE REPORT WITH APEX_DATA_EXPORT

1. Overview If we need to generate our report with the APEX_DATA_EXPORT this Document will Explain you  how to generate the report with the APEX_DATA_EXPORT 2. Technologies and Tools Used The following technology has been used to achieve the same. Javascript OracleApex 1 Pl/Sql code 3. Use Case It will help us to generate a report with with the APEX_DATA_EXPORT to…

Read More

HOW TO CUSTOMIZE TEXT FIELD INTO SLIDER PAGE ITEM

1. Overview If we have a requirement to show the text field page item into the slider page item then this Document will Explain How to customize text field into slider page item. 2. Technologies and Tools Used The following technology has been used to achieve the same. Javascript` Oracle Apex 1…

Read More