Cleaned data from the Cochrane schizophrenia database. High-level data model and migration process overview - OVERVIEW.md
- zip, mdbtools
- Docker, psql, pgAdmin (opt)
archive/clean/sql/database.sql
To run local Postgres server with the clean database:
bash scripts/serve.sh && bash scripts/deploy.sh
Postgres database postgres
will be available at localhost:15431
for user postgres
with no password. To start psql shell:
psql -p 15431 -h localhost -U postgres postgres
bash scripts/serve.sh
bash scripts/dirty/convert.sh
bash scripts/dirty/import.sh
bash scripts/dirty/export.sh
Artifacts will be in the archive/dirty
dir.
For example sql dump - archive/dirty/sql/database.zip
bash scripts/clean/import.sh
bash scripts/clean/export.sh
Artifacts will be in the archive/clean
dir.
For example sql dump - archive/clean/sql/database.sql
bash scripts/clean/convert.sh