| 64 | This is beyond the scope of this page. In order to stop the UI from giving an error when you click on the root note, you can create the root node in the ontology table. |
| 65 | |
| 66 | {{{#!sql |
| 67 | |
| 68 | INSERT INTO {Ontology Name from [1]} |
| 69 | ([C_HLEVEL] |
| 70 | ,[C_FULLNAME] |
| 71 | ,[C_NAME] |
| 72 | ,[C_SYNONYM_CD] |
| 73 | ,[C_VISUALATTRIBUTES] |
| 74 | ,[C_TOTALNUM] |
| 75 | ,[C_BASECODE] |
| 76 | ,[C_METADATAXML] |
| 77 | ,[C_FACTTABLECOLUMN] |
| 78 | ,[C_TABLENAME] |
| 79 | ,[C_COLUMNNAME] |
| 80 | ,[C_COLUMNDATATYPE] |
| 81 | ,[C_OPERATOR] |
| 82 | ,[C_DIMCODE] |
| 83 | ,[C_COMMENT] |
| 84 | ,[C_TOOLTIP] |
| 85 | ,[UPDATE_DATE] |
| 86 | ,[DOWNLOAD_DATE] |
| 87 | ,[IMPORT_DATE] |
| 88 | ,[SOURCESYSTEM_CD] |
| 89 | ,[VALUETYPE_CD]) |
| 90 | VALUES |
| 91 | (0 |
| 92 | ,'{Base path for ontology [4]}' |
| 93 | ,'{Descriptive name for ontology [3]}' |
| 94 | ,'N' |
| 95 | ,'CA' |
| 96 | ,NULL |
| 97 | ,NULL |
| 98 | ,NULL |
| 99 | ,'concept_cd' |
| 100 | ,'concept_dimension' |
| 101 | ,'concept_path' |
| 102 | ,'N' |
| 103 | ,'LIKE' |
| 104 | ,'{Base path for ontology [4]}' |
| 105 | ,NULL |
| 106 | ,'{Descriptive name for ontology [3]}' |
| 107 | ,GETDATE() |
| 108 | ,NULL |
| 109 | ,NULL |
| 110 | ,'{A suitable source perhaps Ontology description from [3]}' |
| 111 | ,NULL) |
| 112 | GO |
| 113 | |
| 114 | }}} |