121 | | @Prefix VARCHAR(10), -- The prefix for the concept code, e.g. 'ONX' |
122 | | @OntologyDescription VARCHAR(100), -- A nice description, e.g. 'BRICCS Onyx Questionnaire' |
123 | | @OntologyBaseNode VARCHAR(50), -- The name of the base node of the tree within i2b2, e.g. 'Onyx' |
124 | | @SourceSystem VARCHAR(50), -- The system from where the data came, e.g. 'BRICCS Onyx' |
125 | | @MetaDatabaseName VARCHAR(50), -- The name of the Meta Database in which to create the Ontology, e.g. 'i2b2_b1_metadata' |
126 | | @DataDatabaseName VARCHAR(50) -- The name of the Data Database in which to create the Ontology, e.g. 'i2b2_b1_data' |
127 | | |
128 | | SET @OntologyName = 'TestCiviCRM' -- Must not contain spaces |
129 | | SET @Prefix = 'TestGenCV' |
130 | | SET @OntologyDescription = 'TestGenvasc Study Details from CiviCRM' |
131 | | SET @OntologyBaseNode = 'TestCiviCRM' |
132 | | SET @SourceSystem = 'TestGenvasc CiviCRM' |
133 | | SET @MetaDatabaseName = 'i2b2_b1_metadata' |
134 | | SET @DataDatabaseName = 'i2b2_b1_data' |
| 121 | @Prefix VARCHAR(10), -- The prefix for the concept code, e.g. 'ONX' |
| 122 | @OntologyDescription VARCHAR(100), -- A nice description, e.g. 'BRICCS Onyx Questionnaire' |
| 123 | @OntologyBaseNode VARCHAR(50), -- The name of the base node of the tree within i2b2, e.g. 'Onyx' |
| 124 | @SourceSystem VARCHAR(50), -- The system from where the data came, e.g. 'BRICCS Onyx' |
| 125 | @MetaDatabaseName VARCHAR(50), -- The name of the Meta Database in which to create the Ontology, e.g. 'i2b2_b1_metadata' |
| 126 | @DataDatabaseName VARCHAR(50) -- The name of the Data Database in which to create the Ontology, e.g. 'i2b2_b1_data' |
| 127 | |
| 128 | SET @OntologyName = 'PrimaryCareData' -- Must not contain spaces |
| 129 | SET @Prefix = 'PCD' |
| 130 | SET @OntologyDescription = 'Primary Care Data from GEM' |
| 131 | SET @OntologyBaseNode = 'PrimaryCareData' |
| 132 | SET @SourceSystem = 'Gem Risk Stratification' |
| 133 | SET @MetaDatabaseName = 'i2b2_app03_genvasc_MetaData' |
| 134 | SET @DataDatabaseName = 'i2b2_app03_genvasc_Data' |