-
Notifications
You must be signed in to change notification settings - Fork 0
/
8.Onboarding_InsertData.sql
1992 lines (1965 loc) · 140 KB
/
8.Onboarding_InsertData.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
Set Serveroutput on;
Begin
--Admin data
pkg_Insert_Data.Proc_Insert_Admin(1234,'Course_Admin');
--select * from admin;
-- Department Data(100 to 108)
pkg_Insert_Data.insert_dept(dept_seq.NEXTVAL, 'College of Engineering');
pkg_Insert_Data.insert_dept(dept_seq.NEXTVAL, 'College of Science');
pkg_Insert_Data.insert_dept(dept_seq.NEXTVAL, 'College of Professional Studies');
pkg_Insert_Data.insert_dept(dept_seq.NEXTVAL, 'College of Law');
pkg_Insert_Data.insert_dept(dept_seq.NEXTVAL, 'College of Arts');
pkg_Insert_Data.insert_dept(dept_seq.NEXTVAL, 'College of Computer Science');
pkg_Insert_Data.insert_dept(dept_seq.NEXTVAL, 'College of Health Sciences');
pkg_Insert_Data.insert_dept(dept_seq.NEXTVAL, 'College of Social Science and Humainties');
pkg_Insert_Data.insert_dept(dept_seq.NEXTVAL, 'College of Business');
-- Program Data (200 to 217)
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 100, 'Master of Information Systems');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 100, 'Master of Civil Engineering');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 101, 'Master of Applied Mathematics');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 101, 'Master of Applied Physics and Engineering');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 102, 'Master of Analytics');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 102, 'Master of Applied Machine Intelligence');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 103, 'Master of Legal Studies');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 103, 'Master of Media Advocacy');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 104, 'Master of Journalism');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 105, 'Master of Science in Computer Science');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 104, 'Master of Urban Planning and Policy');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 105, 'Master of Science in Data Sciencce');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 106, 'Master of Science in Apploied Behavior Analysis');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 106, 'Master of Science in Applied Psychology');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 107, 'Master of Economics');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 107, 'Master of English');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 108, 'Master of Science in Finance');
pkg_Insert_Data.insert_program(Prog_Seq.Nextval, 108, 'Master of Science in Accounting');
--course data(300 to 353)
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,200, 'Application Design', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,200, 'Database Design', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,200, 'Agile Development', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,201, 'Design and Development of Modern Infrastructures', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,201, 'Advance Soil Mechanics', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,201, 'Construction Equipments and Modeling', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,202, 'Supply Chain Engineering', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,202, 'Simulation Analysis', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,202, 'Human Factors Engineering', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,203, 'Chemical Engineering Kinetics', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,203, 'Electrochemical Engineering', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,203, 'Biochemical Engineering', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,204, 'Biomedical Imaging', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,204, 'Biomedical Optics', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,204, 'Design of Implants', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 205, 'Numerical Analysis', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 205, 'Optimization and Complexity', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,205, 'Graph Theory', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 206, 'Electromagnetic Theory', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 206, 'Statistical Physics', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,206, 'Computational Physics', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 207, 'Bioinformatics Programming', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 207, 'Information Design and Visual Analytics', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,207, 'Collecting,Storing and Retriving Data', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 208, 'Glycobiology', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 208, 'Glycoprotein Analysis', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,208, 'Chemical Safety', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 209, 'Molecular Biology', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 209, 'Enzymology', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,209, 'Metabolism', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 210, 'Biology of Corals', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 210, 'Biology and Ecology of Fishes', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,210, 'Ocean and Costal Processes', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 211, 'Genes and Genomes', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 211, 'Cell Biology', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,211, 'Biostatistics', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 212, 'Astrophysics and Cosmology', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 212, 'Particle Physics', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,212, 'Condensed Matter Physics', 4);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 213, 'Predictive Analysis', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 213, 'Data Mining Applications', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,213, 'Risk Management for Analytics', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 214, 'Advanced Analytical Utilization', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 214, 'Finance Information Processing', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,214, 'AI communication and Visualization', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 215, 'Animation Basics', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 215, '3D Modeling', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,215, 'Character Animation', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 216, 'Nutrition Education', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 216, 'Pediatric Nutrition', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,216, 'Sports and Fitness Nutrition', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 217, 'Asset and Liability Management', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval, 217, 'Financial Ethics', 3);
pkg_Insert_Data.Insert_Course(Course_Seq.nextval,217, 'Investment Analysis', 3);
-- Country Data(700 to 712)
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'INDIA');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'USA');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'UK');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'CHINA');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'AUSTRALIA');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'PAKISTAN');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'SOUTH AFRICA');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'UAE');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'SRI LANKA');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'SOUTH KOREA');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'SINGAPORE');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'NIGERIA');
pkg_Insert_Data.Insert_Country(Country_Seq.nextval,'JAPAN');
-- State data(600 to 620)
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Haryana',700);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Texas',701);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Punjab',700);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'New York',701);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Uttar Pradesh',700);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Massachusetts',701);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'karnataka',700);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'New Jersey',701);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Tamil Nadu',700);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'virginia',701);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Telangana',700);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Alaska',701);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Maharashtra',700);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Florida',701);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'England',702);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Scotland',702);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Queensland',704);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'New South wales',704);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Balochistan',705);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Western Cape',706);
pkg_Insert_Data.Insert_STATE(State_Seq.nextval,'Northern Cape',706);
-- City data(9000 to 9039)
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Panipat',600);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Gurugram',600);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Dallas',601);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Austin',601);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Ludhiana',602);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Amritsar',602);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Albany',603);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Amsterdam',603);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Moradabad',604);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Lucknow',604);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Boston',605);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Salem',605);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Bengaluru',606);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Udupi',606);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Newark',607);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Jersey City',607);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Chennai',608);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Vellore',608);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Norfolk',609);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Hampton',609);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Hyderabad',610);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Medak',610);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Adak',611);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Akiak',611);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Mumbai',612);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Pune',612);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Miami',613);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Tampa',613);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Hampshire',614);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Berkshire',614);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Highland',615);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Brisbane',616);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Sydney',617);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Dubbo',617);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Quetta',618);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Chaman',618);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Cape Town',619);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Paarl',619);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Kuruman',620);
pkg_Insert_Data.Insert_City(City_Seq.nextval,'Springbok',620);
-- Adddress data(8000 to 8154)
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'3337 Petterle Drive','APT350',9000,250047);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'7427 Carioca Street','APT351',9000,250048);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'09 Coleman Park','APT352',9000,250049);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'5196 Anzinger Crossing','APT353',9000,250050);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'22 Aberg Drive','APT354',9000,250051);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'492 5th Alley','APT355',9000,250052);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'9100 Monument Point','APT356',9000,250053);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'00829 Hallows Lane','APT357',9001,250054);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'83 Duke Point','APT358',9001,250055);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'971 Lawn Crossing','APT359',9001,250056);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'3187 West Pass','APT360',9001,250057);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'0 Crownhardt Center','APT361',9002,250058);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'85688 Bashford Court','APT362',9002,250059);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'9 Sullivan Lane','HOUSE NO363',9002,250060);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'350 Nelson Way','HOUSE NO364',9003,250061);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'04650 Esch Trail','HOUSE NO365',9003,250062);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'1 8th Pass','HOUSE NO366',9003,250063);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'93 Northridge Street','HOUSE NO367',9003,250064);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'6094 Glacier Hill Road','HOUSE NO368',9004,250065);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'21517 Luster Terrace','HOUSE NO369',9004,250066);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'973 Morrow Lane','HOUSE NO370',9004,250067);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2 Park Meadow Circle','HOUSE NO371',9005,250068);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'5 Larry Street','HOUSE NO372',9005,250069);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'77 Shoshone Way','HOUSE NO373',9005,250070);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'5905 Bonner Circle','HOUSE NO374',9006,250071);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'4854 Aberg Hill','HOUSE NO375',9007,250072);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'229 Manley Avenue','HOUSE NO376',9008,250073);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'11795 Kings Terrace','APT377',9009,250074);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'9372 Texas Court','APT378',9010,250075);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'106 Mcbride Trail','APT379',9011,250076);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'02 Hoard Avenue','APT380',9012,250077);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'508 Oriole Parkway','APT381',9013,250078);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'636 Talmadge Parkway','APT382',9014,250079);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'62183 Bartelt Court','APT383',9015,250080);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2 Forster Park','APT384',9016,250081);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'37 4th Crossing','APT385',9017,250082);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'664 Derek Place','APT386',9018,250083);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2898 Elka Way','APT387',9019,250084);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'30 Trailsway Lane','APT388',9020,250085);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'766 Morningstar Drive','APT389',9021,250086);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'58193 Blaine Center','APT390',9022,250087);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2907 Debra Hill','HOUSE NO391',9023,250088);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'21945 Anderson Circle','HOUSE NO392',9024,250089);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'44 Hoffman Place','HOUSE NO393',9025,250090);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'47 Welch Way','HOUSE NO394',9026,250091);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'68 Porter Plaza','HOUSE NO395',9027,250092);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'246 Butterfield Center','HOUSE NO396',9028,250093);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'46 Milwaukee Way','HOUSE NO397',9029,250094);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'4955 Farragut Hill','HOUSE NO398',9030,250095);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'6 Del Mar Trail','HOUSE NO399',9031,250096);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'79 Hoepker Plaza','HOUSE NO400',9032,250097);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2 Trailsway Lane','HOUSE NO401',9033,250098);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'60107 Bonner Trail','HOUSE NO402',9034,250099);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'86 Mandrake Junction','HOUSE NO403',9035,250100);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'77333 Cottonwood Alley','HOUSE NO404',9036,250101);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'80655 Sunnyside Trail','HOUSE NO405',9037,250102);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'14 Sauthoff Plaza','HOUSE NO406',9038,250103);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'98 Dakota Trail','HOUSE NO407',9039,250104);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'925 Dapin Avenue','HOUSE NO408',9030,250105);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'702 Dixon Drive','HOUSE NO409',9020,250106);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2061 Ryan Way','HOUSE NO410',9020,250107);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'7 Fieldstone Place','HOUSE NO411',9003,250108);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'3 Jana Park','HOUSE NO412',9011,250109);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'8 Starling Court','HOUSE NO413',9012,250110);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'0 Graedel Circle','HOUSE NO414',9013,250111);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'32353 Mayer Alley','HOUSE NO415',9014,250112);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'20 Packers Plaza','HOUSE NO416',9015,250113);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'7470 Lotheville Pass','HOUSE NO417',9016,250114);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2 Sullivan Trail','HOUSE NO418',9006,250115);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'1145 High Crossing Place','HOUSE NO419',9007,250116);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'17 Elmside Center','HOUSE NO420',9008,250117);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'9237 Havey Circle','HOUSE NO421',9009,250118);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2 Oak Valley Circle','HOUSE NO422',9010,250119);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'97 Jackson Junction','HOUSE NO423',9011,250120);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'7 Garrison Circle','HOUSE NO424',9012,250121);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'8 Lawn Alley','HOUSE NO425',9013,250122);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'10592 Warrior Crossing','HOUSE NO426',9014,250123);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'30163 Dottie Circle','HOUSE NO427',9015,250124);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'82487 Warrior Trail','HOUSE NO428',9016,250125);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'18185 Dixon Court','HOUSE NO429',9017,250126);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'43813 Sloan Hill','HOUSE NO430',9018,250127);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'52226 Lotheville Trail','HOUSE NO431',9019,250128);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'8 Lerdahl Lane','HOUSE NO432',9020,250129);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'80 Sullivan Hill','HOUSE NO433',9021,250130);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'9 Jenifer Parkway','HOUSE NO434',9022,250131);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'7507 Bay Place','HOUSE NO435',9023,250132);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'650 Arizona Center','HOUSE NO436',9024,250133);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'4846 Esker Terrace','HOUSE NO437',9025,250134);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'394 Holmberg Pass','HOUSE NO438',9026,250135);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'099 Trailsway Court','HOUSE NO439',9027,250136);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'82800 Di Loreto Alley','HOUSE NO440',9028,250137);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'8 Becker Way','HOUSE NO441',9029,250138);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'1 Basil Junction','HOUSE NO442',9030,250139);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'31 Superior Drive','APT443',9031,250140);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'8 North Pass','APT444',9032,250141);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'82 International Terrace','APT445',9033,250142);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'6 Goodland Park','APT446',9034,250143);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'5 Carioca Park','APT447',9035,250144);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'0 Grim Street','APT448',9036,250145);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'037 Sheridan Point','APT449',9037,250146);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'75199 Maywood Avenue','APT450',9038,250147);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'727 Eastwood Terrace','APT451',9039,250148);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'81013 Larry Alley','APT452',9031,250149);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'9 Ridgeview Parkway','APT453',9021,250150);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'91 Hoepker Junction','APT454',9022,250151);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'55 American Ash Alley','APT455',9023,250152);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'40 Ilene Circle','APT456',9024,250153);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'549 Messerschmidt Parkway','APT457',9025,250154);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'03 Hollow Ridge Trail','APT458',9026,250155);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2296 Kinsman Parkway','APT459',9027,250156);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'11472 Graedel Parkway','APT460',9028,250157);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'33 Melrose Terrace','APT461',9029,250158);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'898 Shasta Plaza','APT462',9006,250159);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'4 Sutherland Plaza','APT463',9007,250160);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'43 Crowley Drive','APT464',9008,250161);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'78 Crownhardt Parkway','APT465',9009,250162);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2 Summerview Way','APT466',9010,250163);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'040 Butternut Way','APT467',9011,250164);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'659 Glendale Alley','APT468',9012,250165);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'39934 Red Cloud Court','APT469',9013,250166);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'0706 Bayside Road','APT470',9014,250167);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'01181 Onsgard Plaza','APT471',9015,250168);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'08574 Ridgeview Court','APT472',9016,250169);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'46625 South Hill','APT473',9017,250170);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'806 Milwaukee Avenue','APT474',9018,250171);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'68 Sugar Crossing','APT475',9019,250172);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'09892 Lukken Street','APT476',9020,250173);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'3981 Oriole Plaza','APT477',9021,250174);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'323 Fair Oaks Center','APT478',9022,250175);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'9607 Kennedy Crossing','APT479',9023,250176);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'323 Thompson Hill','APT480',9024,250177);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'4 Lakewood Gardens Center','APT481',9025,250178);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'936 Hintze Point','APT482',9026,250179);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'79456 Sutherland Avenue','APT483',9027,250180);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'30901 Commercial Terrace','APT484',9028,250181);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'010 Browning Road','APT485',9029,250182);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'70861 Sommers Plaza','APT486',9030,250183);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'7460 Manitowish Center','APT487',9031,250184);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'1 Maple Alley','APT488',9032,250185);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'1742 Stuart Way','APT489',9033,250186);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'40919 2nd Drive','APT490',9034,250187);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'91 Dorton Drive','APT491',9035,250188);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'2 Warrior Lane','APT492',9036,250189);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'7352 Lighthouse Bay Pass','APT493',9037,250190);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'81275 Gina Terrace','APT494',9038,250191);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'822 Eastwood Terrace','APT495',9039,250192);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'45358 Victoria Drive','APT496',9010,250193);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'10 Eastwood Pass','HOUSE NO497',9002,250194);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'8285 Stephen Point','HOUSE NO498',9003,250195);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'3 Crownhardt Place','HOUSE NO499',9004,250196);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'52044 Mariners Cove Parkway','HOUSE NO500',9004,250197);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'58 Express Drive','HOUSE NO501',9005,250198);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'1047 Clyde Gallagher Avenue','HOUSE NO502',9006,250199);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'99281 Pawling Drive','HOUSE NO503',9007,250200);
pkg_Insert_Data.Insert_Address(Addr_SEQ.nextval,'9047 Mariners Cove Circle','HOUSE NO504',9008,250201);
--Professor Data
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,100,'Naveen Kuragayla','k.g@northeastern.edu','1234567890',8000,'22-DEC-1970',301,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,100,'Kal Bugrara','Bugrara.K@northeastern.edu','9878654311',8001,'21-DEC-1965',300,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,100,'Nat Sollitt','nsollitt2@dedecms.com','1575082011',8002,'22-DEC-1950',302,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,100,'Lisle Wetherburn','lwetherburn3@thetimes.co.uk','3396992449',8003,'22-DEC-1951',303,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,100,'Hayden Couch','hcouch4@marketwatch.com','2063906776',8004,'22-DEC-1952',304,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,100,'Alexandro Claige','aclaige5@cbslocal.com','1622967080',8005,'22-DEC-1953',305,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,100,'Hildy Juara','hjuara6@yale.edu','9508590205',8006,'22-DEC-1954',306,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,101,'Bentlee Bohea','bbohea7@networksolutions.com','3032388783',8007,'22-DEC-1955',307,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,101,'Gianna Middup','gmiddup8@irs.gov','2154570192',8008,'22-DEC-1956',308,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,101,'Elizabet Soars','esoars9@printfriendly.com','4007705511',8009,'22-DEC-1957',309,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,101,'Issi Sorton','isortona@tmall.com','3896352480',8010,'22-DEC-1958',310,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,101,'Erin Faiers','efaiersb@tinyurl.com','2282517556',8011,'22-DEC-1959',311,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,101,'Odie Dutnall','odutnallc@list-manage.com','2921318178',8012,'22-DEC-1960',312,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,101,'Carmelita MacGiany','cmacgianyd@mysql.com','8474521027',8013,'22-DEC-1961',313,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,102,'Matthieu Boissier','mboissiere@gov.uk','9724367246',8014,'22-DEC-1962',314,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,102,'Christoph Trevena','ctrevenaf@techcrunch.com','2727152901',8015,'22-DEC-1963',315,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,102,'Aldric Vaissiere','avaissiereg@npr.org','4022339488',8016,'22-DEC-1964',316,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,102,'Georges Willman','gwillmanh@theatlantic.com','5629410621',8017,'22-DEC-1965',317,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,102,'Tamiko Tebbs','ttebbsi@prweb.com','7162635683',8018,'22-DEC-1966',318,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,102,'Gabriello Kaesmakers','gkaesmakersj@cocolog-nifty.com','9725407093',8019,'22-DEC-1967',319,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,102,'Mahalia Ealden','mealdenk@imgur.com','9518478326',8020,'22-DEC-1968',320,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,103,'Marylinda Jukes','mjukesl@ameblo.jp','7151017052',8021,'22-DEC-1969',321,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,103,'Alair Kingsnoad','akingsnoadm@sciencedirect.com','5714335955',8022,'22-DEC-1970',322,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,103,'Laurent Woodham','lwoodhamn@mit.edu','5936638066',8023,'22-DEC-1971',323,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,103,'Esra Goodship','egoodshipo@miitbeian.gov.cn','1152908576',8024,'22-DEC-1972',324,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,103,'Shae Hutson','shutsonp@shinystat.com','6656349249',8025,'22-DEC-1973',325,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,103,'Ezmeralda Teresia','eteresiaq@over-blog.com','8046945684',8026,'22-DEC-1974',326,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,103,'Thedric Okie','tokier@yolasite.com','6242611443',8027,'22-DEC-1975',327,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,104,'Crysta Houchin','chouchins@ucoz.com','3312750413',8028,'22-DEC-1976',328,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,104,'Jackie Chad','jchadt@ezinearticles.com','7862479074',8029,'22-DEC-1977',329,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,104,'Theadora Ciccone','tcicconeu@surveymonkey.com','2612269794',8030,'22-DEC-1978',330,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,104,'Zaccaria Blondell','zblondellv@addtoany.com','4825528869',8031,'22-DEC-1979',331,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,104,'Ruy Bleasdille','rbleasdillew@mit.edu','8756905757',8032,'22-DEC-1980',332,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,104,'Alberto Silman','asilmanx@berkeley.edu','7598276189',8033,'22-DEC-1981',333,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,104,'Trefor Greenhouse','tgreenhousey@bloomberg.com','1444886010',8034,'22-DEC-1982',334,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,105,'Perry McGinnell','pmcginnellz@github.com','1014305060',8035,'22-DEC-1983',335,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,105,'Valli Lovett','vlovett10@ted.com','8001914083',8036,'22-DEC-1984',336,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,105,'Swen Ewen','sewen11@dedecms.com','7055101836',8037,'22-DEC-1985',337,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,105,'Imojean Armfield','iarmfield12@meetup.com','2833593477',8038,'22-DEC-1986',338,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,105,'Merrick Cockroft','mcockroft13@sciencedaily.com','4193325174',8039,'22-DEC-1987',339,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,105,'Evelyn Ricioppo','ericioppo14@hao123.com','2146746737',8040,'22-DEC-1988',340,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,105,'Roarke Staker','rstaker15@salon.com','1739246864',8041,'22-DEC-1989',341,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,106,'Celestine Deddum','cdeddum16@livejournal.com','3159054859',8042,'14-JAN-1977',342,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,106,'Mercy Matzl','mmatzl17@last.fm','8627674456',8043,'14-JAN-1978',343,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,106,'Peyter Sharer','psharer18@cafepress.com','4784982104',8044,'14-JAN-1979',344,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,106,'Linc Melarkey','lmelarkey19@opera.com','8166122581',8045,'14-JAN-1980',345,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,106,'Afton Lawes','alawes1a@netvibes.com','4045337370',8046,'14-JAN-1981',346,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,107,'Darb Fettis','dfettis1b@etsy.com','3775120022',8047,'14-JAN-1982',347,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,107,'Quill Sinncock','qsinncock1c@ustream.tv','8427344800',8048,'14-JAN-1983',348,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,107,'Filide Bemrose','fbemrose1d@intel.com','1352441065',8049,'14-JAN-1984',349,'FEMALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,107,'Orion Emard','fgulgowski@jast.info','9747922139',8050,'14-JAN-1985',350,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,107,'Keyon Lubowitz','carmela83@wintheiser.net','4333906926',8051,'14-JAN-1986',351,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,100,'Teja Velagapudi','teja83@wintheiser.net','4333906936',8052,'24-MAR-1986',352,'MALE');
pkg_Insert_Data.Insert_Professor(Prof_Seq.nextval,100,'Hariharan','hari83@wintheiser.net','4333906927',8053,'14-FEB-1986',353,'MALE');
--Professor_Schedule Data
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1000,'Saturday',to_char(to_date('27-SEP-2001 14:30:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),1,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1001,'Sunday',to_char(to_date('27-SEP-2001 15:30:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),2,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1002,'Monday',to_char(to_date('27-SEP-2001 16:30:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1003,'Tuesday',to_char(to_date('27-SEP-2001 17:30:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1004,'Wednesday',to_char(to_date('27-SEP-2001 18:30:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),5,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1005,'Thursday',to_char(to_date('27-SEP-2001 19:30:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1006,'Friday',to_char(to_date('27-SEP-2001 20:30:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),1,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1007,'Saturday',to_char(to_date('27-SEP-2001 9:00:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),2,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1008,'Sunday',to_char(to_date('27-SEP-2001 9:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1009,'Monday',to_char(to_date('27-SEP-2001 10:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1010,'Tuesday',to_char(to_date('27-SEP-2001 11:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),5,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1011,'Wednesday',to_char(to_date('27-SEP-2001 12:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1012,'Thursday',to_char(to_date('27-SEP-2001 13:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1013,'Friday',to_char(to_date('27-SEP-2001 14:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1014,'Saturday',to_char(to_date('27-SEP-2001 15:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1015,'Sunday',to_char(to_date('27-SEP-2001 16:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),5,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1016,'Monday',to_char(to_date('27-SEP-2001 17:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1017,'Tuesday',to_char(to_date('27-SEP-2001 18:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1018,'Wednesday',to_char(to_date('27-SEP-2001 19:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1019,'Thursday',to_char(to_date('27-SEP-2001 20:10:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),2,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1020,'Friday',to_char(to_date('27-SEP-2001 9:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1021,'Saturday',to_char(to_date('27-SEP-2001 10:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),5,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1022,'Sunday',to_char(to_date('27-SEP-2001 11:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1023,'Monday',to_char(to_date('27-SEP-2001 12:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),2,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1024,'Tuesday',to_char(to_date('27-SEP-2001 13:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),5,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1025,'Wednesday',to_char(to_date('27-SEP-2001 14:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1026,'Thursday',to_char(to_date('27-SEP-2001 15:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),2,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1027,'Friday',to_char(to_date('27-SEP-2001 16:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),1,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1028,'Saturday',to_char(to_date('27-SEP-2001 17:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1029,'Sunday',to_char(to_date('27-SEP-2001 18:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1030,'Monday',to_char(to_date('27-SEP-2001 19:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1031,'Tuesday',to_char(to_date('27-SEP-2001 20:20:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),2,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1032,'Wednesday',to_char(to_date('27-SEP-2001 8:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1033,'Thursday',to_char(to_date('27-SEP-2001 9:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1034,'Friday',to_char(to_date('27-SEP-2001 10:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),2,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1035,'Saturday',to_char(to_date('27-SEP-2001 11:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1036,'Sunday',to_char(to_date('27-SEP-2001 12:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1037,'Monday',to_char(to_date('27-SEP-2001 13:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1038,'Tuesday',to_char(to_date('27-SEP-2001 14:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),2,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1039,'Wednesday',to_char(to_date('27-SEP-2001 15:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),5,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1040,'Thursday',to_char(to_date('27-SEP-2001 16:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1041,'Friday',to_char(to_date('27-SEP-2001 17:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1042,'Saturday',to_char(to_date('27-SEP-2001 18:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),5,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1043,'Sunday',to_char(to_date('27-SEP-2001 19:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),2,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1044,'Monday',to_char(to_date('27-SEP-2001 20:35:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1045,'Tuesday',to_char(to_date('27-SEP-2001 9:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),5,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1046,'Wednesday',to_char(to_date('27-SEP-2001 10:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1047,'Thursday',to_char(to_date('27-SEP-2001 11:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1048,'Friday',to_char(to_date('27-SEP-2001 12:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),3,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1049,'Saturday',to_char(to_date('27-SEP-2001 13:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),5,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1050,'Sunday',to_char(to_date('27-SEP-2001 14:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),4,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1051,'Monday',to_char(to_date('27-SEP-2001 15:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1052,'Tuesday',to_char(to_date('27-SEP-2001 16:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1053,'Wednesday',to_char(to_date('27-SEP-2001 17:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1000,'Thursday',to_char(to_date('27-SEP-2001 17:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
pkg_Insert_Data.Insert_Professor_Schedule(Prof_Sch_Seq.nextval,1001,'Monday',to_char(to_date('27-SEP-2001 17:50:00','dd-mm-yyyy HH24:MI:SS'),'HH24:MI:SS AM'),6,'AVAILABLE');
-- Student Data(4000 to 4099)
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,200,'Bealle Piquard','bpiquard0@wikimedia.org',8054,'3689511166','20-Jan-1990','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,201,'Augy Adamini','aadamini1@mlb.com',8055,'2057453467','21-Jan-1990','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,202,'Marcus Orring','morring2@disqus.com',8056,'1267371273','22-Jan-1990','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,203,'Garth Gurery','ggurery3@ebay.co.uk',8057,'4727779581','23-Jan-1990','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,204,'Fernando Semple','fsemple4@fda.gov',8058,'6095924284','24-Jan-1990','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,205,'Bettina Rawll','brawll5@weibo.com',8059,'2168502937','25-Jan-1990','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,206,'Johnath Eliasen','jeliasen6@gov.uk',8060,'3362842341','26-Jan-1990','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,207,'Ardath Barbara','abarbara7@who.int',8061,'7979628926','27-Jan-1990','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,208,'Arnuad Tomowicz','atomowicz8@cpanel.net',8062,'1303872047','28-Jan-1990','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,209,'Allard Burberye','aburberye9@theguardian.com',8063,'2294870320','29-Jan-1990','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,210,'Hillary Coomer','hcoomera@constantcontact.com',8064,'9699756019','30-Jan-1990','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,211,'Hieronymus Broderick','hbroderickb@rakuten.co.jp',8065,'2604218488','31-Jan-1991','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,212,'Emmit Borles','eborlesc@harvard.edu',8066,'9133483875','01-Feb-1991','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,213,'Angie Payn','apaynd@tuttocitta.it',8067,'4651163485','02-Feb-1995','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,214,'Danyette Dyhouse','ddyhousee@taobao.com',8068,'1057050654','03-Feb-1995','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,215,'Thea Peto','tpetof@technorati.com',8069,'5917988060','04-Feb-1995','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,216,'Nikolas Vance','nvanceg@uiuc.edu',8070,'9253278117','05-Feb-1995','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,217,'Gianina McGilvary','gmcgilvaryh@furl.net',8071,'9758963807','06-Feb-1995','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,200,'Lammond Spreull','lspreulli@skype.com',8072,'9413363348','07-Feb-1995','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,201,'Ula Scinelli','uscinellij@ibm.com',8073,'1409147772','08-Feb-1995','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,202,'Rheta Lurcock','rlurcockk@networksolutions.com',8074,'4704372512','09-Feb-1995','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,203,'Toddie Putman','tputmanl@mozilla.org',8075,'1921841741','10-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,204,'Amory Benoy','abenoym@timesonline.co.uk',8076,'1901633337','11-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,205,'Abbey Brogiotti','abrogiottin@twitter.com',8077,'1136914734','12-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,206,'Tammy Ordelt','tordelto@who.int',8078,'5489948232','13-Feb-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,207,'Court Gwilliam','cgwilliamp@foxnews.com',8079,'7681107936','14-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,208,'Ichabod Van der Hoeven','ivanq@go.com',8080,'4125535674','15-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,209,'Claudius MacSporran','cmacsporranr@fema.gov',8081,'9753833320','16-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,210,'Bunni Grahlmans','bgrahlmanss@jigsy.com',8082,'5653183978','17-Feb-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,211,'Ado Rooms','aroomst@live.com',8083,'5716543009','18-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,212,'Archy Deabill','adeabillu@aol.com',8084,'7001871892','19-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,213,'Jules Carwithen','jcarwithenv@indiegogo.com',8085,'1188800891','20-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,214,'Winnie Yate','wyatew@columbia.edu',8086,'6441090587','21-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,215,'Rebecca Terrazzo','rterrazzox@dailymotion.com',8087,'6015424317','22-Feb-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,216,'Tedd Barbier','tbarbiery@house.gov',8088,'6022404558','23-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,217,'Carmelia McCann','cmccannz@com.com',8089,'1468385121','24-Feb-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,200,'Clayton Hundell','chundell10@com.com',8090,'1968119991','25-Feb-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,201,'Perri Kanter','pkanter11@blogspot.com',8091,'1625467698','26-Feb-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,202,'Lily Gertray','lgertray12@spotify.com',8092,'6419462604','27-Feb-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,203,'Ivie Thoma','ithoma13@ft.com',8093,'5059187454','28-Feb-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,204,'Kevyn Freschi','kfreschi14@hexun.com',8094,'2816861464','01-Mar-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,205,'Rance Murr','rmurr15@marketwatch.com',8095,'4761802906','02-Mar-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,206,'Leonid Tschursch','ltschursch16@newsvine.com',8096,'7027379949','03-Mar-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,207,'Audrye Scotting','ascotting17@a8.net',8097,'9842071400','04-Mar-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,208,'Dacy de Bullion','dde18@artisteer.com',8098,'9419507085','05-Mar-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,209,'Brande Deighan','bdeighan19@dot.gov',8099,'3608339666','06-Mar-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,210,'Almeta Mc Gee','amc1a@pbs.org',8100,'7709356293','07-Mar-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,211,'Sherill Andriveau','sandriveau1b@last.fm',8101,'9755470505','08-Mar-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,212,'Alain Brackstone','abrackstone1c@ehow.com',8102,'5423177099','09-Mar-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,213,'Federica Burk','fburk1d@google.co.jp',8103,'4924804400','10-Mar-1995','SUMMER','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,214,'Nevil Burke','nburke1e@nasa.gov',8104,'5135145485','11-Mar-1995','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,215,'Fitzgerald Antowski','fantowski1f@seesaa.net',8105,'9309749609','12-Mar-1995','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,216,'Schuyler Lambdin','slambdin1g@behance.net',8106,'2819260144','13-Mar-1995','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,217,'Burgess Helis','bhelis1h@miibeian.gov.cn',8107,'2913207097','14-Mar-1995','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,200,'Hillary Poulton','hpoulton1i@harvard.edu',8108,'4356441227','15-Mar-1995','SUMMER','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,201,'Stanton Aldine','saldine1j@prnewswire.com',8109,'9684632652','16-Mar-1995','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,202,'Bartolomeo Gymlett','bgymlett1k@nydailynews.com',8110,'8554546417','17-Mar-1995','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,203,'Nessie Flewan','nflewan1l@eventbrite.com',8111,'8474302354','18-Mar-1995','SUMMER','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,204,'Reuven MacAlees','rmacalees1m@wikia.com',8112,'6873384354','19-Mar-1995','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,205,'Catha Loutheane','cloutheane1n@ca.gov',8113,'1348336843','20-Mar-1995','SUMMER','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,206,'Lurlene Harborow','lharborow1o@google.com.au',8114,'4063060111','21-Mar-1995','SUMMER','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,207,'Kaylyn Utley','kutley1p@usgs.gov',8115,'5618969355','22-Mar-1995','SUMMER','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,208,'Evey Millwall','emillwall1q@answers.com',8116,'8898337603','23-Mar-1995','SUMMER','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,209,'Willi Lythgoe','wlythgoe1r@thetimes.co.uk',8117,'7281426661','24-Mar-1995','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,210,'Paula Lovelady','plovelady1s@theguardian.com',8118,'7469612799','25-Mar-1995','SUMMER','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,200,'Rahul Saxena','Saxenarahul@gmail.com',8118,'1234567690','12-May-1996','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,201,'Mahak Bhatia','mb@gmail.com',8119,'9813673223','12-Sep-1997','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,202,'Sagar Malhotra','Sagmalhotra@gmail.com',8120,'1234567691','22-Dec-1997','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,203,'Gauri Bhalle','gb@gmail.com',8121,'1234537690','12-May-1996','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,204,'Yash Firke','yashFirke@gmail.com',8122,'1224567690','05-May-1995','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,205,'Simran Gupta','Simgupta@gmail.com',8123,'1234467690','12-May-1994','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,206,'Ram Kumar','ram@gmail.com',8124,'1234267690','12-May-1996','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,207,'Yanrong huang','yan@gmail.com',8125,'9999888811','12-May-1998','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,208,'Rahul Gupta','guptarahul@gmail.com',8126,'1234567699','16-May-1998','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,209,'Xi hao','haoxi@gmail.com',8127,'1134567690','12-DEC-1996','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,210,'Raymond','raymond@gmail.com',8128,'1234577690','12-May-1996','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,211,'Mayak Gupta','guptamayank@gmail.com',8129,'1234567890','27-DEC-1996','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,212,'Arpit Verma','vermaarpit@gmail.com',8130,'1334567690','26-JUN-1997','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,213,'Komal Makkar','makkarkomal@gmail.com',8131,'1239967690','22-JAN-1997','FALL','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,214,'Ravish Chawla','Chawlaravish@gmail.com',8132,'1236567690','12-May-1996','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,215,'Teja Velagapudi','tejavasishta@gmail.com',8133,'1114467690','28-Mar-1997','FALL','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,216,'Emma Johnson','emma@gmail.com',8134,'1244567690','12-Mar-1996','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,217,'Emma John','emjohn@gmail.com',8135,'3244567690','12-Mar-1996','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,200,'Virat Kohli','virat@gmail.com',8136,'1244767690','05-NOV-1980','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,201,'AB De Villiars','ab@gmail.com',8137,'1244555590','26-May-1996','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,202,'Emma watson','emmawatson@gmail.com',8138,'9876543210','02-Mar-1995','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,203,'Emily johnson','emily@gmail.com',8139,'1244565590','26-Mar-1996','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,204,'Vanshika Jain','vjain@gmail.com',8140,'1245467690','13-Mar-1999','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,205,'Arushi jain','arushijain@gmail.com',8141,'3212445676','12-Mar-1996','SPRING','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,206,'Robert pattrick','robert@gmail.com',8142,'1244347690','12-Mar-1996','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,207,'Emm Crook','emm@gmail.com',8143,'1244567692','06-Mar-1997','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,208,'David Warner','david@gmail.com',8144,'1244567693','12-Mar-1986','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,209,'Nick Jonas','nickjonas@gmail.com',8145,'1244567694','12-Mar-1992','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,210,'Thud Thud','thudthud@gmail.com',8146,'1244567695','13-SEP-1995','SUMMER','FEMALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,211,'Ayush Grover','agrover@gmail.com',8147,'1244567696','23-NOV-1997','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,212,'Parth Bharadwaj','parth@gmail.com',8148,'1244567697','25-May-2000','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,213,'Caramel Malhotra','carry@gmail.com',8149,'1244567698','02-JUN-2000','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,214,'Two Jain','twojain@gmail.com',8150,'1244567699','12-Mar-1995','SUMMER','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,215,'Anmol Bhatia','anmolbhatia@gmail.com',8151,'1244567610','20-AUG-2000','SPRING','MALE');
pkg_Insert_Data.Insert_Student(Stu_seq.nextval,216,'Tia Arora','tia@gmail.com',8152,'1244567620','12-Mar-1993','SPRING','FEMALE');
-- Class Data(3000 to 3055)
pkg_Insert_Data.Class_Creation(Class_seq.nextval,301,2000,'OFFLINE',20,20,'Bridal Bouquet Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,300,2001,'OFFLINE',20,20,'Dotted Lichen Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,302,2002,'OFFLINE',20,20,'Days Bedstraw Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,303,2003,'OFFLINE',20,20,'Arnolds Parmotrema Lichen Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,304,2004,'OFFLINE',20,20,'Keaau Valley Dubautia Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,305,2005,'OFFLINE',20,20,'Cushion Cryptantha Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,306,2006,'OFFLINE',20,20,'Whitehair Manzanita Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,307,2007,'OFFLINE',20,20,'Harpers Fimbry Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,308,2008,'OFFLINE',20,20,'Simple-stem Everlasting Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,309,2009,'OFFLINE',20,20,'Asian Bushbeech Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,310,2010,'OFFLINE',20,20,'Standleys Goosefoot Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,311,2011,'OFFLINE',20,20,'Banff Bluegrass Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,312,2012,'OFFLINE',20,20,'Grapefern Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,313,2013,'OFFLINE',20,20,'Cretan Brake Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,314,2014,'OFFLINE',20,20,'Intermountain Phacelia Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,315,2015,'OFFLINE',20,20,'Lotus Sweetjuice Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,316,2016,'OFFLINE',20,20,'Tropical Dock Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,317,2017,'OFFLINE',20,20,'Shrubby Willowherb Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,318,2018,'OFFLINE',20,20,'Sclerocarya Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,319,2019,'OFFLINE',20,20,'Sematophyllum Moss Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,320,2020,'OFFLINE',20,20,'Pacific Panicgrass Hall','SPRING');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,321,2021,'OFFLINE',20,20,'James Cryptantha Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,322,2022,'OFFLINE',20,20,'Oregon Cliff Fern Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,323,2023,'OFFLINE',20,20,'Dixie Spiderlily Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,324,2024,'OFFLINE',20,20,'Hawaii Silversword Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,325,2025,'OFFLINE',20,20,'Johnstons Rockcress Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,326,2026,'OFFLINE',20,20,'Rough Sprangletop Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,327,2027,'OFFLINE',20,20,'Duskyseed Sedge Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,328,2028,'OFFLINE',20,20,'Great Sage Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,329,2029,'OFFLINE',20,20,'Sedge Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,330,2030,'OFFLINE',20,20,'Wild Iris Hall','FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,331,2031,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,332,2032,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,333,2033,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,334,2034,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,335,2035,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,336,2036,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,337,2037,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,338,2038,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,339,2039,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,340,2040,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,341,2041,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,342,2042,'ONLINE',20,20,NULL,'FALL');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,343,2043,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,344,2044,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,345,2045,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,346,2046,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,347,2047,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,348,2048,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,349,2049,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,350,2050,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,351,2051,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,352,2052,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,353,2053,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,301,2054,'ONLINE',20,20,NULL,'SUMMER');
pkg_Insert_Data.Class_Creation(Class_seq.nextval,300,2055,'ONLINE',20,20,NULL,'SUMMER');
--Registration data
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4000,3000,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4000,3001,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4000,3002,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4000,3003,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4000,3004,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4001,3005,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4001,3006,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4001,3007,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4001,3008,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4001,3009,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4002,3010,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4002,3011,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4002,3012,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4002,3013,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4002,3014,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4003,3015,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4003,3016,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4003,3017,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4003,3018,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4003,3019,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4004,3020,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4004,3021,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4004,3022,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4004,3023,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4004,3024,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4005,3025,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4005,3026,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4005,3027,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4005,3028,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4005,3029,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4006,3030,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4006,3031,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4006,3032,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4006,3033,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4006,3034,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4007,3035,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4007,3036,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4007,3037,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4007,3038,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4007,3039,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4008,3040,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4008,3041,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4008,3042,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4008,3043,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4008,3044,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4009,3045,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4009,3046,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4009,3047,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4009,3048,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4009,3049,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4010,3050,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4010,3051,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4010,3052,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4010,3053,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4010,3054,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4011,3055,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4011,3000,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4011,3001,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4011,3002,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4011,3003,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4012,3004,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4012,3005,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4012,3006,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4012,3007,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4012,3008,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4013,3009,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4013,3010,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4013,3011,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4013,3012,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4013,3013,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4014,3014,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4014,3015,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4014,3016,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4014,3017,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4014,3018,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4015,3019,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4015,3020,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4015,3021,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4015,3022,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4015,3023,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4016,3024,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4016,3025,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4016,3026,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4016,3027,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4016,3028,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4017,3029,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4017,3030,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4017,3031,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4017,3032,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4017,3033,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4018,3034,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4018,3035,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4018,3036,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4018,3037,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4018,3038,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4019,3039,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4019,3040,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4019,3041,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4019,3042,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4019,3043,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4020,3044,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4020,3045,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4020,3046,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4020,3047,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4020,3048,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4021,3049,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4021,3050,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4021,3051,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4021,3052,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4021,3053,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4022,3054,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4022,3055,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4022,3000,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4022,3001,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4022,3002,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4023,3003,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4023,3004,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4023,3005,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4023,3006,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4023,3007,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4024,3008,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4024,3009,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4024,3010,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4024,3011,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4024,3012,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4025,3013,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4025,3014,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4025,3015,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4025,3016,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4025,3017,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4026,3018,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4026,3019,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4026,3020,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4026,3021,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4026,3022,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4027,3023,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4027,3024,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4027,3025,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4027,3026,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4027,3027,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4028,3028,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4028,3029,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4028,3030,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4028,3031,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4028,3032,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4029,3033,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4029,3034,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4029,3035,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4029,3036,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4029,3037,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4030,3038,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4030,3039,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4030,3040,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4030,3041,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4030,3042,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4031,3043,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4031,3044,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4031,3045,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4031,3046,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4031,3047,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4032,3048,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4032,3049,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4032,3050,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4032,3051,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4032,3052,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4033,3053,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4033,3054,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4033,3055,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4033,3000,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4033,3001,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4034,3002,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4034,3003,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4034,3004,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4034,3005,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4034,3006,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4035,3007,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4035,3008,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4035,3009,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4035,3010,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4035,3011,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4036,3012,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4036,3013,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4036,3014,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4036,3015,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4036,3016,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4037,3017,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4037,3018,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4037,3019,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4037,3020,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4037,3021,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4038,3022,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4038,3023,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4038,3024,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4038,3025,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4038,3026,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4039,3027,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4039,3028,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4039,3029,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4039,3030,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4039,3031,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4040,3032,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4040,3033,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4040,3034,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4040,3035,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4040,3036,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4041,3037,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4041,3038,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4041,3039,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4041,3040,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4041,3041,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4042,3042,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4042,3043,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4042,3044,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4042,3045,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4042,3046,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4043,3047,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4043,3048,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4043,3049,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4043,3050,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4043,3051,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4044,3052,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4044,3053,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4044,3054,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4044,3055,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4044,3000,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4045,3001,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4045,3002,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4045,3003,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4045,3004,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4045,3005,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4046,3006,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4046,3007,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4046,3008,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4046,3009,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4046,3010,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4047,3011,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4047,3012,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4047,3013,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4047,3014,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4047,3015,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4048,3016,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4048,3017,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4048,3018,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4048,3019,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4048,3020,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4049,3021,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4049,3022,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4049,3023,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4049,3024,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4049,3025,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4050,3026,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4050,3027,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4050,3028,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4050,3029,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4050,3030,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4051,3031,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4051,3032,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4051,3033,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4051,3034,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4051,3035,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4052,3036,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4052,3037,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4052,3038,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4052,3039,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4052,3040,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4053,3041,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4053,3042,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4053,3043,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4053,3044,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4053,3045,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4054,3046,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4054,3047,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4054,3048,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4054,3049,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4054,3050,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4055,3051,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4055,3052,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4055,3053,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4055,3054,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4055,3055,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4056,3000,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4056,3001,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4056,3002,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4056,3003,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4056,3004,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4057,3005,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4057,3006,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4057,3007,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4057,3008,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4057,3009,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4058,3010,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4058,3011,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4058,3012,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4058,3013,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4058,3014,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4059,3015,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4059,3016,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4059,3017,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4059,3018,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4059,3019,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4060,3020,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4060,3021,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4060,3022,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4060,3023,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4060,3024,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4061,3025,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4061,3026,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4061,3027,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4061,3028,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4061,3029,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4062,3030,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4062,3031,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4062,3032,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4062,3033,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4062,3034,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4063,3035,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4063,3036,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4063,3037,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4063,3038,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4063,3039,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4064,3040,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4064,3041,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4064,3042,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4064,3043,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4064,3044,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4065,3045,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4065,3046,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4065,3047,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4065,3048,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4065,3049,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4066,3050,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4066,3051,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4066,3052,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4066,3053,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4066,3054,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4067,3055,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4067,3000,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4067,3001,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4067,3002,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4067,3003,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4068,3004,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4068,3005,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4068,3006,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4068,3007,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4068,3008,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4069,3009,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4069,3010,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4069,3011,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4069,3012,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4069,3013,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4070,3014,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4070,3015,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4070,3016,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4070,3017,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4070,3018,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4071,3019,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4071,3020,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4071,3021,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4071,3022,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4071,3023,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4072,3024,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4072,3025,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4072,3026,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4072,3027,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4072,3028,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4073,3029,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4073,3030,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4073,3031,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4073,3032,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4073,3033,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4074,3034,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4074,3035,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4074,3036,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4074,3037,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4074,3038,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4075,3039,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4075,3040,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4075,3041,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4075,3042,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4075,3043,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4076,3044,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4076,3045,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4076,3046,sysdate,'REGISTERED');
pkg_Insert_Data.Student_Class_Registration(REG_SEQ.NEXTVAL,4076,3047,sysdate,'REGISTERED');