SharePlex tips
–setup shareplex steps1. install shareplex software at source and target2. startup shareplex at source and target3. stop post at target4. activate config config_file at source5. select current_scn from...
View ArticleHow to fix an “out of Sync”:repair table Shareplex replication in oracle...
How to fix an “out of Sync”:repair table Shareplex replication in oracle database==================================================please first note that we have SOURCE and TARGET i will provide...
View ArticleCreating a Swap File in OCI
To add a swap file:Determine the size of the new swap file in megabytes and multiply by 1024 to determine the number of blocks. For example, the block size of a 64 MB swap file is 65536.At a shell...
View ArticleServer login details like who and when logged in OCI server
Option 1: We shall schedule this periodically to get the report cat /var/log/secure* | grep AcceptedOption2:We shall use last or lastb command. This will give login and logout with time.
View ArticleRestricting access to su for group(dba) of users.
Providing su access to group of users in Oracle Cloud.Add below line in /etc/sudoers.d/90-cloud-init-users%dba ALL=(ALL) NOPASSWD: /bin/su – oracloudAnd then restart ssh daemon services#/sbin/service...
View ArticleTUNING SQL STATEMENTS USING SQL TUNING ADVISOR (WITHOUT ENTERPRISE MANAGER)
Below are the steps to use SQL Tuning Advisor for particular SQL.1) Create tuning task using SQL_ID2) Execute tuning task3) Generate report for the tuning taskSTEP 1:CREATE tuning tasks for SQL_ID...
View ArticleQuick installation of OCI client
Below command will quickly install all perl/python libraries along wit CLIsudo yum install gcc libffi-devel python-devel openssl-develsudo easy_install pipcurl -L...
View ArticleAttach block volume using ICSCI commands and create mount points in OCI
Attach created storage in new server using ISCSI commands:Verify storage attachment using fdiskfdisk –lCreate physical volumepvcreate /dev/sdbCreate volume groupVgcreate bvdemo /dev/sdbCreate logical...
View ArticleError in password verification for APPS
FNDCPASS error in R12 as below.[app***@yrdy-testapp ~]$ cat L6630162.log+---------------------------------------------------------------------------+Application Object Library: Version : 12.1Copyright...
View ArticleSOA certification import using keytool
1)Login as soauser and append below environment variables in .profileexport SOA_HOME=/DEVSOA/product/SOASuiteexport JAVA_HOME=$SOA_HOME/jdkexport...
View ArticleOracle Notification Troubleshooting in 3 steps
From the failed notification, determine the notification ID.Step 1:Use the notification ID to determine the context under which the API was calledselect substr(notification_id, 1, 12) nid,...
View ArticleArticle 1
Default Collation and PL/SQL PLS-00761: Program unit collation may only be USING_NLS_COMPOne of the new features that got introduced in Oracle Database 12.2 is the possibility to define the...
View ArticleArticle 0
MAX_STRING_SIZE Parameter In Oracle 12cThis parameter was introduced in Oracle 12c. MAX_STRING_SIZE controls the maximum size of string size in Oracle database.Either we can set it to STANDARD...
View ArticleVarious programs (like the AP Trial Balance and Invoice Register Report)...
Issue:Various programs (like the AP Trial Balance and Invoice Register Report) complete with a warning status. The log file shows the following error message:Beginning post-processing of request...
View ArticleA concurrent request fails to complete successfully due to a timeout caused...
ISSUE:A concurrent request fails to complete successfully due to a timeout caused by the Concurrent Processing integration with BI Publisher (formerly XML Publisher) functionalityError Message A...
View ArticleQuery to find list of users who modified the profile options
SELECT fpot.user_profile_option_name, profile_option_value, fpov.creation_date,fpov.last_update_date,fpov.creation_date - fpov.last_update_date "Change Date",(SELECT UNIQUE user_nameFROM...
View ArticleMoving objects from one tablespace to another
set serveroutput onset lines 300DECLARE V_CURRENT_TABLESPACE VARCHAR2(50); V_DEST_TABLESPACE VARCHAR2(50); V_SQL VARCHAR2(1000); V_OVERFLOW NUMBER := 0;BEGIN V_CURRENT_TABLESPACE :=...
View Articlestart and stop tracing script
# ################################################## Script to Enable tracing for an Oracle Session.## # ### ################################################## ############ Description:#...
View ArticleDBALAM
# ####################################################################################################################################################### Database Server Monitoring Script...
View ArticleScript to list all Installed Oracle Products
PAGER=moreif [ ! -d "${ORACLE_HOME}" ]; then print "ERROR: Oracle home not set." exit -1fiprint "Oracle Installed Products for ORACLE_HOME ${ORACLE_HOME}:"if [ -f "${ORACLE_HOME}/orainst/inspdver" ];...
View Article