Keeps source to target mappings between tables/fields when switching DB's (schema's)#74
Merged
schuemie merged 5 commits intoOHDSI:masterfrom Jun 10, 2015
marc-outins:issue_44
Merged
Keeps source to target mappings between tables/fields when switching DB's (schema's)#74schuemie merged 5 commits intoOHDSI:masterfrom marc-outins:issue_44
schuemie merged 5 commits intoOHDSI:masterfrom
marc-outins:issue_44
Conversation
added 5 commits
June 8, 2015 10:11
…name when switch databases (schemas) Allows mappings between source and target to stay when swapping schemas by matching the names of the old tables to the new tables and keeping any connections whose names match.
…ng databases Adds to #44 by keeping field to field mappings within table mappings (comments and logic text) when swapping between databases (schemas). It will keep mappings between schema's whose table names and field names match.
Updated ETL doc generator to display source and target Db (schema) name in the document title and images showing source to target mappings.
Adds "Load Custom" item to Edit > Set Target Database menu which lets the user select a custom schema .csv file to load for the target schema. The schema name used once the model is loaded comes from the filename of the loaded csv file. Refactors generateCDMModel code to use the more generic generateModelFromCSV code.
Renamed menu item to load custom target database from "Load Target" to "Load Custom..." and set to appear as last item in menu.
schuemie
added a commit
that referenced
this pull request
Jun 10, 2015
Keeps source to target mappings between tables/fields when switching DB's (schema's)
schuemie
added a commit
that referenced
this pull request
Nov 15, 2017
Keeps source to target mappings between tables/fields when switching DB's (schema's)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allows mappings between source and target to stay when swapping schema's by matching the names of the old tables/fields to the new tables/fields and keeping any connections whose names match.
Also allows user to load a custom target schema as a csv file by going to Edit > Set Target Database > Load Custom... .
The csv file must have the following columns:
This closes #44 and #23.