Oracle APEX Multi Language translation

How to translate Oracle APEX into Multi-Languages?  In application development, multilanguage translation is always a tedious job to accomplish. But when it comes to APEX is just like a couple of steps. Found Interesting? Let’s see….. How to pass the... Read more

NULL in ORACLE

NULL in Oracle NULL = NULL ? NULL_ NULL is NOT Equals to NULL COUNT with NULLs COUNT(A) 2 SUM with NULLs SUM(A) 12 LENGTH with NULLs SELECT LENGTH (NULL) len, 'LENGTH' FROM DUAL; LEN ‘LENGTH’ LENGTH Order by with... Read more

Cursors in PL/SQL

What is cursor: Pointer to the memory location where the information about sql stmt or DML statement got executed. There are two types of cursors − Implicit Cursor:= Any Select Stmt Or Any SQL Stmt Executed By Oracle Is Through Cursor And... Read more

How to Select All Records in Interactive Report Without Any Limitation

How to select all records in Interactive Report without any limitation Oracle APEX This approach can be used in case of when a single pagination has more than 50 records. <input type="checkbox" id="selectunselectall"> Name Select all Event Change Selection Type... Read more

How to Prevent Duplicate Row Interactive Gird Oracle Apex

Sometimes user wants to prevent duplicate row on that column where columns don’t have a unique Id or Primary key Identification. On those cases here, I have provided a solution which will definitely help you. Demo You might Like Read more

2 Ways to Make Column nowrap Interactive Report Oracle APEX

SOLUTION 1: Column Formatting => HTML Expression: <span style="white-space:nowrap;">#COLUMN_NAME#</span> SOLUTION 2: Define region Id “regionId” and Column id “HIRE_ID” after that use following CSS: #regionId th#HIRE_ID, #regionId td[headers=HIRE_ID]{min-width:100px} Read more

How to Parse JSON Using APEX Data Parser in Oracle?

How to Parse Json Using APEX Data Parser in Oracle? Sample JSON Parsing Query file_content holds the whole JSON data. Output  You might like Read more

How to Parse XML in Oracle

How to parse XML using APEX_DATA_PARSER?  Get the XML data. Parsing Query You might also like Read more

How to Generate XML in Oracle Using SQL

You might like Read more

APEX Data Parser – How to Parse XLSX and CSV

APEX Data Parser – How to Parse XLSX and CSV?  PARSE Function This is the main parser function. It allows to parse XML, XLSX, CSV or JSON files and returns a generic table of the following structure: Structure of parser... Read more