How to generate XML in Oracle using SQL? Ashish Sahay April 19, 2020 How to generate XML in Oracle using SQL? SELECT XMLELEMENT ("ROW", XMLFOREST (empno, ... Show More
Remove Special Character and Extra Space From a String ORACLE/PLSQL Vikas Pandey April 13, 2020 Remove Special Character and Extra Space From a String ORACLE/PLSQL Removing special character using REGEXP: SELECT REGEXP_REP... Show More
How to Remove New line from a String Using PL/SQL/ORACLE Vikas Pandey April 12, 2020 How to Remove New line from a String Using PL/SQL/ORACLE To Remove New line from the string: DECLARE p_sting VARCHAR2 (100):... Show More
Load image from oracle directory to table Anuj Kumar April 11, 2020 How to load images from oracle directory to table using BFILE ? 1. Create base64encode function CREATE OR REPLACE FUNCTI... Show More
Create folder using PLSQL in windows Anuj Kumar April 11, 2020 How to create folder using PLSQL in Windows? 1. First of all starts the OracleJobSchdulerXE service. 2. Find cmd.exe i... Show More