I have a .parquet file incoming to my web server and I want to analyze it using duckdb. How do I save the .parquet file to the duckdb without saving the file to the disk first as I am quite limited in disk usage? Basically I am looking for the :memory: usage of duckdb and loading the data from memory too.
I have a .parquet file incoming to my web server and I want to analyze it using duckdb. How do I save the .parquet file to the duckdb without saving the file to the disk first as I am quite limited in disk usage? Basically I am looking for the
:memory:
usage of duckdb and loading the data from memory too.