SQL Queries

Wheebox Assessment tests (ORC-HCM) Query

Introduction: This SQL query is used to fetching the data for candidates who are applied various assessment tests (Wheebox)  at the time of recruiting like one candidate can apply two…

Read More

Query to get Data Accesses of Users – Oracle Fusion

Introduction: This blog has the SQL query that can be used to pull the data access details of all the users irrespective of their status. Cause of the issue: Business…

Read More

Sales Daily Pick Report

1.Overview This document talks about getting the sales daily stock pick report in oracle apps r12 2.Technologies and Tools Used The following technologies have been used to achieve the expected…

Read More

SQL Server installation Slipstream

                        Slipstream in SQL Server What is the slipstream how to use slipstream to install SQL server? Slipstream is a technique used by System Admins to easily update the setup packages…

Read More

How to uninstall patch

How to uninstall patch file when need to downgrade and remove it What is the patch file. RTM is the original build version of the product when you download the…

Read More

WHAT IS THE DIFFERENCE BETWEEN SRVCTL AND CRSCTL?

SERVER CONTROL UTILITY (SRVCTL) Server Control Utility (SRVCTL): It is used to administer Oracle Real Application Clusters (Oracle RAC) databases and instances. Use SRVCTL to manage Oracle supplied resources such as:…

Read More

How to run SQL tuning advisor manually in Oracle Database

Step 1:  Get the hash value of the SQL using the SQL ID. Enter the SQL ID select a.plan_hash_value from v$sql a where sql_id=’&a’;   Step 2: Create a tuning…

Read More

Fusion HCM Candidate Query

Introduction: This SQL query is used to fetching the data for candidates who are attended various assessment tests at the time of recruiting. In this assessment name is used as…

Read More

CREATE TABLE AS STATEMENT (by copying from existing table)

Use SQL CREATE TABLE AS statement to create a table from an existing table by copying the existing table’s columns. What happens to the METADATA and DATA when creating a…

Read More

19C LISTAGG DISTINCT

Overview The LISTAGG aggregate function now supports duplicate elimination by using the new DISTINCT keyword. The LISTAGG aggregate function orders the rows for each group in a query according to…

Read More