Is there a way for me to export my entire D1 to a file/something so I can put it into reporting tool
Is there a way for me to export my entire D1 to a file/something so I can put it into reporting tools like PowerBI etc?
wrangler d1 backup create xxx gives me the error Experimental DBs do not support backups yet
meta object from your query, it will include the duration that D1 actually took to execute your query.wrangler d1 info <database_name>) - if it's in a different region to you, and you're making multiple calls, it'll be pretty slow due to the network round-trip time.
SELECT datetime('now', 'utc') with and without --local — I'll get different results.
wrangler.toml to help with the translation of binding to DB id, but it wouldn't update the bindings when you deploy your project.package.json there is a command "pages:dev": "npx wrangler pages dev .vercel/output/static --compatibility-date=2023-12-06 --compatibility-flag=nodejs_compat" 



wrangler.toml file in a Pages project, and if I have a local DB, a preview DB and a production DB (all three are different)... is the best way to simply update wrangler.toml to reference the different DBs each time?my-preview-db with ID 123, run the migration. Update it to my-production-db with ID 456, run the migration again, or is there a better way?preview_database_id field... but the docs say to set that to DB for local development, so presumably I can't use that? (or I can... but then local wouldn't work wrangler d1 backup create xxxExperimental DBs do not support backups yetwrangler d1 info <database_name>SELECT datetime('now', 'utc') "pages:dev": "npx wrangler pages dev .vercel/output/static --compatibility-date=2023-12-06 --compatibility-flag=nodejs_compat"my-preview-dbmy-production-db456