Changes between Version 15 and Version 16 of i2b2 HowTo Create an Ontology


Ignore:
Timestamp:
01/13/16 12:26:47 (8 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • i2b2 HowTo Create an Ontology

    v15 v16  
    66
    771. Log into the server `UHLSQLBRICCSDB\UHLBRICCSDB` and database `i2b2ClinDataIntegration`
    8 2. Execute the stored procedure `[dbo].[CreateEmptyOntology](@OntologyName, @Prefix, @SourceSystem, @OntologyBaseNode, @OntologyDescription)`
     82. Execute the stored procedure `[dbo].[CreateEmptyOntology] @OntologyName, @Prefix, @SourceSystem, @OntologyBaseNode, @OntologyDescription`
    99 - Where:
    1010  - `@OntologyName` is the name of the ontology and must not contain spaces, e.g., 'EMISPrimaryCareData'
     
    1313  - `@OntologyBaseNode` is the name of the root node for the ontology, e.g., 'EMISPrimaryCareData'
    1414  - `@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 ontology
     153. Execute the stored procedure `[dbo].[CreateOntologyInStudy] @OntologyID, @MetaDatabaseName, @DataDatabaseName` for each project that requires the ontology
    1616 - Where:
    1717  - `@OntologyID` is the ID returned by the previous stored procedure.