simonw / db-to-sqlite

CLI tool for exporting tables or queries from any SQL database to a SQLite file
Apache License 2.0
368 stars 28 forks source link

Is it possible to skip tables if they do not exist? #52

Open jesus-hergueta opened 12 months ago

jesus-hergueta commented 12 months ago

I have the case where I run this CLI in batch in several databases with a list of tables I want to import. At the moment the tables I am pulling are in all the databases but now I need to pull some tables that are just in some of them.

Is possible to use a parameter or configuration in the CLI that allows me to "skip if does not exist"?

Thank you.