-
Notifications
You must be signed in to change notification settings - Fork 1
/
Generate Doctor Who Database.sql
1376 lines (1340 loc) · 171 KB
/
Generate Doctor Who Database.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
USE [master]
GO
-- create the database needed
CREATE DATABASE [DoctorWho]
GO
USE [DoctorWho]
GO
/****** Object: UserDefinedFunction [dbo].[fnCompanions] Script Date: 12/05/2015 11:50:57 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- create table of authors of episodes
CREATE TABLE [dbo].[tblAuthor](
[AuthorId] [int] IDENTITY(1,1) NOT NULL,
[AuthorName] [nvarchar](50) NULL,
CONSTRAINT [PK_tblAuthor] PRIMARY KEY CLUSTERED
(
[AuthorId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
-- create table of companions of Dr Who
CREATE TABLE [dbo].[tblCompanion](
[CompanionId] [int] IDENTITY(1,1) NOT NULL,
[CompanionName] [nvarchar](50) NOT NULL,
[WhoPlayed] [nvarchar](50) NULL,
CONSTRAINT [PK_tblCompanion] PRIMARY KEY CLUSTERED
(
[CompanionId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
-- create table of Dr Who's
CREATE TABLE [dbo].[tblDoctor](
[DoctorId] [int] IDENTITY(1,1) NOT NULL,
[DoctorNumber] [int] NULL,
[DoctorName] [nvarchar](50) NULL,
[BirthDate] [date] NULL,
[FirstEpisodeDate] [date] NULL,
[LastEpisodeDate] [date] NULL,
CONSTRAINT [PK_tblDoctor] PRIMARY KEY CLUSTERED
(
[DoctorId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
-- create table of enemies of the Doctor
CREATE TABLE [dbo].[tblEnemy](
[EnemyId] [int] IDENTITY(1,1) NOT NULL,
[EnemyName] [nvarchar](100) NULL,
[Description] [nvarchar](255) NULL,
CONSTRAINT [PK_tblEnemy] PRIMARY KEY CLUSTERED
(
[EnemyId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
-- create table of the episodes
CREATE TABLE [dbo].[tblEpisode](
[EpisodeId] [int] IDENTITY(1,1) NOT NULL,
[SeriesNumber] [int] NULL,
[EpisodeNumber] [int] NULL,
[EpisodeType] [nvarchar](50) NULL,
[Title] [nvarchar](255) NULL,
[EpisodeDate] [date] NULL,
[AuthorId] [int] NULL,
[DoctorId] [int] NULL,
[Notes] [nvarchar](255) NULL,
CONSTRAINT [PK_tblEpisode] PRIMARY KEY CLUSTERED
(
[EpisodeId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
-- create table of which companions were in which episodes
CREATE TABLE [dbo].[tblEpisodeCompanion](
[EpisodeCompanionId] [int] IDENTITY(1,1) NOT NULL,
[EpisodeId] [int] NULL,
[CompanionId] [int] NULL,
CONSTRAINT [PK_tblEpisodeCompanion] PRIMARY KEY CLUSTERED
(
[EpisodeCompanionId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
-- create table of which enemies were in which episodes
CREATE TABLE [dbo].[tblEpisodeEnemy](
[EpisodeEnemyId] [int] IDENTITY(1,1) NOT NULL,
[EpisodeId] [int] NULL,
[EnemyId] [int] NULL,
CONSTRAINT [PK_tbEpisodeEnemy] PRIMARY KEY CLUSTERED
(
[EpisodeEnemyId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
-- add in the authors
SET IDENTITY_INSERT [dbo].[tblAuthor] ON
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (1, N'Chris Chibnall')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (2, N'Gareth Roberts')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (3, N'Helen Raynor')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (4, N'James Moran')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (5, N'James Strong')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (6, N'Jamie Matheson')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (7, N'Keith Temple')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (8, N'Mark Gatiss')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (9, N'Matt Jones')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (10, N'Matthew Graham')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (11, N'Neil Cross')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (12, N'Neil Gaiman')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (13, N'Paul Cornell')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (14, N'Peter Harness')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (15, N'Phil Ford')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (16, N'Richard Curtis')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (17, N'Robert Shearman')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (18, N'Russell T. Davies')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (19, N'Simon Nye')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (20, N'Stephen Greenhorn')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (21, N'Steve Thompson')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (22, N'Steven Moffat')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (23, N'Toby Whithouse')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (24, N'Tom MacRae')
GO
INSERT [dbo].[tblAuthor] ([AuthorId], [AuthorName]) VALUES (25, N'Frank Cottrell Boyce')
GO
SET IDENTITY_INSERT [dbo].[tblAuthor] OFF
GO
-- add in the companions
SET IDENTITY_INSERT [dbo].[tblCompanion] ON
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (1, N'River Song', N'Alex Kingston')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (2, N'Rory Williams', N'Arthur Darvill')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (3, N'Wilfred Mott', N'Bernard Cribbins')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (4, N'Rose Tyler', N'Billie Piper')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (5, N'Adam Mitchell', N'Bruno Langley')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (6, N'Donna Noble', N'Catherine Tate')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (7, N'Jackson Lake', N'David Morrissey')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (8, N'Sarah Jane Smith', N'Elisabeth Sladen')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (9, N'Martha Jones', N'Freema Agyeman')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (10, N'Craig Owens', N'James Corden')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (11, N'Clara Oswald', N'Jenna Coleman')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (12, N'Jack Harkness', N'John Barrowman')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (13, N'Amy Pond', N'Karen Gillan')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (14, N'Astrid Peth', N'Kylie Minogue')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (15, N'Adelaide Brooke', N'Lindsay Duncan')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (16, N'Lady Christina de Souza', N'Michelle Ryan')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (17, N'Mickey Smith', N'Noel Clarke')
GO
INSERT [dbo].[tblCompanion] ([CompanionId], [CompanionName], [WhoPlayed]) VALUES (18, N'Rosita Farisi', N'Velle Tshabalala')
GO
SET IDENTITY_INSERT [dbo].[tblCompanion] OFF
GO
-- add in the doctors
SET IDENTITY_INSERT [dbo].[tblDoctor] ON
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (1, 9, N'Christopher Eccleston', CAST(0xD8F00A00 AS Date), CAST(0x7E2B0B00 AS Date), CAST(0xD22B0B00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (2, 6, N'Colin Baker', CAST(0x52D30A00 AS Date), CAST(0x7E0D0B00 AS Date), CAST(0x61110B00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (3, 10, N'David Tennant', CAST(0x12FB0A00 AS Date), CAST(0xD22B0B00 AS Date), CAST(0x4C320B00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (4, 3, N'Jon Pertwee', CAST(0xDE3F0B00 AS Date), CAST(0x3CF90A00 AS Date), CAST(0x8DFF0A00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (5, 11, N'Matt Smith', CAST(0x850B0B00 AS Date), CAST(0x4C320B00 AS Date), CAST(0xFA370B00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (6, 2, N'Patrick Troughton', CAST(0x37B20A00 AS Date), CAST(0xB2F40A00 AS Date), CAST(0x78F80A00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (7, 8, N'Paul McGann', CAST(0xC5EA0A00 AS Date), CAST(0xE51E0B00 AS Date), CAST(0xE51E0B00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (8, 12, N'Peter Capaldi', CAST(0x82E80A00 AS Date), CAST(0xFA370B00 AS Date), NULL)
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (9, 5, N'Peter Davison', CAST(0x84DE0A00 AS Date), CAST(0x3B090B00 AS Date), CAST(0x7E0D0B00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (10, 7, N'Sylvester McCoy', CAST(0x9BD30A00 AS Date), CAST(0x74120B00 AS Date), CAST(0xA9150B00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (11, 4, N'Tom Baker', CAST(0xF0C50A00 AS Date), CAST(0x8DFF0A00 AS Date), CAST(0x3B090B00 AS Date))
GO
INSERT [dbo].[tblDoctor] ([DoctorId], [DoctorNumber], [DoctorName], [BirthDate], [FirstEpisodeDate], [LastEpisodeDate]) VALUES (12, 1, N'William Hartnell', CAST(0x782F0B00 AS Date), CAST(0x83F00A00 AS Date), CAST(0xB2F40A00 AS Date))
GO
SET IDENTITY_INSERT [dbo].[tblDoctor] OFF
GO
-- add in the enemies
SET IDENTITY_INSERT [dbo].[tblEnemy] ON
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (1, N'The Autons', N'Murderous mannequins')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (2, N'Lady Cassandra', N'The last living human being')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (3, N'The Gelth', N'An alien species comprised of gas')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (4, N'The Slitheen', N'A baby-faced alien family')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (5, N'Daleks', N'Armoured aliens')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (6, N'Jagrafess', N'A hideous, giant slug-like creature')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (7, N'Reapers', N'Winged reptile-like creatures')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (8, N'The empty child', N'A by-product of a dead four-year-old child')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (9, N'The Sycorax', N'An alien race wearing bone-like masks')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (10, N'Face of Boe', N'A gigantic humanoid head')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (11, N'Sisters of Plenitude', N'A humanoid feline race, also known as "Catkind"')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (12, N'Werewolf', N'A werewolf moster')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (13, N'Krillitanes', N'Carnivorous, winged bat-like creatures')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (14, N'Clockwork Droids', N'Repair droids wearing scary masks')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (15, N'Cybermen', N'Cyborg race')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (16, N'The Wire', N'An alien lifeform of pure energy, taking human female form')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (17, N'The Ood', N'Aliens with tentacled faces carrying translation spheres')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (18, N'The Beast', N'Gigantic monster claiming to be Satan')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (19, N'The Abzorbaloff', N'Obese alien which absorbs victims through touch')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (20, N'Isolus', N'Alien resembling a small white flower, which will do anything not to be alone')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (21, N'Roboforms', N'Robots disguised as Santas')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (22, N'The empress of the Racnoss', N'The empress of a half-human, half arachnid race called the Racnoss')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (23, N'The Judoon', N'Galactic stormtroopers resembling rhinoceroses')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (24, N'Plasmavores', N'Blood-sucking aliens disguised as humans')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (25, N'The Carrionites', N'Witch-like beings')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (26, N'The Macra', N'Giant crab-like creatures living under a motorway')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (27, N'Lazarus', N'Large creature needing to absorb human energy')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (28, N'Scarecrows', N'Scarecrows brought to life by the Family of Blood')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (29, N'Weeping angels', N'Stone angels which kill when you stop looking at them')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (30, N'Futurekind', N'Humanoid race with large pointed teeth from the distant future')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (31, N'The Toclafane', N'Cyborgs from the distant future integrated into metallic spheres')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (32, N'The Master', N'A renegade Time Lord, the arch-enemy of Dr. Who')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (33, N'The Host', N'Golden robotic angels controlled by Max Capricorn')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (34, N'Max Capricorn', N'A cyborg head in a box')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (35, N'Adipose', N'Small creatures created from excess human fat')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (36, N'Pyroviles', N'Creatures constructed from volcanic magma')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (37, N'The Sontaran', N'Milatristic aliens with squat features and strange ears')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (38, N'The Hath', N'Fish-faced aliens')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (39, N'The Vespiform', N'Wasp-like aliens')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (40, N'Vashta Nerada', N'Microscopic carnivorous aliens')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (41, N'The Time Beetle', N'Beetle feeding off time energy which alters time')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (42, N'Davros', N'Creator of the Daleks')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (43, N'Prisoner Zero', N'A snake-like shape-shifting alien')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (44, N'The Atraxi', N'Giant eyeballs which act as a galactic police force')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (45, N'Smilers', N'Androids indicating danger according to which way they face')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (46, N'Saturnynian', N'Sea-dwelling aliens which change the perception of people looking at them')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (47, N'Eknodine', N'Aliens hiding inside humans which attack by making them emit a green stalk')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (48, N'Silurians', N'Lizard like creatures with green scaly skins')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (49, N'Krafayis', N'Invisible bird-like creature')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (50, N'Sky shark', N'A flying shark')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (51, N'The Silence', N'Aliens who make you forget they existed the moment you stop looking at them')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (52, N'The Siren', N'A virtual doctor disguised as a beautiful female')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (53, N'House', N'A green entity which feeds on TARDIS')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (54, N'Gangers', N'Clones created from living flesh, which can be manipulated into any creature')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (55, N'Headless Monks', N'Headless monks armed with energy blades')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (56, N'The Teselecta', N'A shape-shifting robot that travels in time to right past wrongs')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (57, N'Peg Dolls', N'Peg dolls which can transfom humans into one of their own')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (58, N'Handbots', N'Medical robots whose heads contain a concealed weapon')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (59, N'The Minotaur', N'A monster which feeds off the faith of victims')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (60, N'Solomon', N'A humanoid controlling the Silurians')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (61, N'Kahler-Tek', N'A Cyborg soldier, also known as "The Gunslinger"')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (62, N'Kahler-Jex', N'An alien doctor with a unique facial marking')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (63, N'The Shakri', N'Bald, decrepit-looking humanoids with a thing for cubes and the number seven')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (64, N'The Great Intelligence', N'Disembodied being trying to find a body, whose proper name is Yog-Sothoth')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (65, N'The Snowmen', N'Snowmen with psychic properties who attack people')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (66, N'Akhaten', N'A parasitic, sentient planet feeding on the souls of its inhabitants')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (67, N'Skaldak', N'An ice warrior')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (68, N'Time Zombies', N'Distorted future versions of the Doctor and associates')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (69, N'Mister Sweet', N'Also known as the crismon horror, a species of red leech')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (70, N'Winifred Gillyflower', N'A chemist who created Mister Sweet')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (71, N'Mr. Clever', N'An entity which tries to overtake the Doctor''s mind')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (72, N'Zygons', N'Reddish humanoids with cone-shaped heads, covered in suckers')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (73, N'The Sheriff of Nottingham', N'A cyborg posing as the real Sheriff')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (74, N'Ms Delphox', N'A clone heading a bank')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (75, N'Skovox Blitzer', N'A robot built for war')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (76, N'Foretold', N'An ancient soldier kept alive by technology')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (77, N'Gus', N'A computer trying to take control of the Foretold')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (78, N'Boneless', N'Two-dimensional shape-shifting creatures which can reduce others to 2D')
GO
INSERT [dbo].[tblEnemy] ([EnemyId], [EnemyName], [Description]) VALUES (79, N'Dream crabs', N'Predators resembling human hands which work by telepathy, properly called Kantrofarri')
GO
SET IDENTITY_INSERT [dbo].[tblEnemy] OFF
GO
-- add the episodes
SET IDENTITY_INSERT [dbo].[tblEpisode] ON
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (1, 1, 1, N'Normal episode', N'Rose', CAST(0x7E2B0B00 AS Date), 18, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (2, 1, 2, N'Normal episode', N'The End of the World', CAST(0x852B0B00 AS Date), 18, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (3, 1, 3, N'Normal episode', N'The Unquiet Dead', CAST(0x8C2B0B00 AS Date), 18, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (4, 1, 4, N'Normal episode', N'Aliens of London (Part 1)', CAST(0x932B0B00 AS Date), 18, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (5, 1, 5, N'Normal episode', N'World War Three (Part 2)', CAST(0x9A2B0B00 AS Date), 18, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (6, 1, 6, N'Normal episode', N'Dalek', CAST(0xA12B0B00 AS Date), 17, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (7, 1, 7, N'Normal episode', N'The Long Game', CAST(0xA82B0B00 AS Date), 18, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (8, 1, 8, N'Normal episode', N'Father''s Day', CAST(0xAF2B0B00 AS Date), 13, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (9, 1, 9, N'Normal episode', N'The Empty Child (Part 1)', CAST(0xB62B0B00 AS Date), 22, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (10, 1, 10, N'Normal episode', N'The Doctor Dances (Part 2)', CAST(0xBD2B0B00 AS Date), 22, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (11, 1, 11, N'Normal episode', N'Boom Town', CAST(0xC42B0B00 AS Date), 18, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (12, 1, 12, N'Normal episode', N'Bad Wolf (Part 1)', CAST(0xCB2B0B00 AS Date), 18, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (13, 1, 13, N'Normal episode', N'The Parting of the Ways (Part 2)', CAST(0xD22B0B00 AS Date), 18, 1, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (14, 2, NULL, N'Christmas special', N'The Christmas Invasion', CAST(0x902C0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (15, 2, 1, N'Normal episode', N'New Earth', CAST(0xFF2C0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (16, 2, 2, N'Normal episode', N'Tooth and Claw', CAST(0x062D0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (17, 2, 3, N'Normal episode', N'School Reunion', CAST(0x0D2D0B00 AS Date), 23, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (18, 2, 4, N'Normal episode', N'The Girl in the Fireplace', CAST(0x142D0B00 AS Date), 22, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (19, 2, 5, N'Normal episode', N'Rise of the Cybermen (Part 1)', CAST(0x1B2D0B00 AS Date), 24, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (20, 2, 6, N'Normal episode', N'The Age of Steel (Part 2)', CAST(0x222D0B00 AS Date), 24, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (21, 2, 7, N'Normal episode', N'The Idiot''s Lantern', CAST(0x292D0B00 AS Date), 8, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (22, 2, 8, N'Normal episode', N'The Impossible Planet (Part 1)', CAST(0x302D0B00 AS Date), 9, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (23, 2, 9, N'Normal episode', N'The Satan Pit (Part 2)', CAST(0x372D0B00 AS Date), 9, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (24, 2, 10, N'Normal episode', N'Love & Monsters', CAST(0x3E2D0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (25, 2, 11, N'Normal episode', N'Fear Her', CAST(0x452D0B00 AS Date), 10, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (26, 2, 12, N'Normal episode', N'Army of Ghosts (Part 1)', CAST(0x4C2D0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (27, 2, 13, N'Normal episode', N'Doomsday (Part 2)', CAST(0x532D0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (28, 3, NULL, N'Christmas special', N'The Runaway Bride', CAST(0xFD2D0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (29, 3, 1, N'Normal episode', N'Smith and Jones', CAST(0x5D2E0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (30, 3, 2, N'Normal episode', N'The Shakespeare Code', CAST(0x642E0B00 AS Date), 2, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (31, 3, 3, N'Normal episode', N'Gridlock', CAST(0x6B2E0B00 AS Date), 18, 3, N'Guest appearance by Ardal O''Hanlon
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (32, 3, 4, N'Normal episode', N'Daleks in Manhattan (Part 1)', CAST(0x722E0B00 AS Date), 5, 3, N'Technically monster is a human-dalek hybrid
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (33, 3, 5, N'Normal episode', N'Evolution of the Daleks (Part 2)', CAST(0x792E0B00 AS Date), 5, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (34, 3, 6, N'Normal episode', N'The Lazarus Experiment', CAST(0x802E0B00 AS Date), 20, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (35, 3, 7, N'Normal episode', N'42', CAST(0x8E2E0B00 AS Date), 1, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (36, 3, 8, N'Normal episode', N'Human Nature (Part 1)', CAST(0x952E0B00 AS Date), 13, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (37, 3, 9, N'Normal episode', N'The Family of Blood (Part 2)', CAST(0x9C2E0B00 AS Date), 13, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (38, 3, 10, N'Normal episode', N'Blink', CAST(0xA32E0B00 AS Date), 22, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (39, 3, 11, N'Normal episode', N'Utopia (Part 1)', CAST(0xAA2E0B00 AS Date), 18, 3, N'Guest appearance by Derek Jacobi
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (40, 3, 12, N'Normal episode', N'The Sound of Drums (Part 2)', CAST(0xB12E0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (41, 3, 13, N'Normal episode', N'Last of the Time Lords (Part 3)', CAST(0xB82E0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (42, 4, NULL, N'Christmas special', N'Voyage of the Damned', CAST(0x6A2F0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (43, 4, 1, N'Normal episode', N'Partners in Crime', CAST(0xD02F0B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (44, 4, 2, N'Normal episode', N'The Fires of Pompeii', CAST(0xD72F0B00 AS Date), 4, 3, N'Both Peter Capaldi and Karen Gillan play characters in this episode (future Doctor and companion)
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (45, 4, 3, N'Normal episode', N'Planet of the Ood', CAST(0xDE2F0B00 AS Date), 7, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (46, 4, 4, N'Normal episode', N'The Sontaran Stratagem (Part 1)', CAST(0xE52F0B00 AS Date), 3, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (47, 4, 5, N'Normal episode', N'The Poison Sky (Part 2)', CAST(0xEC2F0B00 AS Date), 3, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (48, 4, 6, N'Normal episode', N'The Doctor''s Daughter', CAST(0xF32F0B00 AS Date), 20, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (49, 4, 7, N'Normal episode', N'The Unicorn and the Wasp', CAST(0xFA2F0B00 AS Date), 2, 3, N'Felicity Kendal guest stars
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (50, 4, 8, N'Normal episode', N'Silence in the Library (Part 1)', CAST(0x08300B00 AS Date), 22, 3, N'Count the shadows …
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (51, 4, 9, N'Normal episode', N'Forest of the Dead (Part 2)', CAST(0x0F300B00 AS Date), 22, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (52, 4, 10, N'Normal episode', N'Midnight', CAST(0x16300B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (53, 4, 11, N'Normal episode', N'Turn Left', CAST(0x1D300B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (54, 4, 12, N'Normal episode', N'The Stolen Earth (Part 1)', CAST(0x24300B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (55, 4, 13, N'Normal episode', N'Journey''s End (Part 2)', CAST(0x2B300B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (56, 4, NULL, N'Christmas special', N'The Next Doctor', CAST(0xD8300B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (57, 4, NULL, N'Easter special', N'Planet of the Dead', CAST(0x43310B00 AS Date), 2, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (58, 4, NULL, N'Autumn special', N'The Waters of Mars', CAST(0x1D320B00 AS Date), 15, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (59, 4, NULL, N'Christmas special', N'The End of Time (Part 1)', CAST(0x45320B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (60, 4, NULL, N'Christmas special', N'The End of Time (Part 2)', CAST(0x4C320B00 AS Date), 18, 3, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (61, 5, 1, N'Normal episode', N'The Eleventh Hour', CAST(0xA8320B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (62, 5, 2, N'Normal episode', N'The Beast Below', CAST(0xAF320B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (63, 5, 3, N'Normal episode', N'Victory of the Daleks', CAST(0xB6320B00 AS Date), 8, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (64, 5, 4, N'Normal episode', N'The Time of Angels (Part 1)', CAST(0xBD320B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (65, 5, 5, N'Normal episode', N'Flesh and Stone (Part 2)', CAST(0xC4320B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (66, 5, 6, N'Normal episode', N'The Vampires of Venice', CAST(0xCB320B00 AS Date), 23, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (67, 5, 7, N'Normal episode', N'Amy''s Choice', CAST(0xD2320B00 AS Date), 19, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (68, 5, 8, N'Normal episode', N'The Hungry Earth (Part 1)', CAST(0xD9320B00 AS Date), 1, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (69, 5, 9, N'Normal episode', N'Cold Blood (Part 2)', CAST(0xE0320B00 AS Date), 1, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (70, 5, 10, N'Normal episode', N'Vincent and the Doctor', CAST(0xE7320B00 AS Date), 16, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (71, 5, 11, N'Normal episode', N'The Lodger', CAST(0xEE320B00 AS Date), 2, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (72, 5, 12, N'Normal episode', N'The Pandorica Opens (Part 1)', CAST(0xF5320B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (73, 5, 13, N'Normal episode', N'The Big Bang (Part 2)', CAST(0xFC320B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (74, 6, NULL, N'Christmas special', N'A Christmas Carol', CAST(0xB2330B00 AS Date), 22, 5, N'Michael Gambon guest stars
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (75, 6, 1, N'Normal episode', N'The Impossible Astronaut (Part 1)', CAST(0x29340B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (76, 6, 2, N'Normal episode', N'Day of the Moon (Part 2)', CAST(0x30340B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (77, 6, 3, N'Normal episode', N'The Curse of the Black Spot', CAST(0x37340B00 AS Date), 21, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (78, 6, 4, N'Normal episode', N'The Doctor''s Wife', CAST(0x3E340B00 AS Date), 12, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (79, 6, 5, N'Normal episode', N'The Rebel Flesh (Part 1)', CAST(0x45340B00 AS Date), 10, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (80, 6, 6, N'Normal episode', N'The Almost People (Part 2)', CAST(0x4C340B00 AS Date), 10, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (81, 6, 7, N'Normal episode', N'A Good Man Goes to War', CAST(0x53340B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (82, 6, 8, N'Normal episode', N'Let''s Kill Hitler', CAST(0xA7340B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (83, 6, 9, N'Normal episode', N'Night Terrors', CAST(0xAE340B00 AS Date), 8, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (84, 6, 10, N'Normal episode', N'The Girl Who Waited', CAST(0xB5340B00 AS Date), 24, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (85, 6, 11, N'Normal episode', N'The God Complex', CAST(0xBC340B00 AS Date), 23, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (86, 6, 12, N'Normal episode', N'Closing Time', CAST(0xC3340B00 AS Date), 2, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (87, 6, 13, N'Normal episode', N'The Wedding of River Song', CAST(0xCA340B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (88, 7, NULL, N'Christmas special', N'The Doctor, the Widow and the Wardrobe', CAST(0x1F350B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (89, 7, 1, N'Normal episode', N'Asylum of the Daleks', CAST(0x1A360B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (90, 7, 2, N'Normal episode', N'Dinosaurs on a Spaceship', CAST(0x21360B00 AS Date), 1, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (91, 7, 3, N'Normal episode', N'A Town Called Mercy', CAST(0x28360B00 AS Date), 23, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (92, 7, 4, N'Normal episode', N'The Power of Three', CAST(0x2F360B00 AS Date), 1, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (93, 7, 5, N'Normal episode', N'The Angels Take Manhattan', CAST(0x36360B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (94, 7, NULL, N'Christmas special', N'The Snowmen', CAST(0x8D360B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (95, 7, 6, N'Normal episode', N'The Bells of Saint John', CAST(0xEC360B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (96, 7, 7, N'Normal episode', N'The Rings of Akhaten', CAST(0xF3360B00 AS Date), 11, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (97, 7, 8, N'Normal episode', N'Cold War', CAST(0xFA360B00 AS Date), 8, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (98, 7, 9, N'Normal episode', N'Hide', CAST(0x01370B00 AS Date), 11, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (99, 7, 10, N'Normal episode', N'Journey to the Centre of the TARDIS', CAST(0x08370B00 AS Date), 21, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (100, 7, 11, N'Normal episode', N'The Crimson Horror', CAST(0x0F370B00 AS Date), 8, 5, N'Diana Rigg plays the main baddie in this episode
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (101, 7, 12, N'Normal episode', N'Nightmare in Silver', CAST(0x16370B00 AS Date), 12, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (102, 7, 13, N'Normal episode', N'The Name of the Doctor', CAST(0x1D370B00 AS Date), 22, 5, N'Features cameo appearances from all of the previous doctors
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (103, 8, NULL, N'50th anniversary specia', N'The Day of the Doctor', CAST(0xDA370B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (104, 8, NULL, N'Christmas special', N'The Time of the Doctor', CAST(0xFA370B00 AS Date), 22, 5, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (105, 8, 1, N'Normal episode', N'Deep Breath', CAST(0xEB380B00 AS Date), 22, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (106, 8, 2, N'Normal episode', N'Into the Dalek', CAST(0xF2380B00 AS Date), 22, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (107, 8, 3, N'Normal episode', N'Robot of Sherwood', CAST(0xF9380B00 AS Date), 8, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (108, 8, 4, N'Normal episode', N'Listen', CAST(0x00390B00 AS Date), 22, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (109, 8, 5, N'Normal episode', N'Time Heist', CAST(0x07390B00 AS Date), 21, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (110, 8, 6, N'Normal episode', N'The Caretaker', CAST(0x0E390B00 AS Date), 2, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (111, 8, 7, N'Normal episode', N'Kill the Moon', CAST(0x15390B00 AS Date), 14, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (112, 8, 8, N'Normal episode', N'Mummy on the Orient Express', CAST(0x1C390B00 AS Date), 6, 8, N'John Sessions was the voice actor for this episode
')
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (113, 8, 9, N'Normal episode', N'Flatline', CAST(0x23390B00 AS Date), 6, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (114, 8, 10, N'Normal episode', N'In the Forest of the Night', CAST(0x2A390B00 AS Date), 25, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (115, 8, 11, N'Normal episode', N'Dark Water (Part 1)', CAST(0x31390B00 AS Date), 22, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (116, 8, 12, N'Normal episode', N'Death in Heaven (Part 2)', CAST(0x38390B00 AS Date), 22, 8, NULL)
GO
INSERT [dbo].[tblEpisode] ([EpisodeId], [SeriesNumber], [EpisodeNumber], [EpisodeType], [Title], [EpisodeDate], [AuthorId], [DoctorId], [Notes]) VALUES (117, 9, NULL, N'Christmas special', N'Last Christmas', CAST(0x67390B00 AS Date), 22, 8, NULL)
GO
SET IDENTITY_INSERT [dbo].[tblEpisode] OFF
GO
-- add which companions were in which episodes
SET IDENTITY_INSERT [dbo].[tblEpisodeCompanion] ON
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (1, 1, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (2, 2, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (3, 3, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (4, 4, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (5, 5, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (6, 6, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (7, 7, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (8, 8, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (9, 9, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (10, 10, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (11, 11, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (12, 12, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (13, 13, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (14, 14, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (15, 15, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (16, 16, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (17, 17, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (18, 18, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (19, 19, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (20, 20, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (21, 21, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (22, 22, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (23, 23, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (24, 24, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (25, 25, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (26, 26, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (27, 27, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (28, 28, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (29, 29, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (30, 30, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (31, 31, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (32, 32, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (33, 33, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (34, 34, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (35, 35, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (36, 36, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (37, 37, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (38, 38, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (39, 39, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (40, 40, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (41, 41, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (42, 42, 14)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (43, 43, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (44, 44, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (45, 45, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (46, 46, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (47, 47, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (48, 48, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (49, 49, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (50, 50, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (51, 51, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (52, 52, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (53, 53, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (54, 54, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (55, 55, 6)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (56, 56, 7)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (57, 57, 16)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (58, 58, 15)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (59, 59, 3)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (60, 60, 3)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (61, 61, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (62, 62, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (63, 63, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (64, 64, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (65, 65, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (66, 66, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (67, 67, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (68, 68, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (69, 69, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (70, 70, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (71, 71, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (72, 72, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (73, 73, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (74, 74, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (75, 75, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (76, 76, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (77, 77, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (78, 78, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (79, 79, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (80, 80, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (81, 81, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (82, 82, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (83, 83, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (84, 84, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (85, 85, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (86, 86, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (87, 87, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (88, 88, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (89, 89, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (90, 90, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (91, 91, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (92, 92, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (93, 93, 13)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (94, 94, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (95, 95, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (96, 96, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (97, 97, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (98, 98, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (99, 99, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (100, 100, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (101, 101, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (102, 102, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (103, 103, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (104, 104, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (105, 105, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (106, 106, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (107, 107, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (108, 108, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (109, 109, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (110, 110, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (111, 111, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (112, 112, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (113, 113, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (114, 114, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (115, 115, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (116, 116, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (117, 117, 11)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (118, 6, 5)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (119, 7, 5)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (120, 9, 12)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (121, 10, 12)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (122, 11, 12)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (123, 12, 12)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (124, 13, 12)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (125, 17, 17)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (126, 18, 17)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (127, 19, 17)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (128, 20, 17)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (129, 39, 12)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (130, 40, 12)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (131, 41, 12)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (132, 43, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (133, 46, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (134, 47, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (135, 48, 9)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (136, 50, 1)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (137, 51, 1)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (138, 52, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (139, 53, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (140, 54, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (141, 55, 4)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (142, 56, 18)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (143, 61, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (144, 64, 1)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (145, 65, 1)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (146, 66, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (147, 67, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (148, 68, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (149, 69, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (150, 71, 10)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (151, 72, 1)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (152, 73, 1)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (153, 74, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (154, 75, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (155, 76, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (156, 77, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (157, 78, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (158, 79, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (159, 80, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (160, 81, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (161, 82, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (162, 83, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (163, 84, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (164, 85, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (165, 86, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (166, 87, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (167, 88, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (168, 89, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (169, 90, 2)
GO
INSERT [dbo].[tblEpisodeCompanion] ([EpisodeCompanionId], [EpisodeId], [CompanionId]) VALUES (170, 91, 2)
GO