Oracle DB: Install APEX 4.2

Here is how to install APEX 4.2 on Oracle 11g:Download Apex 4.0.2:http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.htmlin C:\apps\ApexDownload Apex Listener:http://www.oracle.com/technetwork/developer-tools/apex-listener/downloads/index.htmlin C:\apps\Apex_ListenerMake a shortcut to SQL Plus 11:C:\Oracle\product\11.2.0\dbhome_1\BIN\sqlplus.exe /nolognamed: Apex SQL Plus 11 wirh working directory…

Continue ReadingOracle DB: Install APEX 4.2

Oracle PL/SQL: Read just one column from SYS_REFCURSOR using XML transformation

Using XML transformation in a cursor in Oracle PL/SQL, we can fetch just one column of the recordset returned back by a SYS_REFCURSOR:declare    the_sys_refcursor               sys_Refcursor;     P_Return_Set_O                  sys_Refcursor;      p_column_name                  …

Continue ReadingOracle PL/SQL: Read just one column from SYS_REFCURSOR using XML transformation