-
Notifications
You must be signed in to change notification settings - Fork 72
/
load-mysql.sql
281 lines (221 loc) · 7.74 KB
/
load-mysql.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/* loads the SNOMED CT 'Full', 'Snapshot' and 'Delta' release - replace filenames with relevant locations of base SNOMED CT release files*/
/* Filenames may need to change depending on the release you wish to upload, currently set to July 2014 release */
/* * * * * FULL * * * * */
load data local
infile 'RF2Release/Full/Terminology/sct2_Concept_Full_INT_20180131.txt'
into table concept_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Terminology/sct2_Description_Full-en_INT_20180131.txt'
into table description_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Terminology/sct2_TextDefinition_Full-en_INT_20180131.txt'
into table textdefinition_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Terminology/sct2_Relationship_Full_INT_20180131.txt'
into table relationship_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Terminology/sct2_StatedRelationship_Full_INT_20180131.txt'
into table stated_relationship_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Refset/Language/der2_cRefset_LanguageFull-en_INT_20180131.txt'
into table langrefset_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Refset/Content/der2_cRefset_AssociationFull_INT_20180131.txt'
into table associationrefset_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Refset/Content/der2_cRefset_AttributeValueFull_INT_20180131.txt'
into table attributevaluerefset_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Refset/Map/der2_sRefset_SimpleMapFull_INT_20180131.txt'
into table simplemaprefset_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Refset/Content/der2_Refset_SimpleFull_INT_20180131.txt'
into table simplerefset_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Refset/Map/der2_iissscRefset_ComplexMapFull_INT_20180131.txt'
into table complexmaprefset_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Full/Refset/Map/der2_iisssccRefset_ExtendedMapFull_INT_20180131.txt'
into table extendedmaprefset_f
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
/* * * * * Snapshot * * * * */
load data local
infile 'RF2Release/Snapshot/Terminology/sct2_Concept_Snapshot_INT_20180131.txt'
into table concept_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Terminology/sct2_Description_Snapshot-en_INT_20180131.txt'
into table description_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Terminology/sct2_TextDefinition_Snapshot-en_INT_20180131.txt'
into table textdefinition_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Terminology/sct2_Relationship_Snapshot_INT_20180131.txt'
into table relationship_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Terminology/sct2_StatedRelationship_Snapshot_INT_20180131.txt'
into table stated_relationship_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Refset/Language/der2_cRefset_LanguageSnapshot-en_INT_20180131.txt'
into table langrefset_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Refset/Content/der2_cRefset_AssociationSnapshot_INT_20180131.txt'
into table associationrefset_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Refset/Content/der2_cRefset_AttributeValueSnapshot_INT_20180131.txt'
into table attributevaluerefset_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Refset/Map/der2_sRefset_SimpleMapSnapshot_INT_20180131.txt'
into table simplemaprefset_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Refset/Content/der2_Refset_SimpleSnapshot_INT_20180131.txt'
into table simplerefset_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Refset/Map/der2_iissscRefset_ComplexMapSnapshot_INT_20180131.txt'
into table complexmaprefset_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Snapshot/Refset/Map/der2_iisssccRefset_ExtendedMapSnapshot_INT_20180131.txt'
into table extendedmaprefset_s
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
/* * * * * Delta * * * * */
load data local
infile 'RF2Release/Delta/Terminology/sct2_Concept_Delta_INT_20180131.txt'
into table concept_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Terminology/sct2_Description_Delta-en_INT_20180131.txt'
into table description_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Terminology/sct2_TextDefinition_Delta-en_INT_20180131.txt'
into table textdefinition_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Terminology/sct2_Relationship_Delta_INT_20180131.txt'
into table relationship_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Terminology/sct2_StatedRelationship_Delta_INT_20180131.txt'
into table stated_relationship_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Refset/Language/der2_cRefset_LanguageDelta-en_INT_20180131.txt'
into table langrefset_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Refset/Content/der2_cRefset_AssociationDelta_INT_20180131.txt'
into table associationrefset_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Refset/Content/der2_cRefset_AttributeValueDelta_INT_20180131.txt'
into table attributevaluerefset_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Refset/Map/der2_sRefset_SimpleMapDelta_INT_20180131.txt'
into table simplemaprefset_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Refset/Content/der2_Refset_SimpleDelta_INT_20180131.txt'
into table simplerefset_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Refset/Map/der2_iissscRefset_ComplexMapDelta_INT_20180131.txt'
into table complexmaprefset_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;
load data local
infile 'RF2Release/Delta/Refset/Map/der2_iisssccRefset_ExtendedMapDelta_INT_20180131.txt'
into table extendedmaprefset_d
columns terminated by '\t'
lines terminated by '\r\n'
ignore 1 lines;