ADD CREDENTIALSTORE on Goldengate 12c
ADD CREDENTIALSTORE goldengate 12cThe ADD CREDENTIALSTORE is a new command in Oracle GoldenGate 12c and the default location of the credential store is “$GG_HOME/dircrd” directory of the GoldenGate...
View ArticleArticle 5
DB Console service won't startFirst, check the listener is running correctly.lsnrctl statusIf you get something like the following, your listener is not running and you need to start it using the...
View ArticleArticle 4
Step by step Clone PDB within CDB in Oracle Database 12cStep by step Clone PDB within CDB in Oracle Database 12cOracle database 12c is providing new feature to clone database in very simple...
View ArticleORA-24247: network access denied by access control list (ACL)
ACL issue :ERROR at line 1:ORA-24247: network access denied by access control list (ACL)ORA-06512: at "SYS.UTL_TCP", line 17ORA-06512: at "SYS.UTL_TCP", line 246ORA-06512: at "SYS.UTL_SMTP", line...
View ArticleIdentification of Long running forms in 10g Oracle Application Forms.
#!/bin/bash################################################################################ File Name : long_runn_forms.sh# Author : Vimal Raju# Date : 04/11/2018 --- MM/DD/YYYY#...
View ArticleCursor_Sharing Parameter in Oracle
CURSOR_SHARING determines what kind of SQL statements can share the same cursors. It is an init.ora parameter which decides whether a SQL send from user is a candidate for fresh parsing or will use an...
View Articleinit.ora Parameter vs Kernel Parameter
Many times we change database init.ora parameter, at the same time we should also monitor kernel parameter as well. This is because few of memory and process parameter are directly effecting to our OS....
View ArticleSteps to Flashback to Particular Restore Point
set pagesize 1000col name format a70col scn format 9999999999999999999col time format a50select SCN,NAME,TIME,STORAGE_SIZE from v$restore_point;shutdown immediatestartup mountexitflashback the database...
View ArticleHOW TO GET DROPPED TABLE DATA BACK IN ORACLE USING RMAN WITH FLASHBACK TECHNOLOG
Step 1: Check whether DB has recyclebin on or offSYS@xxxx> sho parameter recyclebin;NAME TYPEVALUE------------------------------------ ----------- ------------------------------recyclebin string...
View ArticleScript to build bind variables
-- Description: This script creates a file which can be executed in SQL*Plus. It creates bind variables,-- sets the bind variables to the values stored in V$SQL_PLAN.OTHER_XML, and then...
View ArticleChild process and all details of an sql
col sql_text for a60 wrapset verify offset pagesize 999set lines 155col username format a13col prog format a22col sid format 999col child_number format 99999 heading CHILDcol ocategory format a10col...
View ArticleMoves a SQL Profile from one statement to another
set sqlblanklines ondeclarear_profile_hints sys.sqlprof_attr;cl_sql_text clob;version varchar2(3);l_category varchar2(30);l_force_matching varchar2(3);b_force_matching boolean;begin select...
View ArticleScript to find the sql using profile
break on sql_id on sql_profile on sql_text skip 1set lines 165col sql_profile for a30col sql_text for a60 wrapset verify offset pagesize 999col username format a13col prog format a22col sid format...
View ArticleArticle 0
To Enable Server.log rotation in JBoss EAP 7.0 Standalone Mode.Step 1:Take a backup the standalone.xml file.Step 2:Comment the periodic-rotating-file-handler which is already existing in standalone.xml...
View ArticleArticle 5
Adopmon and Adopreports utility in R12.2.5adopmon utility in R12.2.5R12.2.5 provides a utility named adopmon to monitor the progress of adop session.The adopmon utility is useful both in following the...
View ArticleArticle 4
What happens during cutover phase of adop in R12.2Cutover phase of adop is downtime phase of Online patching cycle. We should ensure no user access is there in that period as application processes...
View ArticleDetermining the Optimal Undo Retention Period
Determining the Optimal Undo Retention Period:===================================You need to determine the optimal length of time for undo retention in your database.SolutionYou can specify the length...
View ArticleFinding What’s Consuming the Most Undo
Finding What’s Consuming the Most Undo:===============================Use the following query to find out which SQL statement has run for the longest time in your database.SQL> select s.sql_text...
View ArticleViewing an Alert Log from ADRCI
Viewing an Alert Log from ADRCI:==========================You want to view an alert log by using ADRCI commands.To view an alert log with ADRCI, follow these steps:Invoke ADRCI.$ adrciSet the ADR home...
View ArticleArticle 0
Control Admin Server and Managed Servers with Node manager and WLSTHere are the brief steps we need to follow.1. Start Node manager - startNodeManager()2. Connect to node manger -...
View Article