White Space is not allowed Get link Facebook X Pinterest Email Other Apps June 20, 2019 I had to replace REGEXP_REPLACE to regular REPLACE like below. Code: REPLACE(v_value, '&', '&'||'amp;'); I found the solution from this link. https://cloudcustomerconnect.oracle.com/posts/8e55f4748c Read more
How to extract PLSQL query data to an Excel file from Oracle Database Get link Facebook X Pinterest Email Other Apps March 15, 2019 DECLARE output utl_file.file_type; v_data varchar2(20000); v_file_path varchar2(100); BEGIN output := utl_file.fopen('/data/test/DEV/excel' ,'Test.xls' ,'w' ,32000); owa_sylk.show(p_file => output ,p_query => 'SELECT msi.organization_id ... Read more