OMOP/MySQL/README.md

23 lines
1018 B
Markdown
Raw Normal View History

2015-03-04 07:20:18 +00:00
Common-Data-Model / MySQL
2015-03-04 07:10:02 +00:00
=================
2015-03-04 07:20:18 +00:00
This folder contains the SQL scripts for MySQL. This was tested with MySQL v5.6.
Note: This was derived from the Postgres migration. Performance has not been tested.
2015-03-04 07:10:02 +00:00
In order to create your instantiation of the Common Data Model, we recommend following these steps:
1. Create an empty schema.
2. Execute the script `OMOP CDM ddl - MySQL.sql` to create the tables and fields.
3. Load your data into the schema.
2015-03-04 07:20:18 +00:00
4. Execute the script `OMOP CDM indexes required - MySQL.sql` to add the minimum set of indexes we recommend (required before fk creation in MySQL).
2015-03-04 07:10:02 +00:00
2015-03-04 07:20:18 +00:00
5. Execute the script `OMOP CDM constraints - MySQL.sql` to add the constraints (primary and foreign keys).
2015-03-04 07:10:02 +00:00
Note: you could also apply the constraints and/or the indexes before loading the data, but this will slow down the insertion of the data considerably.
2015-03-04 07:20:18 +00:00
Note: There is a possibility depending on configuration / foreign_key_check setting that one would need to load the data after schema creation.