We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This works on Linux (so also works on Windows WSL):
mdbtools
sqlite-tools
mdb-schema /path/to/ms-access.mdb > schema.sql sqlite3 /path/to/sqlite-copy.db < schema.sql for tbl in $(IFS=$'\n' mdb-tables -1 /path/to/ms-access.mdb); do { mdb-export /path/to/ms-access.mdb "$tbl" | \ sqlite-utils insert -c /path/to/sqlite-copy.db "$tbl" - ; } && echo "'$tbl' exported"; done
See SQLite import
INSTALL sqlite; ATTACH 'sqlite-copy.db' AS competes (TYPE sqlite); USE competes; SHOW TABLES;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Tasks
Export MS Access db to SQlite
This works on Linux (so also works on Windows WSL):
mdbtools
&sqlite-tools
(optional)Reading from DuckDB
See SQLite import
The text was updated successfully, but these errors were encountered: