Dynamic position Navigation Menu Oracle APEX

Dynamic position navigation menu As a developer we know how to change the Navigation menu position. We have access to change the navigation menu position but when it comes to user then there is hard and forced fixed menu position... Read more

Interactive Grid Checkbox

Referred from John’s cookbook sample app. Checkboxes are little bit tricky and difficult. I was trying to implement it for long time but it’s bit problematic than i thought. After John Snyders cookbook update for 19.2 things are very easy. I would... Read more

Mega Menu Oracle APEX

Mega Menu is collapsible floating panel which displays navigation entries at once. It enables users to reduce number of clicks to navigate. Features of Mega Menu How to create? Mega menu can use the exiting menu list like Desktop Navigation... 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

Oracle NULL-Related Functions

Oracle NULL-Related Functions. There are different type of null related function in oracle. Read more

Oracle NVL Function

The NVL function allows you to replace null values with a default values. If the first parameter is null, the function returns the second parameter. If the first parameter has some value then always return the first value. Note:= NVL... Read more