Hi,
The stored procedure [COLUMN_DEPENDENCIES](https://community.denodo.com/docs/html/browse/8.0/en/vdp/vql/stored_procedures/predefined_stored_procedures/column_dependencies) requires one input parameter as the view name. To get all the columns with a field expression, I would use the Scheduler to create a VDP job and set the parameterized query in the [extraction section](https://community.denodo.com/docs/html/browse/8.0/en/scheduler/administration/creating_and_scheduling_jobs/configuring_new_jobs/vdp_extraction_section#) to
SELECT viewname, columnname, expression FROM COLUMN_DEPENDENCIES () WHERE inputviewdatabasename = 'database' AND inputviewname = '@viewslist' AND expression IS NOT NULL;
and I set the non-parameterized query from a VDP data source to
SELECT DISTINCT viewname AS viewslist FROM CATALOG_VDP_METADATA_VIEWS () WHERE inputdatabasename = 'database';
and exported the results to a csv or any of the available options in the [export section](https://community.denodo.com/docs/html/browse/8.0/en/scheduler/administration/creating_and_scheduling_jobs/configuring_new_jobs/postprocessing_section_exporters) of the job.
Hope this helps!