Why APEX Plugins?

Why APEX Plugins? Oracle application express or widely known as APEX is a great framework that comes up with endless possibilities. Forms, Reports flexible and responsible designs which help to…
Mega Menu Oracle APEX

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 Customizable Icons, Descriptions, and…
Table Blob to Oracle Directory

Table Blob to Oracle Directory

How to save table images to oracle directory? Files from table to Oracle directory Copy CodeCopiedUse a different BrowserDECLARE l_file UTL_FILE.file_type; l_buffer RAW (32767); l_amount BINARY_INTEGER := 32767; l_position INTEGER…

Coalesce in oracle

COALESCE returns first not null value out of all the parameters passed into this function. NOTE: All the parameters have been the same datatype Copy CodeCopiedUse a different BrowserDROP TABLE coalesce_func_test; CREATE…