Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joundso/ms-access-to-csv-converter
Convert MS Access Databases (*.accdb) to csv files using Docker
https://github.com/joundso/ms-access-to-csv-converter
Last synced: about 1 month ago
JSON representation
Convert MS Access Databases (*.accdb) to csv files using Docker
- Host: GitHub
- URL: https://github.com/joundso/ms-access-to-csv-converter
- Owner: joundso
- License: gpl-3.0
- Created: 2021-04-14T04:41:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-07T07:23:51.000Z (4 months ago)
- Last Synced: 2024-09-07T08:37:04.011Z (4 months ago)
- Language: Dockerfile
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Convert Microsoft Access Database files to csv files
## Usage
1. Copy your access database (witch file type `.accdb`) to the `./in/` folder and name it `db.accdb`.
2. Run `docker-compose up`.
3. The resulting csv files (one csv per table contained in the input-file) are available in `/out/`.```sh
docker run --rm -it \
-v /data/:/data/ ghcr.io/joundso/ms-access-to-csv-converter:v1.0.0 \
convert \
--output-format=csv \
/path/to/db.accdb /path/to/ouput
```## Background information
:warning: Do use with care if you handle sensible information in the database!
> When processing a database, the database is first sent to the secure RebaseData servers which then return the converted data.
Source: [GitHub Repo of the converter](https://github.com/rebasedata/java-client)
The tool used to convert the database is copied from here: . For further information see this page.