1. The creation scripts contained in the SNOMEDCT-AU_sample_scripts.zip file need to be executed in the following order:

mysql> source SNOMEDCT-AU_sample_scripts/schema/<release_type>/createReferenceSchema.sql

mysql> source SNOMEDCT-AU_sample_scripts/schema/<release_type>/importTables.sql

mysql> source SNOMEDCT-AU_sample_scripts/schema/<release_type>/createIndexes.sql

<release_type>= FULL or SNAPSHOT

2. The importTables.sql script contains relative paths to the RF2 files. 
Depending on the operating system and version of mysql, you may need to amend these and replace with the full path. 
For example:
release-files/RF2Release/Full/Terminology/sct2_Concept_Full_AU1000036_20150531.txt

changes to 

C:/Users/nehta/Downloads/release-files/RF2Release/Full/Terminology/sct2_Concept_Full_AU1000036_20150531.txt

3. The createTransitiveClosure_procedure.sql file creates a procedure, which upon execution creates the rf2_transitive_closure table and then populates it. Prior to running this script, please set the database schema as follows:

-- Set the database schema to owner of SCTAU tables
USE `sctau`;


