I'm trying to export data from my vertica DB to my laptop's local storage. Is this possible?
When I tried the directory = 'C:/Downloads' it showed dir not found error.
What's the alternative to directly retrieve data to local in parquet?
Doc for reference : https://www.vertica.com/docs/9.3.x/HTML/Content/Authoring/SQLReferenceManual/Statements/EXPORTTOPARQUET.htm
EXPORT TO PARQUET(directory = 'hdfs:///user3/data')
OVER(ORDER BY col1) AS SELECT col1 + col1 AS A, col2
FROM public.T3;