How to find ORACLE locked Objects?

Read more

3 ways to find second highest salary ORACLE SQL

Solution 1 : OR Solution 2 : Solution 3 : Read more

Display Image from Directory in ORACLE APEX

Display Image from Directory in ORACLE APEX. One of my colleague had asked to me, How can i display image in Interactive/Classic Report or Interactive Grid from Directory without storing image in table. I got a solution and going to... Read more

10 ways get Distinct/Unique record without using DISTINCT Oracle

How to get Distinct/Unique record without using DISTINCT SQL/Oracle? Solution 1 : Solution 2 : Solution 3 : Solution 4 : Solution 5 : Solution 6 : Solution 7 : Solution 8 : Solution 9 : Solution 10 : Read more

LAZY Loading Oracle APEX

Lazy Loading Specify whether to load the region independently of the data for the region. When lazy loading is specified, the page is rendered immediately, showing an empty region, until the data is loaded. Generally, the page is not displayed... Read more

Table Blob to Oracle Directory

How to save table images to oracle directory? Files from table to Oracle directory  How to Send all files in ZIP? You might Like: Read more

Oracle NULLIF() Function

Oracle NULLIF() Function: The Oracle NULLIF() function accepts only two arguments. If the both arguments are equal it returns a null value. In case the arguments are not equal, the NULLIF() function returns the first argument and if any arguments... Read more

3 Ways to Delete Duplicate Record From table in Oracle

How to delete duplicate record From table using SQL/Oracle? Solution 1 : Solution 2 : Solution 3 : You might also like Read more

3 Ways to Check Duplicate Record in table Oracle SQL

How to check duplicate record in table SQL/Oracle? Solution 1 : Solution 2 : Solution 3 : You might also like Read more

Oracle NVL2 Function

Oracle NVL2 Function: NVL2() function is an extend version of the NVL() function with different options based on whether a NULL value exists. Oracle NVL2() function allow three parameters. If the first parameter is not null, then it returns the... Read more