├── .gitignore ├── .project ├── LICENSE.txt ├── MSSQL ├── bcp.cmdline.formats.bat └── create_snomed_tables.sql ├── MySQL ├── README.md ├── create-database-mysql.sql ├── environment-mysql-template.sql ├── environment-mysql.sql ├── load-mysql-full-only.sql ├── load-mysql.sql ├── load_release.sh └── transitiveClosureRf2Snap_dbCompatible.pl ├── NEO4J ├── .gitignore ├── Readme.md ├── snomed_g_TC_tools.py ├── snomed_g_graphdb_build_tools.py ├── snomed_g_graphdb_cypher_add_assoc_refset.template ├── snomed_g_graphdb_cypher_create.template ├── snomed_g_graphdb_cypher_refset_assoc_create.template ├── snomed_g_graphdb_cypher_rmv_problem_edges.template ├── snomed_g_graphdb_cypher_update.template ├── snomed_g_graphdb_update_failure_check.cypher ├── snomed_g_graphdb_validate_tools.py ├── snomed_g_lib_neo4j.py ├── snomed_g_lib_rf2.py ├── snomed_g_neo4j_tools.py ├── snomed_g_rf2_tools.py ├── snomed_g_sqlite_tools.py ├── snomed_g_template_tools.py ├── snomed_g_version ├── snomed_lib.py └── snomedct_constants.py ├── PostgreSQL ├── README.md ├── Verhoeff.sql ├── create-database-postgres.sql ├── environment-postgresql.sql ├── indexing-postgres.sql ├── load-postgresql.sql └── load_release-postgresql.sh ├── README.md ├── mysql-loader-with-optimized-views ├── LICENSE.md ├── README.md ├── bash │ ├── snomed_config_mysql │ ├── snomed_load_mysql │ └── snomed_run_mysql ├── cnf │ ├── my_snomedimport_client.cnf │ ├── my_snomedserver.cnf │ └── ref_my_snomedserver.awk ├── lib │ ├── test.pl │ └── transitiveClosureRf2SnapMulti.pl ├── mysql_examples │ ├── DeltaWithPreviousStateExample.sql │ ├── SQL_Queries_Step_by_Step_Views │ │ ├── Description_Composite_View_Step_by_Step │ │ │ ├── 1b_Snapshot_and_Full_Synonyms.sql │ │ │ ├── Description_Composite_View_Step_by_Step_00.sql │ │ │ ├── Description_Composite_View_Step_by_Step_01.sql │ │ │ ├── Description_Composite_View_Step_by_Step_02.sql │ │ │ ├── Description_Composite_View_Step_by_Step_03.sql │ │ │ ├── Description_Composite_View_Step_by_Step_04.sql │ │ │ ├── Description_Composite_View_Step_by_Step_05.sql │ │ │ ├── Description_Composite_View_Step_by_Step_06.sql │ │ │ └── Description_Composite_View_Step_by_Step_07.sql │ │ ├── README.md │ │ └── Snapshot_View_Step_by_Step │ │ │ ├── Snapshot_View_Step_by_Step_00.sql │ │ │ ├── Snapshot_View_Step_by_Step_01.sql │ │ │ ├── Snapshot_View_Step_by_Step_02.sql │ │ │ ├── Snapshot_View_Step_by_Step_03.sql │ │ │ ├── Snapshot_View_Step_by_Step_04.sql │ │ │ ├── Snapshot_View_Step_by_Step_05.sql │ │ │ ├── Snapshot_View_Step_by_Step_06.sql │ │ │ └── Snapshot_View_Step_by_Step_07.sql │ ├── SQL_Queries_for_Webinar │ │ ├── 0_Imported_Table_and_View_Statistics.sql │ │ ├── 1a_Preferred_Term_from_tables.sql │ │ ├── 1b_Preferred_Term_from view.sql │ │ ├── 2_ECL_Simple.sql │ │ ├── 3_ECL_with_Refinement1.sql │ │ ├── 4_ECL_with_Refinement2.sql │ │ ├── 5_ECL_with_Refinement3.sql │ │ ├── 6_ECL_with_Refinement3_using_EclQuery.sql │ │ └── 7_Subtypes_of_two_concepts_using_intersection.sql │ ├── SQL_Queries_for_eBook │ │ ├── 01_Release_Types.sql │ │ ├── 02_Descriptions.sql │ │ ├── 03_Language_Preferences.sql │ │ ├── 04_Relationships.sql │ │ └── 05_Term_Searches.sql │ ├── conceptInactivations.sql │ ├── descriptionInactivations.sql │ ├── ecl_example1.sql │ ├── map_view.sql │ ├── search_example1.sql │ └── show_language_terms_for_concept.sql ├── mysql_load │ ├── sct_mysql_load_create_InternationalRF2.sql │ ├── sct_mysql_load_extend_GPFP.sql │ ├── sct_mysql_load_extend_GeneralDentistry.sql │ ├── sct_mysql_load_extend_ICNPInterventionsRelease.sql │ ├── sct_mysql_load_extend_LOINCRF2.sql │ ├── sct_mysql_load_extend_NursingActivities.sql │ ├── sct_mysql_load_extend_NursingHealthIssues.sql │ ├── sct_mysql_load_extend_Odontogram.sql │ ├── sct_mysql_load_extend_SpanishRelease-es.sql │ ├── sct_mysql_load_index_GeneralDentistry.sql │ ├── sct_mysql_load_index_InternationalRF2.sql │ ├── sct_mysql_load_index_LOINCRF2.sql │ ├── sct_mysql_load_update_InternationalRF2.sql │ └── sct_mysql_temp.sql └── win │ ├── my.ini │ ├── mysqlPath.cfg │ ├── perlPath.cfg │ ├── snomed_wconfig_mysql.bat │ ├── snomed_win_my.ini │ ├── snomed_wload_mysql.bat │ └── tabfile.tmp └── rf1 ├── .gitignore ├── README.md ├── rf1_environment_mysql.sql └── rf1_load_release.sh /.gitignore: -------------------------------------------------------------------------------- 1 | tmp* 2 | .project 3 | *.pyc 4 | .idea/ 5 | .DS_Store 6 | *.zip 7 | .vscode/settings.json 8 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/.project -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MSSQL/bcp.cmdline.formats.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MSSQL/bcp.cmdline.formats.bat -------------------------------------------------------------------------------- /MSSQL/create_snomed_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MSSQL/create_snomed_tables.sql -------------------------------------------------------------------------------- /MySQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MySQL/README.md -------------------------------------------------------------------------------- /MySQL/create-database-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MySQL/create-database-mysql.sql -------------------------------------------------------------------------------- /MySQL/environment-mysql-template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MySQL/environment-mysql-template.sql -------------------------------------------------------------------------------- /MySQL/environment-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MySQL/environment-mysql.sql -------------------------------------------------------------------------------- /MySQL/load-mysql-full-only.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MySQL/load-mysql-full-only.sql -------------------------------------------------------------------------------- /MySQL/load-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MySQL/load-mysql.sql -------------------------------------------------------------------------------- /MySQL/load_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MySQL/load_release.sh -------------------------------------------------------------------------------- /MySQL/transitiveClosureRf2Snap_dbCompatible.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/MySQL/transitiveClosureRf2Snap_dbCompatible.pl -------------------------------------------------------------------------------- /NEO4J/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.txt 3 | -------------------------------------------------------------------------------- /NEO4J/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/Readme.md -------------------------------------------------------------------------------- /NEO4J/snomed_g_TC_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_TC_tools.py -------------------------------------------------------------------------------- /NEO4J/snomed_g_graphdb_build_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_graphdb_build_tools.py -------------------------------------------------------------------------------- /NEO4J/snomed_g_graphdb_cypher_add_assoc_refset.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_graphdb_cypher_add_assoc_refset.template -------------------------------------------------------------------------------- /NEO4J/snomed_g_graphdb_cypher_create.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_graphdb_cypher_create.template -------------------------------------------------------------------------------- /NEO4J/snomed_g_graphdb_cypher_refset_assoc_create.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_graphdb_cypher_refset_assoc_create.template -------------------------------------------------------------------------------- /NEO4J/snomed_g_graphdb_cypher_rmv_problem_edges.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_graphdb_cypher_rmv_problem_edges.template -------------------------------------------------------------------------------- /NEO4J/snomed_g_graphdb_cypher_update.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_graphdb_cypher_update.template -------------------------------------------------------------------------------- /NEO4J/snomed_g_graphdb_update_failure_check.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_graphdb_update_failure_check.cypher -------------------------------------------------------------------------------- /NEO4J/snomed_g_graphdb_validate_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_graphdb_validate_tools.py -------------------------------------------------------------------------------- /NEO4J/snomed_g_lib_neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_lib_neo4j.py -------------------------------------------------------------------------------- /NEO4J/snomed_g_lib_rf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_lib_rf2.py -------------------------------------------------------------------------------- /NEO4J/snomed_g_neo4j_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_neo4j_tools.py -------------------------------------------------------------------------------- /NEO4J/snomed_g_rf2_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_rf2_tools.py -------------------------------------------------------------------------------- /NEO4J/snomed_g_sqlite_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_sqlite_tools.py -------------------------------------------------------------------------------- /NEO4J/snomed_g_template_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_template_tools.py -------------------------------------------------------------------------------- /NEO4J/snomed_g_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_g_version -------------------------------------------------------------------------------- /NEO4J/snomed_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomed_lib.py -------------------------------------------------------------------------------- /NEO4J/snomedct_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/NEO4J/snomedct_constants.py -------------------------------------------------------------------------------- /PostgreSQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/PostgreSQL/README.md -------------------------------------------------------------------------------- /PostgreSQL/Verhoeff.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/PostgreSQL/Verhoeff.sql -------------------------------------------------------------------------------- /PostgreSQL/create-database-postgres.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/PostgreSQL/create-database-postgres.sql -------------------------------------------------------------------------------- /PostgreSQL/environment-postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/PostgreSQL/environment-postgresql.sql -------------------------------------------------------------------------------- /PostgreSQL/indexing-postgres.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/PostgreSQL/indexing-postgres.sql -------------------------------------------------------------------------------- /PostgreSQL/load-postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/PostgreSQL/load-postgresql.sql -------------------------------------------------------------------------------- /PostgreSQL/load_release-postgresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/PostgreSQL/load_release-postgresql.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/README.md -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/LICENSE.md -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/README.md -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/bash/snomed_config_mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/bash/snomed_config_mysql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/bash/snomed_load_mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/bash/snomed_load_mysql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/bash/snomed_run_mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/bash/snomed_run_mysql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/cnf/my_snomedimport_client.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/cnf/my_snomedimport_client.cnf -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/cnf/my_snomedserver.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/cnf/my_snomedserver.cnf -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/cnf/ref_my_snomedserver.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/cnf/ref_my_snomedserver.awk -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/lib/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/lib/test.pl -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/lib/transitiveClosureRf2SnapMulti.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/lib/transitiveClosureRf2SnapMulti.pl -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/DeltaWithPreviousStateExample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/DeltaWithPreviousStateExample.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/1b_Snapshot_and_Full_Synonyms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/1b_Snapshot_and_Full_Synonyms.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_00.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_00.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_01.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_01.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_02.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_02.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_03.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_03.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_04.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_04.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_05.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_05.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_06.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_06.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_07.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Description_Composite_View_Step_by_Step/Description_Composite_View_Step_by_Step_07.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/README.md -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_00.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_00.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_01.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_01.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_02.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_02.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_03.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_03.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_04.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_04.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_05.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_05.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_06.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_06.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_07.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_Step_by_Step_Views/Snapshot_View_Step_by_Step/Snapshot_View_Step_by_Step_07.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/0_Imported_Table_and_View_Statistics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/0_Imported_Table_and_View_Statistics.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/1a_Preferred_Term_from_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/1a_Preferred_Term_from_tables.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/1b_Preferred_Term_from view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/1b_Preferred_Term_from view.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/2_ECL_Simple.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/2_ECL_Simple.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/3_ECL_with_Refinement1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/3_ECL_with_Refinement1.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/4_ECL_with_Refinement2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/4_ECL_with_Refinement2.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/5_ECL_with_Refinement3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/5_ECL_with_Refinement3.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/6_ECL_with_Refinement3_using_EclQuery.sql: -------------------------------------------------------------------------------- 1 | CALL `eclQuery`('<404684003:363698007=<<39057004,116676008=<<415582006'); 2 | -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/7_Subtypes_of_two_concepts_using_intersection.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_Webinar/7_Subtypes_of_two_concepts_using_intersection.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/01_Release_Types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/01_Release_Types.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/02_Descriptions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/02_Descriptions.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/03_Language_Preferences.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/03_Language_Preferences.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/04_Relationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/04_Relationships.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/05_Term_Searches.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/SQL_Queries_for_eBook/05_Term_Searches.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/conceptInactivations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/conceptInactivations.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/descriptionInactivations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/descriptionInactivations.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/ecl_example1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/ecl_example1.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/map_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/map_view.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/search_example1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/search_example1.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_examples/show_language_terms_for_concept.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_examples/show_language_terms_for_concept.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_create_InternationalRF2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_create_InternationalRF2.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_GPFP.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_GPFP.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_GeneralDentistry.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_GeneralDentistry.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_ICNPInterventionsRelease.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_ICNPInterventionsRelease.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_LOINCRF2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_LOINCRF2.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_NursingActivities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_NursingActivities.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_NursingHealthIssues.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_NursingHealthIssues.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_Odontogram.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_Odontogram.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_SpanishRelease-es.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_extend_SpanishRelease-es.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_index_GeneralDentistry.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_index_GeneralDentistry.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_index_InternationalRF2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_index_InternationalRF2.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_index_LOINCRF2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_index_LOINCRF2.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_update_InternationalRF2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_load_update_InternationalRF2.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/mysql_load/sct_mysql_temp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/mysql_load/sct_mysql_temp.sql -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/win/my.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/win/my.ini -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/win/mysqlPath.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/win/mysqlPath.cfg -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/win/perlPath.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/win/perlPath.cfg -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/win/snomed_wconfig_mysql.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/win/snomed_wconfig_mysql.bat -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/win/snomed_win_my.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/win/snomed_win_my.ini -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/win/snomed_wload_mysql.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/mysql-loader-with-optimized-views/win/snomed_wload_mysql.bat -------------------------------------------------------------------------------- /mysql-loader-with-optimized-views/win/tabfile.tmp: -------------------------------------------------------------------------------- 1 | TAB 2 | TAB -------------------------------------------------------------------------------- /rf1/.gitignore: -------------------------------------------------------------------------------- 1 | tmp* 2 | -------------------------------------------------------------------------------- /rf1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/rf1/README.md -------------------------------------------------------------------------------- /rf1/rf1_environment_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/rf1/rf1_environment_mysql.sql -------------------------------------------------------------------------------- /rf1/rf1_load_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rorydavidson/SNOMED-CT-Database/HEAD/rf1/rf1_load_release.sh --------------------------------------------------------------------------------