Skip to content
Advertisement

Oracle APEX – Download hidden SQL query into CSV

I am trying to create a button on a page in my application that will download the full table I am referencing as a CSV file. I cannot use interactive reports > actions > download CSV because the interactive reports have hidden columns. I need all columns to populate in the CSV file.

Is there a way to create a SQL Script and reference it in the button?

I have already tried the steps referenced in this link: Oracle APEX – Export a query into CSV using a button but it does not help as my queries will contain columns that are hidden in the Interactive Report.

Advertisement

Answer

Welcome to StackOverflow!

One flexible option would be to use an application process, to be defined in the shared components (process point = ajax callback). Something like this:

This is the function fClobToBlob:

On the page, you need to set your button action to “Redirect to Page in this Application”, the target Page to “0”. Under “Advanced”, set Request to “APPLICATION_PROCESS=downloadCSV”, where downloadCSV is the name of your application process.

If you need to parameterize your process, you can do this by accessing page items or application items in your application process.

Generating the CSV data can be cumbersome, but there are several packages out there that make it easier. The alexandria packages are one of them: https://github.com/mortenbra/alexandria-plsql-utils

An example on how to use the CSV Package is here: https://github.com/mortenbra/alexandria-plsql-utils/blob/master/demos/csv_util_pkg_demo.sql

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement