Checking Socket and Servlet Mode
Using the below methods we can check whether the Oracle Forms server is running in servlet or socket mode.Oracle Applications Release 12Note Oracle Application Release 12 is, by default, configured to...
View ArticleManual cleanup of extract process from the database for Goldengate
When removing an extract process, it has to be first unregistered from the database.In this case, it was not unregistered properly, so we need to clear it manually.Please find the list of steps to do...
View ArticleHow to Find whether Application is Under Maintenance Mode from SQLPLUS
Query to know the status of maintenance mode:select fnd_profile.value('APPS_MAINTENANCE_MODE') from dual;IF THE STATUS“MAINT” = MAINTENANCE MODE HAS BEEN ENABLED AND THE USERS WILL NOT BE ABLE TO...
View ArticleDoes the Explain Plan command really show the execution plan that will be used?
Does the Explain Plan command really show the execution plan that will be used?When it comes to SQL tuning we often need to look at the execution plan for a SQL statement to determine where the...
View ArticleControlling where objects are populated into memory on RAC
Controlling where objects are populated into memory on RAC:One of the things I looked at was the new FOR SERVICE sub-clause of the INMEMORY DISTRIBUTE clause.ALTER TABLE customers INMEMORY PRIORITY...
View ArticleUsing DBMS_XPLAN.DISPLAY_CURSOR to examine Execution Plans
Using DBMS_XPLAN.DISPLAY_CURSOR to examine Execution Plans:If it is possible to get the same information from a traditional text based execution plan, as not everyone has access to SQL Monitor?”The...
View ArticleSQL Plan Management – Selective Automatic Plan Capture Now Available!
SQL Plan Management – Selective Automatic Plan Capture Now Available!Over the years, Oracle has provided a number of techniques to help you control the execution plan for a SQL statement, such as Store...
View ArticleHow to determine which view to use
How to determine which view to use:Often times DBAs or application architects create views to conceal complex joins or aggregations in order to help simplify the SQL queries developers need to write....
View ArticleArticle 9
Avoiding reparsing SQL queries due to partition level DDLs:A couple of weeks ago, I published a blog post that said specifying a partition name in the FROM clause of a query would prevent an existing...
View ArticleWorkflow queue rebuild
Login to Oracle applications as sysadmin and deactivate Workflow Service components Sysadmin [Symbol] System administrator [Symbol] Workflow [Symbol] Sitemap [Symbol] Click over Service Components...
View ArticleHow to Exclude Failure Notice/Any Pattern Emails from Processing in Oracle...
How to Exclude Failure Notice/Any Pattern Emails from Processing in Oracle Applications Workflow Outbound? Stop the workflow mailer. System Administrator [Symbol] Oracle Applications Manager [Symbol]...
View ArticleBring the power of Excel to Oracle EBS with Web ADI
Very often we come across business users keeping an Excel sheet beside them and keying in the data into Oracle EBS. If you ask them about automating the process, most often the alternate...
View ArticleImprove PL/SQL security in Oracle Database 12c.
Oracle Database 12c offers several enhancements to improve security in your PL/SQL program units. These features include the following:Code-based access control. Apply the “least privilege” principle...
View ArticleRow Movement
Do you expect Primary Keys to be updatable ? Some argue that Primary Key values should be immutable. The argument is that a Primary Key should not be modified.What about Partition Keys ? Would you...
View ArticleData Redaction in Oracle 12c
What is Data Redaction?Oracle Data Redaction is one of the new features introduced in Oracle Database 12c. This new feature is part of the Advanced Security option and enables the protection of data...
View ArticleScript to Diagnose adop and Other AD-TXK Issues in EBS R12.2
Section 1: OverviewThe diagnostic script described here is used to collect logs, configuration values, and other information that is typically required to identify the causes of issues with adop and...
View ArticleWhen attempting to run adop phase=prepare, the following error occurs.
When attempting to run adop phase=prepare, the following error occurs.[ERROR]: JDK TOP (or FMW JDK TOP) is not set up correctly.[WARNING]: There could be issues while validating the ports used for...
View Articleadpreclone.pl appsTier fails with error "ERROR: Script failed, exit code 255"...
perl adpreclone.pl appsTier fails with below errorSTART: Creating WLS config archive.Script Executed in 13125 milliseconds, returning status 255ERROR: Script failed, exit code 255Solution:cd...
View ArticleQuery to take CPU and MEMORY for a period in database
Please use the below query to get the output for a monthly CPU and memory.SELECT to_char(rollup_timestamp,'DD-MON-YY HH24') "Date", average "DB Memory Usage %"FROM MGMT\$METRIC_HOURLYWHERE target_name...
View ArticleQuery to get the session details for data pump jobs during export/import.
Please use the below query to get the session details for data pump jobs during export/import.select x.job_name,b.state,b.job_mode,b.degree, x.owner_name,z.sql_text, p.message, p.totalwork, p.sofar,...
View Article