Changes between Version 15 and Version 16 of i2b2 HowTo Create an Ontology
- Timestamp:
- 01/13/16 12:26:47 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
i2b2 HowTo Create an Ontology
v15 v16 6 6 7 7 1. Log into the server `UHLSQLBRICCSDB\UHLBRICCSDB` and database `i2b2ClinDataIntegration` 8 2. Execute the stored procedure `[dbo].[CreateEmptyOntology] (@OntologyName, @Prefix, @SourceSystem, @OntologyBaseNode, @OntologyDescription)`8 2. Execute the stored procedure `[dbo].[CreateEmptyOntology] @OntologyName, @Prefix, @SourceSystem, @OntologyBaseNode, @OntologyDescription` 9 9 - Where: 10 10 - `@OntologyName` is the name of the ontology and must not contain spaces, e.g., 'EMISPrimaryCareData' … … 13 13 - `@OntologyBaseNode` is the name of the root node for the ontology, e.g., 'EMISPrimaryCareData' 14 14 - `@OntologyDescription` is a short description of the ontology, e.g., 'EMIS Primary Care Data from GEM' 15 3. Execute the stored procedure `[dbo].[CreateOntologyInStudy] (@OntologyID, @MetaDatabaseName, @DataDatabaseName)` for each project that requires the ontology15 3. Execute the stored procedure `[dbo].[CreateOntologyInStudy] @OntologyID, @MetaDatabaseName, @DataDatabaseName` for each project that requires the ontology 16 16 - Where: 17 17 - `@OntologyID` is the ID returned by the previous stored procedure.