View or edit on GitHub
This page is synchronized from doc/DuckDB.md. Last modified on 2025-12-09 00:30 CET by Trase Admin.
Please view or edit the original file there; changes should be reflected here after a midnight build (CET time),
or manually triggering it with a GitHub action (link).
DuckDB
It can be useful to have DuckDB automatically run some common commands on startup.
To do this, create a file ~/.duckdbrc with the following:
-- load spatial extension so that we can read Excel files
INSTALL spatial;
LOAD spatial;
-- load AWS credentials to read and write from S3
CALL load_aws_credentials();