-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUserProfileLogs
2633 lines (2611 loc) · 498 KB
/
UserProfileLogs
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
2012-09-12 01:03:45,903 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(300,74,'UE93077',13,13,1,1,'softwares:- MATLAB, photoshop, Dreamweaver, CorelDraw, Eclipse,
Mapguide Maestro.
Languages:- C,C++, Java, PHP, AJAX,Javascript, SQL, HTML, CSS.','22187','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I74<sS>RollNo><p9<VUE93077<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V22187<p27<sS>id><p28<I300<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',74,'1.38.17.6');
2012-09-12 01:03:45,913 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 300}]
2012-09-12 01:05:18,079 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(108,'167','55','','','','SYS_PER_INSERT',108,'117.220.179.236');
2012-09-12 01:05:18,087 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': -2, 'rescode': 504}]
2012-09-12 01:05:19,091 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 Dec 2009',1,2,1250,1041,0,0,1,1,1,74,'SYS_PER_INSERT',74,'1.38.17.6');
2012-09-12 01:05:19,114 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1635}]
2012-09-12 01:06:31,804 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Apr 2010',2,2,1250,1017,0,0,1,1,1,74,'SYS_PER_INSERT',74,'1.38.17.6');
2012-09-12 01:06:31,822 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1636}]
2012-09-12 01:07:19,715 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1635,'1 Jul 2009','1 Dec 2009',1,2,1250,1041,0,0,1,1,1,74,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1041<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I74<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x07+x01><p34<tp35<Rp36<sS>id><p37<I1635<sb.','SYS_PER_UPDATE',74,'1.38.17.6');
2012-09-12 01:07:19,728 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1635}]
2012-09-12 01:08:15,526 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1200,946,0,0,1,1,1,74,'SYS_PER_INSERT',74,'1.38.17.6');
2012-09-12 01:08:15,561 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1637}]
2012-09-12 01:09:14,800 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Apr 2011',4,2,1300,1078,0,0,1,1,1,74,'SYS_PER_INSERT',74,'1.38.17.6');
2012-09-12 01:09:14,818 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1638}]
2012-09-12 01:09:55,402 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1395,'1 Jan 1985','1 Jan 1985',5,2,1250,998,0,0,1,1,1,74,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I998<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I74<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x07+x01><p34<tp35<Rp36<sS>id><p37<I1395<sb.','SYS_PER_UPDATE',74,'1.38.17.6');
2012-09-12 01:09:55,409 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1395}]
2012-09-12 01:15:40,634 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(74,'XXXI INCA website','1 Mar 2011','1 Apr 2011','','','','','HTML,CSS, Flash
software used: photoshop, adobe Dreamweaver',1,'','a website was developed for the XXXI INCA international cartographic association which was held in Panjab university in 2011.','SYS_PER_INSERT',74,'1.38.17.6');
2012-09-12 01:15:40,648 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 6}]
2012-09-12 01:56:52,651 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(367,189,'UE93022',13,13,1,1,'Oracle, C language, C++ language, Web Technologies','226991','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I189<sS>RollNo><p9<VUE93022<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<VDatabases, C language, C++ language, Web Technologies<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V226991<p27<sS>id><p28<I367<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',189,'115.242.109.143');
2012-09-12 01:56:52,662 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 01:56:52,662 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 189==
2012-09-12 02:10:26,521 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(116,'182','70','','','','SYS_PER_INSERT',116,'117.211.87.147');
2012-09-12 02:10:26,537 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 5}]
2012-09-12 02:40:19,951 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(970,'1 Jan 2005','1 Apr 2006',1,1,700,563,0,0,3,27,2,38,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd6+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I700<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I563<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I38<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd5+x01+x01><p34<tp35<Rp36<sS>id><p37<I970<sb.','SYS_PER_UPDATE',38,'59.161.68.86');
2012-09-12 02:40:19,962 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 970}]
2012-09-12 02:41:11,833 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(971,'1 Jul 2006','1 May 2008',1,1,900,610,0,0,4,27,3,38,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd8+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I3<sS>TotalMarks><p14<I900<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I610<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I38<sS>DegreeType_id><p30<I4<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd6+x07+x01><p34<tp35<Rp36<sS>id><p37<I971<sb.','SYS_PER_UPDATE',38,'59.161.68.86');
2012-09-12 02:41:11,839 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 971}]
2012-09-12 02:42:23,450 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(38,'163','62','','','','SYS_PER_INSERT',38,'59.161.68.86');
2012-09-12 02:42:23,473 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 6}]
2012-09-11 21:44:59,053 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(34,62,'UE99078',17,17,1,1,'autocad, pro e, matlab','25354','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I62<sS>RollNo><p9<VUE99078<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V autocad, pro e, matlab <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V25354<p27<sS>id><p28<I34<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',62,'180.149.53.9');
2012-09-11 21:44:59,064 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 34}]
2012-09-11 22:39:30,981 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2006','1 Mar 2007',1,1,500,442,0,0,3,2,2,226,'SYS_PER_INSERT',226,'117.211.87.147');
2012-09-11 22:39:31,003 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1639}]
2012-09-11 22:40:53,743 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2008','1 Mar 2009',1,1,500,396,0,0,4,2,3,226,'SYS_PER_INSERT',226,'117.211.87.147');
2012-09-11 22:40:53,755 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1640}]
2012-09-11 22:47:17,983 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(73,175,'ue99033',17,17,1,1,' ','26343','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I175<sS>RollNo><p9<Vue99033<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V26343<p27<sS>id><p28<I73<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',175,'117.197.133.139');
2012-09-11 22:47:18,045 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 73}]
2012-09-12 09:17:36,378 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jun 2011','1 Dec 2011',6,2,1250,940,0,0,1,1,1,226,'SYS_PER_INSERT',226,'117.211.87.147');
2012-09-12 09:17:36,403 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1641}]
2012-09-11 22:52:32,320 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Mar 2008','1 Mar 2009',1,1,500,423,0,0,4,2,3,48,'SYS_PER_INSERT',48,'180.149.53.9');
2012-09-11 22:52:32,332 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1642}]
2012-09-11 22:53:23,189 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Jun 2011',5,2,1250,976,0,0,1,1,1,226,'SYS_PER_INSERT',226,'117.211.87.147');
2012-09-11 22:53:23,211 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1643}]
2012-09-11 22:54:19,064 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 Aug 2009',1,2,1250,905,0,0,1,1,1,48,'SYS_PER_INSERT',48,'180.149.53.9');
2012-09-11 22:54:19,077 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1644}]
2012-09-11 22:55:20,977 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Jul 2010',2,2,1250,879,0,0,1,1,1,48,'SYS_PER_INSERT',48,'180.149.53.9');
2012-09-11 22:55:21,001 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1645}]
2012-09-11 22:56:15,908 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Aug 2010','1 Dec 2010',3,2,1200,878,0,0,1,1,1,48,'SYS_PER_INSERT',48,'180.149.53.9');
2012-09-11 22:56:15,920 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1646}]
2012-09-11 22:56:51,629 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Jul 2011',4,2,1300,957,0,0,1,1,1,48,'SYS_PER_INSERT',48,'180.149.53.9');
2012-09-11 22:56:51,642 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1647}]
2012-09-11 22:57:42,671 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2011','1 Dec 2011',5,2,1250,935,0,0,1,1,1,48,'SYS_PER_INSERT',48,'180.149.53.9');
2012-09-11 22:57:42,691 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1648}]
2012-09-11 23:01:09,881 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 Jun 2012',6,2,1250,944,0,0,1,1,1,48,'SYS_PER_INSERT',48,'180.149.53.9');
2012-09-11 23:01:09,906 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1649}]
2012-09-11 23:01:16,879 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(127,252,'ue95069',14,14,1,1,' c, c++, matlab, xylinxs, ms office, microwind','14424','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I14<sS>User_id><p8<I252<sS>RollNo><p9<Vue95069<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V c, c++, matlab, xylinxs, ms office, microwind<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V14424<p27<sS>id><p28<I127<sS>BranchMajor_id><p29<I14<sb.','SYS_PER_UPDATE',252,'117.211.87.147');
2012-09-11 23:01:16,889 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-11 23:01:16,889 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 252==
2012-09-11 23:02:16,355 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(127,252,'ue95069',14,14,1,1,' c, c++, matlab, xylinxs, ms office, microwind','14424','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I14<sS>User_id><p8<I252<sS>RollNo><p9<Vue95069<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V c, c++, matlab, xylinxs, ms office, microwind<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V14424<p27<sS>id><p28<I127<sS>BranchMajor_id><p29<I14<sb.','SYS_PER_UPDATE',252,'117.211.87.147');
2012-09-11 23:02:16,363 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-11 23:02:16,363 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 252==
2012-09-11 23:25:34,332 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(127,252,'ue95069',14,14,1,1,' c, c++, matlab, xylinxs, ms office, microwind','14424','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I14<sS>User_id><p8<I252<sS>RollNo><p9<Vue95069<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V c, c++, matlab, xylinxs, ms office, microwind<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V14424<p27<sS>id><p28<I127<sS>BranchMajor_id><p29<I14<sb.','SYS_PER_UPDATE',252,'117.211.87.147');
2012-09-11 23:25:34,337 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-11 23:25:34,337 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 252==
2012-09-12 10:22:20,834 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1563,'1 Jan 2010','1 May 2010',2,2,1250,973,0,0,1,1,1,193,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I973<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I2<sS>UserId_id><p29<I193<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I1563<sb.','SYS_PER_UPDATE',193,'117.211.87.147');
2012-09-12 10:22:20,849 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1563}]
2012-09-12 10:24:20,220 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1568,'1 Jan 2011','1 May 2011',4,2,1300,1014,0,0,1,1,1,193,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1014<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I193<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x01+x01><p34<tp35<Rp36<sS>id><p37<I1568<sb.','SYS_PER_UPDATE',193,'117.211.87.147');
2012-09-12 10:24:20,229 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1568}]
2012-09-12 10:25:14,220 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1570,'1 Jan 1985','1 Jan 1985',5,2,1250,996,0,0,1,1,1,193,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I996<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I193<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x07+x01><p34<tp35<Rp36<sS>id><p37<I1570<sb.','SYS_PER_UPDATE',193,'117.211.87.147');
2012-09-12 10:25:14,230 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1570}]
2012-09-12 10:25:41,016 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1570,'1 Jul 2011','1 Dec 2011',5,2,1250,996,0,0,1,1,1,193,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I996<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I193<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I1570<sb.','SYS_PER_UPDATE',193,'117.211.87.147');
2012-09-12 10:25:41,027 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1570}]
2012-09-11 23:57:21,686 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 May 2012',6,2,1250,959,0,0,1,1,1,193,'SYS_PER_INSERT',193,'117.211.87.147');
2012-09-11 23:57:21,708 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1650}]
2012-09-12 10:41:41,244 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(874,'1 Apr 2006','1 Mar 2007',1,1,500,455,0,0,3,2,2,139,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I455<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I139<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I874<sb.','SYS_PER_UPDATE',139,'117.197.115.85');
2012-09-12 10:41:41,254 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 874}]
2012-09-12 00:13:27,467 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(139,'168','50','6/6','6/6','','SYS_PER_INSERT',139,'117.197.115.85');
2012-09-12 00:13:27,480 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 7}]
2012-09-12 00:44:44,420 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(29,48,'UE93039',13,13,1,1,'','19600','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I48<sS>RollNo><p9<VUE93039<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I29<sS>BranchMajor_id><p28<I13<sb.','SYS_PER_UPDATE',48,'180.149.53.9');
2012-09-12 00:44:44,431 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 29}]
2012-09-12 01:25:38,654 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Mar 2006','1 Mar 2007',1,1,500,407,0,0,3,2,2,499,'SYS_PER_INSERT',499,'122.173.130.173');
2012-09-12 01:25:38,673 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1652}]
2012-09-12 01:26:42,671 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Mar 2008','1 Mar 2009',1,1,500,414,0,0,4,2,3,499,'SYS_PER_INSERT',499,'122.173.130.173');
2012-09-12 01:26:42,682 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1653}]
2012-09-12 11:59:36,896 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 Dec 2009',1,2,1250,895,0,0,1,1,1,499,'SYS_PER_INSERT',499,'122.173.130.173');
2012-09-12 11:59:36,908 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1654}]
2012-09-12 12:00:15,206 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Jun 2010',2,2,1250,870,0,0,1,1,1,499,'SYS_PER_INSERT',499,'122.173.130.173');
2012-09-12 12:00:15,235 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1655}]
2012-09-12 12:00:51,743 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1250,944,0,0,1,1,1,499,'SYS_PER_INSERT',499,'122.173.130.173');
2012-09-12 12:00:51,761 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1656}]
2012-09-12 01:31:29,862 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Jun 2011',4,2,1250,917,0,0,1,1,1,499,'SYS_PER_INSERT',499,'122.173.130.173');
2012-09-12 01:31:29,880 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1657}]
2012-09-12 01:31:56,806 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2011','1 Dec 2011',5,2,1225,936,0,0,1,1,1,499,'SYS_PER_INSERT',499,'122.173.130.173');
2012-09-12 01:31:56,819 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1658}]
2012-09-12 12:02:28,655 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 Jun 2012',6,2,1275,952,0,0,1,1,1,499,'SYS_PER_INSERT',499,'122.173.130.173');
2012-09-12 12:02:28,676 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1659}]
2012-09-12 12:07:40,681 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(525,'UE95099',14,14,1,1,'c, c++','16627','SYS_PER_INSERT',525,'115.245.9.134');
2012-09-12 12:07:40,693 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 1, 'rescode': 375}]
2012-09-12 12:07:40,706 UserProfile line:154 DEBUG [ChangeUserGroup][525] == (1, 'Group Change Sucessful') ==
2012-09-12 01:39:39,732 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(525,'UE95099',14,14,1,1,'c, c++','16627','SYS_PER_INSERT',525,'115.245.9.134');
2012-09-12 01:39:39,735 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 2, 'rescode': 161}]
2012-09-12 12:19:19,105 UserProfile line:399 ERROR StudentDetailsUpdate : [HttpRequest : <WSGIRequest
GET:<QueryDict: {}>,
POST:<QueryDict: {u'BranchMinor': [u'17'], u'Category': [u'1'], u'Degree': [u'1'], u'RollNo': [u'UE99034'], u'ComputerProficiency': [u''], u'AIEEERank': [u'None'], u'csrfmiddlewaretoken': [u'a6e79dcb5e05fc3ba4eebe702349b6c6'], u'BranchMajor': [u'17'], u'Id': [u'104']}>,
COOKIES:{'__utma': '117285699.1137053984.1344586819.1344942716.1347431970.3',
'__utmb': '117285699.3.10.1347431970',
'__utmc': '117285699',
'__utmz': '117285699.1347431970.3.3.utmcsr=tnpuiet.com|utmccn=(referral)|utmcmd=referral|utmcct=/',
'csrftoken': 'a6e79dcb5e05fc3ba4eebe702349b6c6',
'sessionid': 'd3811b7a021ac5de3b89cd977aa49afc'},
META:{'CONTENT_LENGTH': '160',
'CONTENT_TYPE': 'application/x-www-form-urlencoded',
'CSRF_COOKIE': 'a6e79dcb5e05fc3ba4eebe702349b6c6',
'DOCUMENT_ROOT': '/var/www/vhosts/thoughtxplore.com/uiet',
'GATEWAY_INTERFACE': 'CGI/1.1',
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3',
'HTTP_ACCEPT_ENCODING': 'gzip,deflate,sdch',
'HTTP_ACCEPT_LANGUAGE': 'en-US,en;q=0.8,en-GB;q=0.6',
'HTTP_CACHE_CONTROL': 'max-age=0',
'HTTP_CONNECTION': 'keep-alive',
'HTTP_COOKIE': '__utma=36285476.1024690501.1344586826.1344586826.1344586826.1; __utmz=36285476.1344586826.1.1.utmcsr=facebook.com|utmccn=(referral)|utmcmd=referral|utmcct=/; sessionid=d3811b7a021ac5de3b89cd977aa49afc; csrftoken=a6e79dcb5e05fc3ba4eebe702349b6c6; __utma=117285699.1137053984.1344586819.1344942716.1347431970.3; __utmb=117285699.3.10.1347431970; __utmc=117285699; __utmz=117285699.1347431970.3.3.utmcsr=tnpuiet.com|utmccn=(referral)|utmcmd=referral|utmcct=/',
'HTTP_HOST': 'uiet.thoughtxplore.com',
'HTTP_ORIGIN': 'http://uiet.thoughtxplore.com',
'HTTP_REFERER': 'http://uiet.thoughtxplore.com/userprofile/UserProfile/StudentDetails/',
'HTTP_USER_AGENT': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.83 Safari/537.1',
'PATH_INFO': u'/userprofile/UserProfile/StudentDetails/update',
'PATH_TRANSLATED': '/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/apache/apache.wsgi/userprofile/UserProfile/StudentDetails/update',
'PP_CUSTOM_PHP_INI': '/var/www/vhosts/uiet.thoughtxplore.com/etc/php.ini',
'QUERY_STRING': '',
'REMOTE_ADDR': '117.220.183.128',
'REMOTE_PORT': '5035',
'REQUEST_METHOD': 'POST',
'REQUEST_URI': '/userprofile/UserProfile/StudentDetails/update',
'SCRIPT_FILENAME': '/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/apache/apache.wsgi',
'SCRIPT_NAME': u'',
'SERVER_ADDR': '119.18.58.211',
'SERVER_ADMIN': '[email protected]',
'SERVER_NAME': 'uiet.thoughtxplore.com',
'SERVER_PORT': '80',
'SERVER_PROTOCOL': 'HTTP/1.1',
'SERVER_SIGNATURE': '<address>Apache Server at uiet.thoughtxplore.com Port 80</address>\n',
'SERVER_SOFTWARE': 'Apache',
'mod_wsgi.application_group': 'uiet.thoughtxplore.com|',
'mod_wsgi.callable_object': 'application',
'mod_wsgi.handler_script': '',
'mod_wsgi.input_chunked': '0',
'mod_wsgi.listener_host': '',
'mod_wsgi.listener_port': '80',
'mod_wsgi.process_group': '',
'mod_wsgi.request_handler': 'wsgi-script',
'mod_wsgi.script_reloading': '1',
'mod_wsgi.version': (3, 3),
'wsgi.errors': <mod_wsgi.Log object at 0x2b30176d7eb0>,
'wsgi.file_wrapper': <built-in method file_wrapper of mod_wsgi.Adapter object at 0x2b30176daaf8>,
'wsgi.input': <mod_wsgi.Input object at 0x2b3017460930>,
'wsgi.multiprocess': True,
'wsgi.multithread': False,
'wsgi.run_once': False,
'wsgi.url_scheme': 'http',
'wsgi.version': (1, 1)}>]
Traceback (most recent call last):
File "/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/UserProfile/Views/UserProfile.py", line 328, in StudentDetailsUpdate
aieee= int(HttpRequest.POST["AIEEERank"])
ValueError: invalid literal for int() with base 10: 'None'
2012-09-12 01:51:31,103 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(104,223,'UE99034',17,17,1,1,'','25175','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I223<sS>RollNo><p9<VUE99034<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I104<sS>BranchMajor_id><p28<I17<sb.','SYS_PER_UPDATE',223,'117.220.183.128');
2012-09-12 01:51:31,112 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 104}]
2012-09-12 02:05:49,519 DBExtraAcademicInfo line:121 DEBUG [DBExtraAcademicInfoDetailsDelete] SELECT * FROM ExtraAcademicInfoDetailsDelete(4,326,'SYS_PER_DELETE',326,'117.197.153.35');
2012-09-12 02:05:49,526 DBExtraAcademicInfo line:124 DEBUG [DBExtraAcademicInfoDetailsDelete] [{'result': -2, 'rescode': 504}]
2012-09-12 02:06:27,172 DBExtraAcademicInfo line:121 DEBUG [DBExtraAcademicInfoDetailsDelete] SELECT * FROM ExtraAcademicInfoDetailsDelete(4,326,'SYS_PER_DELETE',326,'117.197.153.35');
2012-09-12 02:06:27,180 DBExtraAcademicInfo line:124 DEBUG [DBExtraAcademicInfoDetailsDelete] [{'result': -2, 'rescode': 504}]
2012-09-12 02:14:55,286 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(151,'162','66','','','nil','SYS_PER_INSERT',151,'122.173.223.220');
2012-09-12 02:14:55,303 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 8}]
2012-09-12 02:16:29,297 DBUserProfileMisc line:36 DEBUG [DBLegalInfoInsert] SELECT * FROM LegalInfoInsert(151,'k4958549','nil','SYS_PER_INSERT',151,'122.173.223.220');
2012-09-12 02:16:29,308 DBUserProfileMisc line:39 DEBUG [DBLegalInfoInsert] [{'result': 1, 'rescode': 5}]
2012-09-12 13:30:14,127 DBExtraAcademicInfo line:121 DEBUG [DBExtraAcademicInfoDetailsDelete] SELECT * FROM ExtraAcademicInfoDetailsDelete(4,326,'SYS_PER_DELETE',326,'117.197.123.212');
2012-09-12 13:30:14,138 DBExtraAcademicInfo line:124 DEBUG [DBExtraAcademicInfoDetailsDelete] [{'result': -2, 'rescode': 504}]
2012-09-12 13:37:37,262 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(83,46,'UE93011',13,13,1,1,'C
C++
Java(Core)','22323','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I46<sS>RollNo><p9<VUE93011<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<VC+u000aC+++u000aJava <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V22323<p27<sS>id><p28<I83<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',46,'180.149.53.9');
2012-09-12 13:37:37,267 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 13:37:37,267 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 46==
2012-09-12 13:38:07,653 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(83,46,'UE93011',13,13,1,1,'C
C++
Java (Core)','22323','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I46<sS>RollNo><p9<VUE93011<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<VC+u000aC+++u000aJava <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V22323<p27<sS>id><p28<I83<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',46,'180.149.53.9');
2012-09-12 13:38:07,659 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 13:38:07,659 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 46==
2012-09-12 13:59:23,761 DBFunctions line:196 ERROR DBStudentDetailsUpdate : [details : {'ip': '117.211.87.147', 'RequestedOperation': 'SYS_PER_UPDATE', 'aieee': 14693, 'CategoryId': 1, 'BranchMinor': 13, 'by_user': 269, 'RollNo': u'UE95022', 'Degree': 1, 'UserId': 269, 'ComputerProficiency': u' MATLAB 7.8, LABVIEW 10, ORCAD 16, EXPRESS PCB, AVR STUDIO 4, KIEL \xb5 VISION, C,C++', 'prev': 'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I269<sS>RollNo><p9<VUE95022<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V MATLAB 7.8, LABVIEW 10, ORCAD 16, EXPRESS PCB, AVR STUDIO 4, KIEL \xb5 VISION, C,C++<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V14693<p27<sS>id><p28<I141<sS>BranchMajor_id><p29<I14<sb.', 'BranchMajor': 14, 'Id': 141}]
Traceback (most recent call last):
File "/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/UserProfile/DBFunctions/DBFunctions.py", line 184, in DBStudentDetailsUpdate
query = "SELECT * FROM StudentDetailsUpdate(%s,%s,'%s',%s,%s,%s,%s,'%s','%s','%s','%s',%s,'%s');"%(details['Id'],details["UserId"],details["RollNo"],details["BranchMajor"],details["BranchMinor"],details["Degree"],details["CategoryId"],details["ComputerProficiency"],details['aieee'],details['prev'],details["RequestedOperation"],details["by_user"],details["ip"]);
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb5 in position 482: ordinal not in range(128)
2012-09-12 13:59:23,827 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -5, 'rescode': "'ascii' codec can't decode byte 0xb5 in position 482: ordinal not in range(128)"}, 269==
2012-09-12 14:07:13,729 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(369,519,'ue93060',13,13,1,3,'c,c++,.net,php','241434','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I519<sS>RollNo><p9<Vue93060<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc,c++,.net,php<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V241434<p27<sS>id><p28<I369<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',519,'117.214.146.10');
2012-09-12 14:07:13,736 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 14:07:13,737 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 519==
2012-09-12 14:07:27,297 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(369,519,'ue93060',13,13,1,3,'c,c++,.net,php','241434','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I519<sS>RollNo><p9<Vue93060<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc,c++,.net,php<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V241434<p27<sS>id><p28<I369<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',519,'117.214.146.10');
2012-09-12 14:07:27,307 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 14:07:27,307 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 519==
2012-09-12 14:41:59,545 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(115,'171','55','','','None','SYS_PER_INSERT',115,'115.244.82.35');
2012-09-12 14:41:59,556 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 9}]
2012-09-12 14:45:04,692 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(115,'Snull Network Driver','1 Aug 2012','1 Nov 2012','','','','','C, Operating System : Linux, Kernel modules loading and unloading',2,'','A network driver for ethernet in Linux being implemented through C','SYS_PER_INSERT',115,'115.244.82.35');
2012-09-12 14:45:04,703 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 7}]
2012-09-12 14:52:10,123 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(115,'Mobile Banking Application','1 Jun 2011','1 Jul 2011','NIIT','Trainee','NIIT is one of the top five training institutes in India. ','NIIT Lahurabir, Varanasi','JAVA(J2ME)',1,'','Mobile Banking application implemented through JAVA(J2ME)','SYS_PER_INSERT',115,'115.244.82.35');
2012-09-12 14:52:10,138 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 8}]
2012-09-12 14:52:31,668 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(111,121,'UE91025',18,18,1,1,'','77767','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I18<sS>User_id><p8<I121<sS>RollNo><p9<VUE91025<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I111<sS>BranchMajor_id><p28<I18<sb.','SYS_PER_UPDATE',121,'117.220.96.223');
2012-09-12 14:52:31,685 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 111}]
2012-09-12 14:54:40,912 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2006','1 Mar 2007',1,1,500,414,0,0,3,2,2,121,'SYS_PER_INSERT',121,'117.220.96.223');
2012-09-12 14:54:40,931 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1660}]
2012-09-12 14:55:38,354 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2008','1 Mar 2009',1,1,500,433,0,0,4,2,3,121,'SYS_PER_INSERT',121,'117.220.96.223');
2012-09-12 14:55:38,372 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1661}]
2012-09-12 14:57:53,512 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 Dec 2009',1,2,1250,860,0,0,1,1,1,121,'SYS_PER_INSERT',121,'117.220.96.223');
2012-09-12 14:57:53,530 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1662}]
2012-09-12 15:00:07,839 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 May 2010',2,2,1250,844,0,0,1,1,1,121,'SYS_PER_INSERT',121,'117.220.96.223');
2012-09-12 15:00:07,852 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1663}]
2012-09-12 04:31:07,706 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1350,1044,0,0,1,1,1,121,'SYS_PER_INSERT',121,'117.220.96.223');
2012-09-12 04:31:07,731 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1664}]
2012-09-12 04:31:53,602 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 May 2011',4,2,1300,980,0,0,1,1,1,121,'SYS_PER_INSERT',121,'117.220.96.223');
2012-09-12 04:31:53,624 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1665}]
2012-09-12 04:32:23,951 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1663,'1 Jan 1985','1 Jan 1985',2,2,1250,844,0,0,1,1,1,121,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I844<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I2<sS>UserId_id><p29<I121<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x01+x01><p34<tp35<Rp36<sS>id><p37<I1663<sb.','SYS_PER_UPDATE',121,'117.220.96.223');
2012-09-12 04:32:23,966 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1663}]
2012-09-12 04:33:26,202 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2011','1 Dec 2011',5,2,1350,1076,0,0,1,1,1,121,'SYS_PER_INSERT',121,'117.220.96.223');
2012-09-12 04:33:26,219 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1666}]
2012-09-12 04:34:10,629 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 May 2012',6,2,1300,1053,0,0,1,1,1,121,'SYS_PER_INSERT',121,'117.220.96.223');
2012-09-12 04:34:10,644 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1667}]
2012-09-12 04:39:28,802 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(115,'File Management System for Railways','1 Jun 2012','1 Jul 2012','Motherson Sumi Systems Limited','Trainee','Motherson Sumi Systems Limited (MSSL) is the flagship company of the Samvardhana Motherson Group and was established in 1986. It is a joint venture between Samvardhana Motherson Group and Sumitomo Wiring Systems (Japan). MSSL is a focused, dynamic and progressive company providing customers with innovative and value-added products, services and solutions. ','C 14 a&B,, Sector 1 Noida, Uttar Pradesh 201301
','C, MySQL, Linux Operating System, Client-Server architecture',1,'Ms. Saji Nair','Implemented a File Management System for Engineering Department of Railways in C and MySQL in Linux Operating System on a client-server architecture.','SYS_PER_INSERT',115,'115.245.225.136');
2012-09-12 04:39:28,814 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 9}]
2012-09-12 04:39:53,317 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(111,121,'UE91025',18,18,1,1,'Good','77767','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I18<sS>User_id><p8<I121<sS>RollNo><p9<VUE91025<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V77767<p27<sS>id><p28<I111<sS>BranchMajor_id><p29<I18<sb.','SYS_PER_UPDATE',121,'117.220.96.223');
2012-09-12 04:39:53,331 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 111}]
2012-09-12 15:11:49,767 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(115,'ER Diagram to Database Converter','1 Aug 2012','1 Nov 2012','','','','','JAVA, SQL',2,'','Implementing a JAVA application to draw an ER Diagram and create a database accordingly.','SYS_PER_INSERT',115,'115.245.225.136');
2012-09-12 15:11:49,771 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 2, 'rescode': 161}]
2012-09-12 04:43:36,331 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(115,'ER Diagram to Database Converter','1 Aug 2012','1 Nov 2012','','','','','JAVA, SQL',2,'','Undertaken a project to develop a CASE tool to draw an ER Diagram and create a database accordingly in JAVA.','SYS_PER_INSERT',115,'115.245.225.136');
2012-09-12 04:43:36,333 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 2, 'rescode': 161}]
2012-09-12 04:58:53,847 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(939,'1 Jan 1985','1 Jan 1985',1,1,850,702,0,0,3,20,2,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd7+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I850<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I702<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd6+x04+x01><p34<tp35<Rp36<sS>id><p37<I939<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 04:58:53,858 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 939}]
2012-09-12 04:59:00,418 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(940,'1 Jan 1985','1 Jan 1985',1,1,450,367,0,0,4,20,3,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I3<sS>TotalMarks><p14<I450<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I367<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I4<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd8+x04+x01><p34<tp35<Rp36<sS>id><p37<I940<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 04:59:00,428 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 940}]
2012-09-12 04:59:10,462 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(939,'1 Jan 1985','1 Jan 1985',1,1,850,702,0,0,3,20,2,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I20<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I850<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I702<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I939<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 04:59:10,469 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 939}]
2012-09-12 04:59:17,267 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(940,'1 Jan 1985','1 Jan 1985',1,1,450,367,0,0,4,20,3,475,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I20<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I3<sS>TotalMarks><p14<I450<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I367<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I4<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I940<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 04:59:17,277 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 940}]
2012-09-12 04:59:23,713 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(940,'1 Jan 1985','1 Jan 1985',1,1,450,367,0,0,4,20,3,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I20<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I3<sS>TotalMarks><p14<I450<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I367<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I4<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I940<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 04:59:23,726 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 940}]
2012-09-12 04:59:44,789 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(941,'1 Jan 1985','1 Jan 1985',1,2,1250,822,0,0,1,1,1,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I822<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x07+x01><p34<tp35<Rp36<sS>id><p37<I941<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 04:59:44,795 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 941}]
2012-09-12 15:29:48,968 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(942,'1 Jan 1985','1 Jan 1985',2,2,1250,920,0,0,1,1,1,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I920<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I2<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x01+x01><p34<tp35<Rp36<sS>id><p37<I942<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 15:29:49,001 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 942}]
2012-09-12 04:59:51,644 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(943,'1 Jan 1985','1 Jan 1985',3,2,1250,863,0,0,1,1,1,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I863<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I3<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x07+x01><p34<tp35<Rp36<sS>id><p37<I943<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 04:59:51,656 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 943}]
2012-09-12 04:59:55,173 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(944,'1 Jan 1985','1 Jan 1985',4,2,1250,912,0,0,1,1,1,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I912<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x01+x01><p34<tp35<Rp36<sS>id><p37<I944<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 04:59:55,183 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 944}]
2012-09-12 15:30:01,426 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(945,'1 Jan 1985','1 Jan 1985',5,2,1225,892,0,0,1,1,1,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1225<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I892<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x07+x01><p34<tp35<Rp36<sS>id><p37<I945<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 15:30:01,436 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 945}]
2012-09-12 05:00:10,389 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(946,'1 Jan 1985','1 Jan 1985',6,2,1250,970,0,0,1,1,1,475,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdc+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I970<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I6<sS>UserId_id><p29<I475<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdc+x01+x01><p34<tp35<Rp36<sS>id><p37<I946<sb.','SYS_PER_UPDATE',475,'115.111.184.44');
2012-09-12 05:00:10,399 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 946}]
2012-09-12 16:00:36,648 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(175,321,'ue93095',13,13,1,1,'C, C++, JAVA, C# .NET, HTML, Javascript, PHP, AJAX','19709','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I321<sS>RollNo><p9<Vue93095<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V19709<p27<sS>id><p28<I175<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',321,'180.149.53.9');
2012-09-12 16:00:36,660 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 175}]
2012-09-12 16:45:04,977 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(125,'179','65','','','','SYS_PER_INSERT',125,'124.253.213.173');
2012-09-12 16:45:05,006 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 10}]
2012-09-12 06:24:06,343 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(369,519,'ue93060',13,13,1,3,'c,c++,asp.net,php','241434','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I519<sS>RollNo><p9<Vue93060<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc,c++,.net,php<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V241434<p27<sS>id><p28<I369<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',519,'117.214.148.110');
2012-09-12 06:24:06,351 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 06:24:06,351 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 519==
2012-09-12 06:24:19,571 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(369,519,'ue93060',13,13,1,3,'c,c++,asp.net,php','241434','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I519<sS>RollNo><p9<Vue93060<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc,c++,.net,php<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V241434<p27<sS>id><p28<I369<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',519,'117.214.148.110');
2012-09-12 06:24:19,581 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 06:24:19,582 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 519==
2012-09-12 06:24:29,436 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(369,519,'ue93060',13,13,1,3,'c,c++,asp.net,php','241434','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I519<sS>RollNo><p9<Vue93060<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc,c++,.net,php<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V241434<p27<sS>id><p28<I369<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',519,'117.214.148.110');
2012-09-12 06:24:29,443 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 06:24:29,443 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 519==
2012-09-12 06:24:41,740 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(369,519,'ue93060',13,13,1,3,'c,c++,asp.net,php','241434','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I519<sS>RollNo><p9<Vue93060<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc,c++,.net,php<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V241434<p27<sS>id><p28<I369<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',519,'117.214.148.110');
2012-09-12 06:24:41,748 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 06:24:41,748 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 519==
2012-09-12 07:00:00,920 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1349,'1 Jan 1985','1 Jan 1985',1,1,500,460,0,0,3,2,2,136,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd7+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I460<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I136<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd6+x05+x01><p34<tp35<Rp36<sS>id><p37<I1349<sb.','SYS_PER_UPDATE',136,'117.211.87.147');
2012-09-12 07:00:00,930 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1349}]
2012-09-12 17:32:25,935 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1360,'1 Jan 1985','1 Jan 1985',2,2,1250,676,1,0,1,1,1,136,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I714<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I2<sS>UserId_id><p29<I136<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I1<sS>SessionStart><p33<g9<(S>+x07+xda+x01+x01><p34<tp35<Rp36<sS>id><p37<I1360<sb.','SYS_PER_UPDATE',136,'117.211.87.147');
2012-09-12 17:32:25,945 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1360}]
2012-09-12 07:03:29,212 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1361,'1 Jan 1985','1 Jan 1985',3,2,1200,700,1,0,1,1,1,136,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1200<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I708<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I3<sS>UserId_id><p29<I136<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I1<sS>SessionStart><p33<g9<(S>+x07+xda+x07+x01><p34<tp35<Rp36<sS>id><p37<I1361<sb.','SYS_PER_UPDATE',136,'117.211.87.147');
2012-09-12 07:03:29,222 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1361}]
2012-09-12 17:34:22,560 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1359,'1 Jan 1985','1 Jan 1985',4,2,1300,760,0,0,1,1,1,136,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I780<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I136<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x01+x01><p34<tp35<Rp36<sS>id><p37<I1359<sb.','SYS_PER_UPDATE',136,'117.211.87.147');
2012-09-12 17:34:22,572 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1359}]
2012-09-12 17:35:16,451 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1356,'1 Jan 1985','1 Jan 1985',5,2,1250,907,0,0,1,1,1,136,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I913<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I136<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x07+x01><p34<tp35<Rp36<sS>id><p37<I1356<sb.','SYS_PER_UPDATE',136,'117.211.87.147');
2012-09-12 17:35:16,461 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1356}]
2012-09-12 17:35:39,458 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1354,'1 Jan 1985','1 Jan 1985',6,2,1250,921,0,0,1,1,1,136,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdc+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I921<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I6<sS>UserId_id><p29<I136<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdc+x01+x01><p34<tp35<Rp36<sS>id><p37<I1354<sb.','SYS_PER_UPDATE',136,'117.211.87.147');
2012-09-12 17:35:39,468 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1354}]
2012-09-12 07:10:05,766 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(137,'167','73','6/6','6/6','','SYS_PER_INSERT',137,'117.197.115.219');
2012-09-12 07:10:05,776 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 11}]
2012-09-12 07:11:28,830 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(136,'','1 Jan 1985','1 Jan 1985','','','','','',2,'','','SYS_PER_INSERT',136,'117.211.87.147');
2012-09-12 07:11:28,837 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 10}]
2012-09-12 17:45:21,700 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(287,'173','60','-0.75','-2.5','wear specs','SYS_PER_INSERT',287,'117.211.87.147');
2012-09-12 17:45:21,716 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 12}]
2012-09-12 17:45:33,909 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1245,'1 Jan 2012','1 Jun 2012',6,2,1300,1091,0,0,1,1,1,237,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdc+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1091<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I6<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdc+x01+x01><p34<tp35<Rp36<sS>id><p37<I1245<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:45:33,920 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1245}]
2012-09-12 17:46:51,851 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1201,'1 Apr 2006','1 Mar 2007',1,1,500,439,0,0,3,2,2,237,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd7+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I439<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd6+x04+x01><p34<tp35<Rp36<sS>id><p37<I1201<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:46:51,863 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1201}]
2012-09-12 17:47:38,383 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1205,'1 Apr 2008','1 Mar 2009',1,1,500,455,0,0,4,2,3,237,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I3<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I455<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I4<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd8+x04+x01><p34<tp35<Rp36<sS>id><p37<I1205<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:47:38,393 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1205}]
2012-09-12 17:48:26,680 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1206,'1 Jul 2009','1 Dec 2009',1,2,1250,965,0,0,1,1,1,237,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I965<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x07+x01><p34<tp35<Rp36<sS>id><p37<I1206<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:48:26,693 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1206}]
2012-09-12 17:49:07,433 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1209,'1 Jan 2010','1 May 2010',2,2,1250,1006,0,0,1,1,1,237,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1006<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I2<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x01+x01><p34<tp35<Rp36<sS>id><p37<I1209<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:49:07,443 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1209}]
2012-09-12 17:49:47,268 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1211,'1 Jul 2010','1 Dec 2010',3,2,1350,1053,0,0,1,1,1,237,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1350<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1053<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I3<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x07+x01><p34<tp35<Rp36<sS>id><p37<I1211<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:49:47,277 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1211}]
2012-09-12 17:50:29,056 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1213,'1 Jan 2011','1 May 2011',4,2,1300,1105,0,0,1,1,1,237,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1105<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x01+x01><p34<tp35<Rp36<sS>id><p37<I1213<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:50:29,062 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1213}]
2012-09-12 17:51:17,990 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1213,'1 Jan 2011','1 May 2011',4,2,1300,1105,0,0,1,1,1,237,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1105<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x01+x01><p34<tp35<Rp36<sS>id><p37<I1213<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:51:17,996 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1213}]
2012-09-12 17:52:01,151 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1220,'1 Jul 2011','1 Dec 2011',5,2,1350,1125,0,0,1,1,1,237,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1350<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1125<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x07+x01><p34<tp35<Rp36<sS>id><p37<I1220<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:52:01,164 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1220}]
2012-09-12 17:52:34,829 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1206,'1 Jul 2011','1 Dec 2011',1,2,1350,1125,0,0,1,1,1,237,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I965<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x07+x01><p34<tp35<Rp36<sS>id><p37<I1206<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:52:34,839 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1206}]
2012-09-12 17:54:46,254 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1206,'1 Jul 2009','1 Dec 2009',1,2,1250,965,0,0,1,1,1,237,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1350<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1125<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I237<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x07+x01><p34<tp35<Rp36<sS>id><p37<I1206<sb.','SYS_PER_UPDATE',237,'14.98.187.83');
2012-09-12 17:54:46,261 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1206}]
2012-09-12 18:05:41,093 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(787,'1 Apr 2006','1 Mar 2007',1,1,500,429,0,0,3,2,2,461,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I429<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I461<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I787<sb.','SYS_PER_UPDATE',461,'180.149.53.4');
2012-09-12 18:05:41,101 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 787}]
2012-09-12 18:09:42,397 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(461,'ACCEDER','1 Jun 2011','1 Jul 2011','Doeacc ','','','','core java',1,'','Acceder is a school database management system that manages the admission and grade management of students.','SYS_PER_INSERT',461,'180.149.53.4');
2012-09-12 18:09:42,407 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 11}]
2012-09-12 18:20:52,734 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(852,'1 Jan 1985','1 Jan 1985',1,2,1250,894,0,0,1,1,1,113,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I895<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I113<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x04+x01><p34<tp35<Rp36<sS>id><p37<I852<sb.','SYS_PER_UPDATE',113,'121.245.22.4');
2012-09-12 18:20:52,745 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 852}]
2012-09-12 18:22:27,520 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(854,'1 Jan 1985','1 Jan 1985',3,2,1200,738,0,0,1,1,1,113,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x0b+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I766<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I3<sS>UserId_id><p29<I113<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x06+x01><p34<tp35<Rp36<sS>id><p37<I854<sb.','SYS_PER_UPDATE',113,'121.245.22.4');
2012-09-12 18:22:27,532 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 854}]
2012-09-12 18:22:54,172 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(855,'1 Jan 1985','1 Jan 1985',4,2,1300,882,0,0,1,1,1,113,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I870<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I113<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x0c+x01><p34<tp35<Rp36<sS>id><p37<I855<sb.','SYS_PER_UPDATE',113,'121.245.22.4');
2012-09-12 18:22:54,186 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 855}]
2012-09-12 18:23:15,057 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(856,'1 Jan 1985','1 Jan 1985',5,2,1250,819,0,0,1,1,1,113,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0b+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I820<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I113<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x07+x01><p34<tp35<Rp36<sS>id><p37<I856<sb.','SYS_PER_UPDATE',113,'121.245.22.4');
2012-09-12 18:23:15,071 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 856}]
2012-09-12 18:23:51,547 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(932,'1 Apr 2008','1 Mar 2009',1,1,500,405,0,0,4,2,3,94,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I3<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I405<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I94<sS>DegreeType_id><p30<I4<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I932<sb.','SYS_PER_UPDATE',94,'101.63.60.123');
2012-09-12 18:23:51,557 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 932}]
2012-09-12 18:25:38,055 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(862,'1 Jan 1985','1 Jan 1985',6,2,1250,718,0,0,1,1,1,113,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdc+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I725<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I6<sS>UserId_id><p29<I113<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x0c+x01><p34<tp35<Rp36<sS>id><p37<I862<sb.','SYS_PER_UPDATE',113,'121.245.22.4');
2012-09-12 18:25:38,065 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 862}]
2012-09-12 18:26:10,699 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(94,'185','100','','','','SYS_PER_INSERT',94,'101.63.60.123');
2012-09-12 18:26:10,709 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 13}]
2012-09-12 18:30:24,110 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(369,519,'ue93060',13,13,1,3,'c,c++,asp.net,php','241434','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I519<sS>RollNo><p9<Vue93060<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc,c++,.net,php<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V241434<p27<sS>id><p28<I369<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',519,'117.214.148.110');
2012-09-12 18:30:24,115 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 18:30:24,116 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 519==
2012-09-12 18:55:59,858 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2008','1 Mar 2009',1,1,500,410,0,0,4,2,3,108,'SYS_PER_INSERT',108,'117.220.178.228');
2012-09-12 18:55:59,876 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1668}]
2012-09-12 18:56:34,222 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 Dec 2009',1,2,1250,827,0,0,1,1,1,108,'SYS_PER_INSERT',108,'117.220.178.228');
2012-09-12 18:56:34,239 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1669}]
2012-09-12 18:57:15,545 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Jun 2010',2,2,1250,741,0,0,1,1,1,108,'SYS_PER_INSERT',108,'117.220.178.228');
2012-09-12 18:57:15,563 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1670}]
2012-09-12 18:59:46,133 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1250,794,0,0,1,1,1,108,'SYS_PER_INSERT',108,'117.220.178.228');
2012-09-12 18:59:46,150 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1671}]
2012-09-12 19:00:51,099 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Jun 2011',4,2,1250,864,0,0,1,1,1,108,'SYS_PER_INSERT',108,'117.220.178.228');
2012-09-12 19:00:51,117 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1672}]
2012-09-12 19:01:27,006 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2011','1 Dec 2011',5,2,1225,864,0,0,1,1,1,108,'SYS_PER_INSERT',108,'117.220.178.228');
2012-09-12 19:01:27,021 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1673}]
2012-09-12 19:01:58,144 DBUserProfileMisc line:53 DEBUG [DBMedicalInfoUpdate] SELECT * FROM MedicalInfoUpdate(5,116,'182','70','','','','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<MedicalInfo<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>User_id><p7<I116<sS>Weight><p8<V70<p9<sS>_state><p10<ccopy_reg<_reconstructor<p11<(cdjango.db.models.base<ModelState<p12<c__builtin__<object<p13<Ntp14<Rp15<(dp16<S>adding><p17<I00<sS>db><p18<S>default><p19<sbsS>LeftEye><p20<V<p21<sS>Height><p22<V182<p23<sS>DisabilityInfo><p24<g21<sS>RightEye><p25<g21<sS>id><p26<I5<sb.','SYS_PER_UPDATE',116,'117.211.87.147');
2012-09-12 19:01:58,151 DBUserProfileMisc line:56 DEBUG [DBMedicalInfoUpdate] [{'result': 1, 'rescode': 5}]
2012-09-12 19:03:01,136 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 Jun 2012',6,2,1275,968,0,0,1,1,1,108,'SYS_PER_INSERT',108,'117.220.178.228');
2012-09-12 19:03:01,154 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1674}]
2012-09-12 19:08:44,877 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(55,116,'UE93087',13,13,1,1,'C/C++,JAVA,MySQL','16272','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I116<sS>RollNo><p9<VUE93087<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<VC/C++,JAVA,MySQL<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V16272<p27<sS>id><p28<I55<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',116,'117.211.87.147');
2012-09-12 19:08:44,888 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 55}]
2012-09-12 19:19:01,461 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(312,472,'UE93002',13,13,1,3,'Basic languages: c, c++, java
Basic OS comfortable with: windows xp, Windows7, vista.','108420','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I472<sS>RollNo><p9<VUE93002<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V c, c++, java <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V108420<p27<sS>id><p28<I312<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',472,'115.185.159.79');
2012-09-12 19:19:01,472 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 312}]
2012-09-12 19:26:29,763 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(462,'ue95047',14,14,1,1,'.','16592','SYS_PER_INSERT',462,'117.211.87.147');
2012-09-12 19:26:29,771 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': -2, 'rescode': 504}]
2012-09-12 19:26:29,771 UserProfile line:159 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 462==
2012-09-12 19:29:50,133 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(90,'172','52','','','','SYS_PER_INSERT',90,'117.211.87.147');
2012-09-12 19:29:50,155 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 14}]
2012-09-12 19:31:00,553 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(462,'UE95047',14,13,1,1,'','16592','SYS_PER_INSERT',462,'117.211.87.147');
2012-09-12 19:31:00,559 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 2, 'rescode': 161}]
2012-09-12 19:31:36,019 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(462,'UE95047',14,13,1,1,'','16592','SYS_PER_INSERT',462,'117.211.87.147');
2012-09-12 19:31:36,021 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 2, 'rescode': 161}]
2012-09-12 19:37:12,354 UserProfile line:399 ERROR StudentDetailsUpdate : [HttpRequest : <WSGIRequest
GET:<QueryDict: {}>,
POST:<QueryDict: {u'BranchMinor': [u'14'], u'Category': [u'1'], u'Degree': [u'1'], u'RollNo': [u'UE95047'], u'ComputerProficiency': [u''], u'AIEEERank': [u'None'], u'csrfmiddlewaretoken': [u'd4d09bfa85fbbb60b70d3cbce696ed0b'], u'BranchMajor': [u'14'], u'Id': [u'59']}>,
COOKIES:{'csrftoken': 'd4d09bfa85fbbb60b70d3cbce696ed0b',
'sessionid': '10accb5bacbc6a553efb18d16a3d8dfc'},
META:{'CONTENT_LENGTH': '159',
'CONTENT_TYPE': 'application/x-www-form-urlencoded',
'CSRF_COOKIE': 'd4d09bfa85fbbb60b70d3cbce696ed0b',
'DOCUMENT_ROOT': '/var/www/vhosts/thoughtxplore.com/uiet',
'GATEWAY_INTERFACE': 'CGI/1.1',
'HTTP_ACCEPT': 'application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5',
'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3',
'HTTP_ACCEPT_ENCODING': 'gzip,deflate,sdch',
'HTTP_ACCEPT_LANGUAGE': 'en-US,en;q=0.8',
'HTTP_CACHE_CONTROL': 'max-age=0',
'HTTP_CONNECTION': 'keep-alive',
'HTTP_COOKIE': 'sessionid=10accb5bacbc6a553efb18d16a3d8dfc; csrftoken=d4d09bfa85fbbb60b70d3cbce696ed0b',
'HTTP_HOST': 'uiet.thoughtxplore.com',
'HTTP_ORIGIN': 'http://uiet.thoughtxplore.com',
'HTTP_REFERER': 'http://uiet.thoughtxplore.com/userprofile/UserProfile/StudentDetails/',
'HTTP_USER_AGENT': 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.6 (KHTML, like Gecko) Chrome/7.0.503.0 Safari/534.6',
'HTTP_X_FORWARDED_FOR': '172.16.22.229',
'PATH_INFO': u'/userprofile/UserProfile/StudentDetails/update',
'PATH_TRANSLATED': '/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/apache/apache.wsgi/userprofile/UserProfile/StudentDetails/update',
'PP_CUSTOM_PHP_INI': '/var/www/vhosts/uiet.thoughtxplore.com/etc/php.ini',
'QUERY_STRING': '',
'REMOTE_ADDR': '117.211.87.147',
'REMOTE_PORT': '7651',
'REQUEST_METHOD': 'POST',
'REQUEST_URI': '/userprofile/UserProfile/StudentDetails/update',
'SCRIPT_FILENAME': '/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/apache/apache.wsgi',
'SCRIPT_NAME': u'',
'SERVER_ADDR': '119.18.58.211',
'SERVER_ADMIN': '[email protected]',
'SERVER_NAME': 'uiet.thoughtxplore.com',
'SERVER_PORT': '80',
'SERVER_PROTOCOL': 'HTTP/1.1',
'SERVER_SIGNATURE': '<address>Apache Server at uiet.thoughtxplore.com Port 80</address>\n',
'SERVER_SOFTWARE': 'Apache',
'mod_wsgi.application_group': 'uiet.thoughtxplore.com|',
'mod_wsgi.callable_object': 'application',
'mod_wsgi.handler_script': '',
'mod_wsgi.input_chunked': '0',
'mod_wsgi.listener_host': '',
'mod_wsgi.listener_port': '80',
'mod_wsgi.process_group': '',
'mod_wsgi.request_handler': 'wsgi-script',
'mod_wsgi.script_reloading': '1',
'mod_wsgi.version': (3, 3),
'wsgi.errors': <mod_wsgi.Log object at 0x2b5ab94624f0>,
'wsgi.file_wrapper': <built-in method file_wrapper of mod_wsgi.Adapter object at 0x2b5ab94a7a08>,
'wsgi.input': <mod_wsgi.Input object at 0x2b5ab94625b0>,
'wsgi.multiprocess': True,
'wsgi.multithread': False,
'wsgi.run_once': False,
'wsgi.url_scheme': 'http',
'wsgi.version': (1, 1)}>]
Traceback (most recent call last):
File "/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/UserProfile/Views/UserProfile.py", line 328, in StudentDetailsUpdate
aieee= int(HttpRequest.POST["AIEEERank"])
ValueError: invalid literal for int() with base 10: 'None'
2012-09-12 19:37:55,338 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(59,132,'UE95047',14,14,1,1,'','16592','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I14<sS>User_id><p8<I132<sS>RollNo><p9<VUE95047<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I59<sS>BranchMajor_id><p28<I14<sb.','SYS_PER_UPDATE',132,'117.211.87.147');
2012-09-12 19:37:55,346 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 19:37:55,347 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 132==
2012-09-12 19:38:34,349 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(59,132,'UE95047',14,14,1,1,'','16592','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I14<sS>User_id><p8<I132<sS>RollNo><p9<VUE95047<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I59<sS>BranchMajor_id><p28<I14<sb.','SYS_PER_UPDATE',132,'117.211.87.147');
2012-09-12 19:38:34,354 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 19:38:34,354 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 132==
2012-09-12 19:45:15,180 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(42,81,'UE-99029',17,17,1,1,'auto cad,c,pro e,ms office','25545','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I81<sS>RollNo><p9<VUE-99029<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vauto cad,c,pro e,ms office<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V25545<p27<sS>id><p28<I42<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',81,'122.173.250.136');
2012-09-12 19:45:15,194 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 42}]
2012-09-12 19:45:44,205 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(75,'UE-99009',17,17,1,1,'autocad, pro e, ms office, basic photoshop','25996','SYS_PER_INSERT',75,'122.173.180.156');
2012-09-12 19:45:44,210 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': -2, 'rescode': 504}]
2012-09-12 19:45:44,210 UserProfile line:159 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 75==
2012-09-12 19:46:08,526 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(152,'ue93076',13,13,1,1,'','29158','SYS_PER_INSERT',152,'14.98.68.78');
2012-09-12 19:46:08,533 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 1, 'rescode': 376}]
2012-09-12 19:46:08,540 UserProfile line:154 DEBUG [ChangeUserGroup][152] == (1, 'Group Change Sucessful') ==
2012-09-12 19:49:28,093 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(75,'UE-99008',17,17,1,1,'autocad, pro e, ms office, basic photoshop','25996','SYS_PER_INSERT',75,'122.173.180.156');
2012-09-12 19:49:28,101 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': -2, 'rescode': 504}]
2012-09-12 19:49:28,102 UserProfile line:159 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 75==
2012-09-12 19:53:58,680 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(336,63,'UE91071',18,18,1,1,' Basic knowledge of microsoft office and good knowledge of C and C++ languages.','64610','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I18<sS>User_id><p8<I63<sS>RollNo><p9<VUE91071<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V Basic knowledge of microsoft office and good knowledge of C and C++ languages.<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V64610<p27<sS>id><p28<I336<sS>BranchMajor_id><p29<I18<sb.','SYS_PER_UPDATE',63,'210.56.102.178');
2012-09-12 19:53:58,695 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 336}]
2012-09-12 09:37:47,230 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(303,105,'UE93030',13,13,1,1,' C, C++, PHP, MySQL, Core Java','13831','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I105<sS>RollNo><p9<VUE93030<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V13831<p27<sS>id><p28<I303<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',105,'112.196.13.130');
2012-09-12 09:37:47,241 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 303}]
2012-09-12 20:09:37,197 DBUserProfileMisc line:53 DEBUG [DBMedicalInfoUpdate] SELECT * FROM MedicalInfoUpdate(6,38,'163','62','6/6','6/6','NA','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<MedicalInfo<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>User_id><p7<I38<sS>Weight><p8<V62<p9<sS>_state><p10<ccopy_reg<_reconstructor<p11<(cdjango.db.models.base<ModelState<p12<c__builtin__<object<p13<Ntp14<Rp15<(dp16<S>adding><p17<I00<sS>db><p18<S>default><p19<sbsS>LeftEye><p20<V<p21<sS>Height><p22<V163<p23<sS>DisabilityInfo><p24<g21<sS>RightEye><p25<g21<sS>id><p26<I6<sb.','SYS_PER_UPDATE',38,'14.98.180.170');
2012-09-12 20:09:37,203 DBUserProfileMisc line:56 DEBUG [DBMedicalInfoUpdate] [{'result': 1, 'rescode': 6}]
2012-09-12 20:09:45,083 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(315,476,'UE-99006',17,17,1,1,' AutoCAD, C, ProE, MS Office. ','15720','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I476<sS>RollNo><p9<VUE-99006<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V AutoCAD, C, ProE, MS Office. <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V15720<p27<sS>id><p28<I315<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',476,'117.214.151.44');
2012-09-12 20:09:45,093 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 20:09:45,094 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 476==
2012-09-12 09:40:07,158 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(315,476,'UE-99006',17,17,1,1,' AutoCAD, C, ProE, MS Office. ','15720','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I476<sS>RollNo><p9<VUE-99006<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V AutoCAD, C, ProE, MS Office. <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V15720<p27<sS>id><p28<I315<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',476,'117.214.151.44');
2012-09-12 09:40:07,164 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 09:40:07,164 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 476==
2012-09-12 20:10:41,955 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(105,'157','51','','','','SYS_PER_INSERT',105,'112.196.13.130');
2012-09-12 20:10:41,970 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 15}]
2012-09-12 09:41:05,336 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(264,'Grain Storage','1 Sep 2012','1 Nov 2012','','','','','',2,'','','SYS_PER_INSERT',264,'117.197.135.28');
2012-09-12 09:41:05,342 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 12}]
2012-09-12 20:14:32,523 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(315,476,'UE-99006',17,17,1,1,' AutoCAD, C, ProE, MS Office. ','15720','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I476<sS>RollNo><p9<VUE-99006<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V AutoCAD, C, ProE, MS Office. <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V15720<p27<sS>id><p28<I315<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',476,'117.214.151.44');
2012-09-12 20:14:32,532 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 20:14:32,532 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 476==
2012-09-12 09:45:50,349 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(102,'UE99075',17,17,1,3,'','125807','SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 09:45:50,358 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 1, 'rescode': 377}]
2012-09-12 09:45:50,368 UserProfile line:154 DEBUG [ChangeUserGroup][102] == (1, 'Group Change Sucessful') ==
2012-09-12 09:46:37,068 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(526,'ue99074',17,17,1,1,'c, autocad, catia, pro/engineering','25350','SYS_PER_INSERT',526,'122.173.164.81');
2012-09-12 09:46:37,135 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 1, 'rescode': 378}]
2012-09-12 09:46:37,152 UserProfile line:154 DEBUG [ChangeUserGroup][526] == (1, 'Group Change Sucessful') ==
2012-09-12 09:46:53,676 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2006','1 Mar 2007',1,1,700,611,0,0,3,4,2,92,'SYS_PER_INSERT',92,'117.197.116.75');
2012-09-12 09:46:53,701 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1675}]
2012-09-12 09:48:42,338 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2008','1 May 2009',1,1,500,393,0,0,4,2,3,92,'SYS_PER_INSERT',92,'117.197.116.75');
2012-09-12 09:48:42,351 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1676}]
2012-09-12 09:50:09,878 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jun 2009','1 Dec 2009',1,2,1250,983,0,0,1,1,1,92,'SYS_PER_INSERT',92,'117.197.116.75');
2012-09-12 09:50:09,890 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1677}]
2012-09-12 09:51:00,379 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Apr 2010',2,2,1250,942,0,0,1,1,1,92,'SYS_PER_INSERT',92,'117.197.116.75');
2012-09-12 09:51:00,394 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1678}]
2012-09-12 09:52:05,119 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jun 2010','1 Dec 2010',3,2,1200,1012,0,0,1,1,1,92,'SYS_PER_INSERT',92,'117.197.116.75');
2012-09-12 09:52:05,139 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1679}]
2012-09-12 09:53:03,483 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Apr 2011',4,2,1300,1066,0,0,1,1,1,92,'SYS_PER_INSERT',92,'117.197.116.75');
2012-09-12 09:53:03,496 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1680}]
2012-09-12 09:54:06,799 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jun 2011','1 Dec 2011',5,2,1250,990,0,0,1,1,1,92,'SYS_PER_INSERT',92,'117.197.116.75');
2012-09-12 09:54:06,841 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1681}]
2012-09-12 09:54:58,605 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 Apr 2012',6,2,1250,1022,0,0,1,1,1,92,'SYS_PER_INSERT',92,'117.197.116.75');
2012-09-12 09:54:58,623 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1682}]
2012-09-12 09:59:42,182 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1612,'1 Jan 1985','1 Jan 1985',1,1,500,455,0,0,3,4,2,138,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd7+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I455<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I138<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd6+x07+x01><p34<tp35<Rp36<sS>id><p37<I1612<sb.','SYS_PER_UPDATE',138,'117.214.150.53');
2012-09-12 09:59:42,194 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1612}]
2012-09-12 10:00:32,062 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1612,'1 Jul 2006','1 Jun 2007',1,1,500,455,0,0,3,4,2,138,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I4<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I455<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I138<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I1612<sb.','SYS_PER_UPDATE',138,'117.214.150.53');
2012-09-12 10:00:32,072 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1612}]
2012-09-12 10:01:27,197 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(165,302,'UE99046',17,17,1,1,'','19106','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I302<sS>RollNo><p9<VUE99046<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I165<sS>BranchMajor_id><p28<I17<sb.','SYS_PER_UPDATE',302,'117.211.87.147');
2012-09-12 10:01:27,208 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 10:01:27,208 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 302==
2012-09-12 10:06:09,833 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(94,'SAVE SUKHNA LAKE','1 Aug 2012','1 Dec 2012','','','','','Research Work',2,'','Sukhna is presently suffering from various problems like Siltation, Weed Overgrowth, Catchment Adequacy. Our aim is to provide efficient and cost effective methods, to remove these problems, to U.T. Administration.','SYS_PER_INSERT',94,'101.63.60.123');
2012-09-12 10:06:09,844 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 13}]
2012-09-12 10:10:47,935 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(94,'GENERATE ELECTRICITY USING WASTE HEAT ENERGY','1 Aug 2012','1 Dec 2012','','','','','',2,'','We all know that heat generated by Refrigerators, Air Conditioners, etc goes waste into the atmosphere. Our aim is to use this energy to generate electricity. For this we will use Seebeck Effect of Thermocouple. We will create a sufficient temperature gradient and convert it into potential difference.','SYS_PER_INSERT',94,'101.63.60.123');
2012-09-12 10:10:47,938 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 2, 'rescode': 161}]
2012-09-12 10:11:47,151 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2006','1 Mar 2007',1,1,500,466,0,0,3,2,2,467,'SYS_PER_INSERT',467,'115.244.48.182');
2012-09-12 10:11:47,169 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1683}]
2012-09-12 10:12:32,751 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2008','1 Mar 2009',1,1,500,467,0,0,4,2,3,467,'SYS_PER_INSERT',467,'115.244.48.182');
2012-09-12 10:12:32,772 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1684}]
2012-09-12 10:14:42,666 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 Dec 2009',1,2,1250,1001,0,0,1,1,1,467,'SYS_PER_INSERT',467,'115.244.48.182');
2012-09-12 10:14:42,688 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1685}]
2012-09-12 10:15:39,344 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Apr 2010',2,2,1250,983,0,0,1,1,1,467,'SYS_PER_INSERT',467,'115.244.48.182');
2012-09-12 10:15:39,355 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1686}]
2012-09-12 10:16:39,557 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1200,916,0,0,1,1,1,467,'SYS_PER_INSERT',467,'115.244.48.182');
2012-09-12 10:16:39,575 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1687}]
2012-09-12 10:17:20,115 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Apr 2011',4,2,1300,1034,0,0,1,1,1,467,'SYS_PER_INSERT',467,'115.244.48.182');
2012-09-12 10:17:20,128 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1688}]
2012-09-12 10:18:30,934 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2011','1 Dec 2011',5,2,1250,990,0,0,1,1,1,467,'SYS_PER_INSERT',467,'115.244.48.182');
2012-09-12 10:18:30,959 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1689}]
2012-09-12 20:49:06,666 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 Apr 2012',6,2,1250,1027,0,0,1,1,1,467,'SYS_PER_INSERT',467,'115.244.48.182');
2012-09-12 20:49:06,684 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1690}]
2012-09-12 10:20:28,032 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(64,144,'ue93094',13,13,1,1,'C , C++ , JAVA , HTNL , PHP ','22775','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I144<sS>RollNo><p9<Vue93094<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I64<sS>BranchMajor_id><p28<I13<sb.','SYS_PER_UPDATE',144,'115.242.42.87');
2012-09-12 10:20:28,040 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 10:20:28,040 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 144==
2012-09-12 10:23:09,467 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(217,374,'UE93045',13,13,1,1,'C, C++, Java, MATLAB, HTML, XML, LISP, MySQL','22946','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I374<sS>RollNo><p9<VUE93045<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<VC, C++, Java, MATLAB, HTML, XML, LISP, MySQL<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I217<sS>BranchMajor_id><p28<I13<sb.','SYS_PER_UPDATE',374,'115.244.18.190');
2012-09-12 10:23:09,476 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 10:23:09,476 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 374==
2012-09-12 20:53:33,730 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(217,374,'UE93045',13,13,1,1,'C, C++, Java, MATLAB, HTML, XML, LISP, MySQL','22946','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I374<sS>RollNo><p9<VUE93045<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<VC, C++, Java, MATLAB, HTML, XML, LISP, MySQL<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I217<sS>BranchMajor_id><p28<I13<sb.','SYS_PER_UPDATE',374,'115.244.18.190');
2012-09-12 20:53:33,735 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 20:53:33,735 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 374==
2012-09-12 10:28:38,431 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(369,519,'ue93060',13,13,1,3,'c,c++,asp.net,php','241434','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I519<sS>RollNo><p9<Vue93060<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc,c++,.net,php<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V241434<p27<sS>id><p28<I369<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',519,'117.214.144.184');
2012-09-12 10:28:38,442 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 10:28:38,442 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 519==
2012-09-12 10:34:04,419 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(64,144,'ue93094',13,13,1,1,'C , C++ , JAVA , PHP','22775','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I144<sS>RollNo><p9<Vue93094<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I64<sS>BranchMajor_id><p28<I13<sb.','SYS_PER_UPDATE',144,'115.242.42.87');
2012-09-12 10:34:04,427 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 10:34:04,427 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 144==
2012-09-12 10:37:36,813 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2009','1 Dec 2009',1,2,1250,920,0,0,1,1,1,410,'SYS_PER_INSERT',410,'112.196.120.123');
2012-09-12 10:37:36,824 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1691}]
2012-09-12 10:38:44,521 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Apr 2010',2,2,1250,869,0,0,1,1,1,410,'SYS_PER_INSERT',410,'112.196.120.123');
2012-09-12 10:38:44,535 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1692}]
2012-09-12 21:09:40,511 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2010','1 Dec 2010',3,2,1200,878,0,0,1,1,1,410,'SYS_PER_INSERT',410,'112.196.120.123');
2012-09-12 21:09:40,532 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1693}]
2012-09-12 10:40:18,818 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1336,'1 Jan 2011','1 Apr 2011',6,2,1300,1011,0,0,1,1,1,410,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd7+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I431<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I6<sS>UserId_id><p29<I410<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd6+x03+x01><p34<tp35<Rp36<sS>id><p37<I1336<sb.','SYS_PER_UPDATE',410,'112.196.120.123');
2012-09-12 10:40:18,828 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1336}]
2012-09-12 10:41:52,166 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1336,'1 Jan 2012','1 Apr 2012',6,2,1250,907,0,0,1,1,1,410,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1011<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I6<sS>UserId_id><p29<I410<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x01+x01><p34<tp35<Rp36<sS>id><p37<I1336<sb.','SYS_PER_UPDATE',410,'112.196.120.123');
2012-09-12 10:41:52,176 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1336}]
2012-09-12 21:12:20,478 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Apr 2011',4,2,1300,1011,0,0,1,1,1,410,'SYS_PER_INSERT',410,'112.196.120.123');
2012-09-12 21:12:20,517 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1694}]
2012-09-12 10:42:54,695 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2011','1 Dec 2011',5,2,1250,972,0,0,1,1,1,410,'SYS_PER_INSERT',410,'112.196.120.123');
2012-09-12 10:42:54,712 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1695}]
2012-09-12 10:44:32,829 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Mar 2008','1 Mar 2009',1,1,500,422,0,0,4,2,3,410,'SYS_PER_INSERT',410,'112.196.120.123');
2012-09-12 10:44:32,859 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1696}]
2012-09-12 21:18:02,359 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(38,'Hot Axle & Hot Wheel (HAHW) Detector System','1 Jun 2011','1 Jul 2011','Research Designs and Standards Organisation (RDSO)','Summer Trainee','RDSO is the sole R&D organisation of Indian Railways at Lucknow, formed in 1957 and functions as the technical advisor to Railway Board Zonal Railways and Production Units.','Research Designs and Standards Organisation (RDSO)
Manaknagar, Lucknow-226011','',1,'','Hot box hot wheel detector system detects Axle boxes running hot due to bearing failure and wheels having abnormally high temperatures due to brake-binding. It can also detect vehicles with ineffective brakes by detecting cold wheels. The system uses infra-red sensors having fast response time and can reliably measure temperatures of axle boxes & wheels of a train travelling upto 200kmph.','SYS_PER_INSERT',38,'14.98.180.170');
2012-09-12 21:18:02,367 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 14}]
2012-09-12 10:49:06,941 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Mar 2006','1 Mar 2007',1,1,500,431,0,0,3,2,2,410,'SYS_PER_INSERT',410,'112.196.120.123');
2012-09-12 10:49:07,049 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1697}]
2012-09-12 21:21:28,611 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(336,63,'UE91071',18,18,1,1,' Basic knowledge of microsoft office and good knowledge of C and C++ languages.','64610','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I18<sS>User_id><p8<I63<sS>RollNo><p9<VUE91071<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V Basic knowledge of microsoft office and good knowledge of C and C++ languages.<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V64610<p27<sS>id><p28<I336<sS>BranchMajor_id><p29<I18<sb.','SYS_PER_UPDATE',63,'210.56.96.240');
2012-09-12 21:21:28,622 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 336}]
2012-09-12 10:53:17,808 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(243,410,'UE93012',13,13,1,1,'','43242','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I410<sS>RollNo><p9<VUE93012<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V43000<p27<sS>id><p28<I243<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',410,'112.196.120.123');
2012-09-12 10:53:17,844 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 243}]
2012-09-12 21:24:46,646 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(205,'UE93054',13,13,1,1,'','103500','SYS_PER_INSERT',205,'180.149.53.9');
2012-09-12 21:24:46,659 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 1, 'rescode': 379}]
2012-09-12 21:24:46,671 UserProfile line:154 DEBUG [ChangeUserGroup][205] == (1, 'Group Change Sucessful') ==
2012-09-12 21:25:57,974 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(38,'Wheel Impact Load Detector (WILD) System','1 Jun 2011','1 Jul 2011','Research Designs and Standards Organisation (RDSO)','Summer Trainee','RDSO is the sole R&D organisation of Indian Railways at Lucknow, formed in 1957 and functions as the technical advisor to Railway Board Zonal Railways and Production Units.','Research Designs and Standards Organisation (RDSO)
Manaknagar, Lucknow- 226011
website- www.rdso.indianrailways.gov.in','',1,'','WILD is an unmanned intelligent trackside data acquisition system that measures the dynamic impact load of wheels on the road.
WILD system helped to reduce the railway maintenance cost significantly by identifying the damage causing wheel wheels for quick removal. Every train passing causes the system to trigger, capture/analyse and report the condition.','SYS_PER_INSERT',38,'14.98.180.170');
2012-09-12 21:25:57,978 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 2, 'rescode': 161}]
2012-09-12 21:26:00,289 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(205,'UE93054',13,13,1,1,'C, C++, java, Oracle (DBA), ASP .NET','103500','SYS_PER_INSERT',205,'180.149.53.9');
2012-09-12 21:26:00,293 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 2, 'rescode': 161}]
2012-09-12 21:33:10,963 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Mar 2006','1 Mar 2007',6,2,850,681,0,0,1,20,1,102,'SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 21:33:11,071 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1698}]
2012-09-12 21:33:16,659 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(205,352,'UE99031',17,17,1,1,' good ','26524','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I352<sS>RollNo><p9<VUE99031<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V good <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V26524<p27<sS>id><p28<I205<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',352,'180.149.53.9');
2012-09-12 21:33:16,673 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 205}]
2012-09-12 21:35:05,305 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(81,'designing and fabrication of robotic arm','1 Aug 2012','1 Dec 2012','','','','','desiging,mechanical,electrical,computer programming',2,'','desiging and fabrication of a robotic arm to pic and place things from on eplace to another.','SYS_PER_INSERT',81,'122.173.250.136');
2012-09-12 21:35:05,316 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 15}]
2012-09-12 21:37:26,258 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Mar 2006','1 Mar 2007',1,1,850,691,0,0,3,20,2,102,'SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 21:37:26,276 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1699}]
2012-09-12 21:37:51,999 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Mar 2008','1 Mar 2009',1,1,500,358,0,0,4,2,3,102,'SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 21:37:52,024 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1700}]
2012-09-12 11:09:02,026 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 Dec 2009',1,2,1250,843,0,0,1,1,1,102,'SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 11:09:02,044 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1701}]
2012-09-12 21:39:43,727 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Jun 2010',2,2,1250,886,0,0,1,1,1,102,'SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 21:39:43,745 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1702}]
2012-09-12 21:39:47,262 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2006','1 Mar 2007',1,1,500,384,0,0,3,2,2,526,'SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 21:39:47,279 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1703}]
2012-09-12 21:40:41,875 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(688,'1 Jan 1985','1 Jan 1985',1,1,500,452,0,0,3,2,2,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd6+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I452<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd5+x04+x01><p34<tp35<Rp36<sS>id><p37<I688<sb.','SYS_PER_UPDATE',241,'117.214.150.133');
2012-09-12 21:40:41,882 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 688}]
2012-09-12 21:41:03,973 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1250,813,0,0,1,1,1,102,'SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 21:41:03,994 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1704}]
2012-09-12 21:41:21,726 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2008','1 Mar 2009',1,1,500,361,0,0,4,2,3,526,'SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 21:41:21,743 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1705}]
2012-09-12 21:42:55,256 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(81,'desiging of material handeling trolley','1 May 2011','1 Jun 2011','','','','','mechanical,desiging',2,'','designing of material handeling trolley to carry shaft,splines,gears from one location of workplace to another.','SYS_PER_INSERT',81,'122.173.250.136');
2012-09-12 21:42:55,267 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 16}]
2012-09-12 21:43:35,953 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 May 2010',1,2,1250,725,0,0,1,1,1,526,'SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 21:43:35,978 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1706}]
2012-09-12 21:44:13,909 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 May 2010',2,2,1250,776,0,0,1,1,1,526,'SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 21:44:13,920 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1707}]
2012-09-12 21:44:58,867 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(358,508,'ue93038',13,13,1,1,' ','16959','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I508<sS>RollNo><p9<Vue93038<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V16959<p27<sS>id><p28<I358<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',508,'117.211.87.147');
2012-09-12 21:44:58,874 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 358}]
2012-09-12 21:45:03,949 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1706,'1 Jul 2009','1 Dec 2009',1,2,1250,725,0,0,1,1,1,526,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I725<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I526<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x07+x01><p34<tp35<Rp36<sS>id><p37<I1706<sb.','SYS_PER_UPDATE',526,'122.173.240.238');
2012-09-12 21:45:03,962 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1706}]
2012-09-12 21:45:40,752 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1250,735,1,0,1,1,1,526,'SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 21:45:40,765 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1708}]
2012-09-12 21:46:17,114 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 May 2011',4,2,1250,735,0,0,1,1,1,526,'SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 21:46:17,132 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1709}]
2012-09-12 21:46:31,207 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1704,'1 Jan 1985','1 Jan 1985',3,2,1250,813,0,0,1,1,1,102,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I813<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I3<sS>UserId_id><p29<I102<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x07+x01><p34<tp35<Rp36<sS>id><p37<I1704<sb.','SYS_PER_UPDATE',102,'117.197.122.177');
2012-09-12 21:46:31,218 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1704}]
2012-09-12 11:16:42,795 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2011','1 Dec 2011',5,2,1250,866,0,0,1,1,1,526,'SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 11:16:42,820 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1710}]
2012-09-12 21:47:09,390 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 May 2012',6,2,1250,798,0,0,1,1,1,526,'SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 21:47:09,403 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1711}]
2012-09-12 11:17:53,468 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1703,'1 Apr 2006','1 May 2007',1,1,500,384,0,0,3,2,2,526,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd7+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I384<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I526<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd6+x04+x01><p34<tp35<Rp36<sS>id><p37<I1703<sb.','SYS_PER_UPDATE',526,'122.173.240.238');
2012-09-12 11:17:53,480 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1703}]
2012-09-12 21:47:56,853 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1704,'1 Jan 1985','1 Jan 1985',3,2,1250,813,0,0,1,1,1,102,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I813<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I3<sS>UserId_id><p29<I102<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I1704<sb.','SYS_PER_UPDATE',102,'117.197.122.177');
2012-09-12 21:47:56,865 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1704}]
2012-09-12 21:48:01,530 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(378,526,'ue99074',17,17,1,1,'c, autocad, catia, pro/engineering','25350','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I526<sS>RollNo><p9<Vue99074<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc, autocad, catia, pro/engineering<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V25350<p27<sS>id><p28<I378<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',526,'122.173.240.238');
2012-09-12 21:48:01,539 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 378}]
2012-09-12 11:18:28,729 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(315,476,'UE-99006',17,17,1,1,' AutoCAD, C, ProE, MS Office. ','15720','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I476<sS>RollNo><p9<VUE-99006<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V AutoCAD, C, ProE, MS Office. <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V15720<p27<sS>id><p28<I315<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',476,'117.214.151.44');
2012-09-12 11:18:28,736 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 11:18:28,736 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 476==
2012-09-12 21:49:02,212 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Jun 2011',4,2,1250,880,0,0,1,1,1,102,'SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 21:49:02,225 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1712}]
2012-09-12 21:49:36,887 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Mar 2006','1 Mar 2007',1,1,500,454,0,0,3,4,2,508,'SYS_PER_INSERT',508,'117.211.87.147');
2012-09-12 21:49:36,904 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1713}]
2012-09-12 21:49:44,298 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2011','1 Dec 2011',5,2,1250,943,0,0,1,1,1,102,'SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 21:49:44,316 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1714}]
2012-09-12 21:50:04,974 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1712,'1 Jan 2011','1 Jul 2011',4,2,1250,880,0,0,1,1,1,102,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x06+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I880<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I102<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x01+x01><p34<tp35<Rp36<sS>id><p37<I1712<sb.','SYS_PER_UPDATE',102,'117.197.122.177');
2012-09-12 21:50:04,988 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1712}]
2012-09-12 21:50:32,922 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1714,'1 Jul 2011','1 Dec 2011',5,2,1250,943,0,0,1,1,1,102,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I943<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I102<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x07+x01><p34<tp35<Rp36<sS>id><p37<I1714<sb.','SYS_PER_UPDATE',102,'117.197.122.177');
2012-09-12 21:50:32,932 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1714}]
2012-09-12 21:50:56,278 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 1985','1 Jan 1985',1,1,500,454,0,0,4,4,3,508,'SYS_PER_INSERT',508,'117.211.87.147');
2012-09-12 21:50:56,302 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1715}]
2012-09-12 21:51:17,866 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(526,'172','63','6/6','6/6','no disability','SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 21:51:17,882 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 16}]
2012-09-12 21:51:27,570 DBUserProfileMisc line:53 DEBUG [DBMedicalInfoUpdate] SELECT * FROM MedicalInfoUpdate(16,526,'172','63','6/6','6/6','no disability','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<MedicalInfo<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>User_id><p7<I526<sS>Weight><p8<V63<p9<sS>_state><p10<ccopy_reg<_reconstructor<p11<(cdjango.db.models.base<ModelState<p12<c__builtin__<object<p13<Ntp14<Rp15<(dp16<S>adding><p17<I00<sS>db><p18<S>default><p19<sbsS>LeftEye><p20<V6/6<p21<sS>Height><p22<V172<p23<sS>DisabilityInfo><p24<Vno disability<p25<sS>RightEye><p26<V6/6<p27<sS>id><p28<I16<sb.','SYS_PER_UPDATE',526,'122.173.240.238');
2012-09-12 21:51:27,580 DBUserProfileMisc line:56 DEBUG [DBMedicalInfoUpdate] [{'result': 1, 'rescode': 16}]
2012-09-12 21:52:16,735 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1698,'1 Jul 2012','1 Dec 2012',6,2,1250,878,0,0,1,1,1,102,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I20<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd7+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I850<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I681<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I6<sS>UserId_id><p29<I102<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd6+x03+x01><p34<tp35<Rp36<sS>id><p37<I1698<sb.','SYS_PER_UPDATE',102,'117.197.122.177');
2012-09-12 21:52:16,743 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1698}]
2012-09-12 21:52:47,965 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1715,'1 Mar 2008','1 Mar 2009',1,1,500,454,0,0,4,4,3,508,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I4<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I3<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I454<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I508<sS>DegreeType_id><p30<I4<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I1715<sb.','SYS_PER_UPDATE',508,'117.211.87.147');
2012-09-12 21:52:47,975 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1715}]
2012-09-12 21:53:25,312 DBUserProfileMisc line:36 DEBUG [DBLegalInfoInsert] SELECT * FROM LegalInfoInsert(526,'not applicable','','SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 21:53:25,333 DBUserProfileMisc line:39 DEBUG [DBLegalInfoInsert] [{'result': 1, 'rescode': 6}]
2012-09-12 21:58:19,242 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Jun 2010',2,2,1250,881,0,0,1,1,1,508,'SYS_PER_INSERT',508,'117.211.87.147');
2012-09-12 21:58:19,263 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1716}]
2012-09-12 21:58:37,175 DBUserProfileMisc line:36 DEBUG [DBLegalInfoInsert] SELECT * FROM LegalInfoInsert(102,'nil','nil','SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 21:58:37,191 DBUserProfileMisc line:39 DEBUG [DBLegalInfoInsert] [{'result': 1, 'rescode': 7}]
2012-09-12 11:30:04,853 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(301,465,'UE93044',13,13,1,1,' C/C++,JAVA(J2SE,J2EE),HTML/CSS,JavaScript,Ajax,jQuery,Photoshop,Sql ,MySql,Ms-Access','21067','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I465<sS>RollNo><p9<VUE93044<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V C/C++,JAVA(J2SE,J2EE),HTML/CSS,JavaScript,Ajax,jQuery,Photoshop <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V21067<p27<sS>id><p28<I301<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',465,'117.220.100.218');
2012-09-12 11:30:04,863 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 301}]
2012-09-12 22:01:18,563 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',4,2,1200,745,0,0,1,1,1,508,'SYS_PER_INSERT',508,'117.211.87.147');
2012-09-12 22:01:18,582 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1717}]
2012-09-12 22:01:20,608 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(526,'saving sukhna','1 Aug 2012','1 Nov 2012','','','','','mechanical and hydraulic dreging for desilting, sewage treatment plant, and weed growth controlling.',2,'','My project is basically based on preservation of sukhna lake as its water level is decreasing year by year.','SYS_PER_INSERT',526,'122.173.240.238');
2012-09-12 22:01:20,618 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 17}]
2012-09-12 22:03:13,907 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(102,'185','68','-1','-1','nil','SYS_PER_INSERT',102,'117.197.122.177');
2012-09-12 22:03:13,931 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 17}]
2012-09-12 22:03:32,848 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1711,'1 Jan 2012','1 May 2012',6,2,1250,798,0,0,1,1,1,526,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdc+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I798<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I6<sS>UserId_id><p29<I526<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdc+x01+x01><p34<tp35<Rp36<sS>id><p37<I1711<sb.','SYS_PER_UPDATE',526,'122.173.240.238');
2012-09-12 22:03:32,855 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1711}]
2012-09-12 11:37:26,748 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(372,200,'UE93084',13,13,1,1,'• Languages - C, C++, C#.Net, Core Java, J2EE.
• Database - MySQL, Oracle 10g.
• Platform - Windows
• Web Technology - JSP, HTML, CSS, XML, AJAX, Javascript, PHP.
• Softwares - Macromedia Dreamweaver, Net Beans, Microsoft Office and Tools.
','18785','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I200<sS>RollNo><p9<VUE93084<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V+u2022 Languages - C, C++, C#.Net, Core Java, J2EE.+u000a+u2022 Database - MySQL, Oracle 10g.+u000a+u2022 Platform - Windows+u000a+u2022 Web Technology - JSP, HTML, CSS, XML, AJAX, Javascript, PHP.+u000a+u2022 Softwares - Macromedia Dreamweaver, Net Beans, Microsoft Office and Tools.+u000a<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V18785<p27<sS>id><p28<I372<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',200,'124.253.205.210');
2012-09-12 11:37:26,756 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 372}]
2012-09-12 22:07:40,889 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1717,'1 Jan 1985','1 Jan 1985',4,2,1300,827,0,0,1,1,1,508,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1200<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I745<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I508<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x07+x01><p34<tp35<Rp36<sS>id><p37<I1717<sb.','SYS_PER_UPDATE',508,'117.211.87.147');
2012-09-12 22:07:40,897 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1717}]
2012-09-12 11:40:25,847 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1717,'1 Jul 2011','1 Dec 2011',4,2,1250,807,0,0,1,1,1,508,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I827<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I508<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I1717<sb.','SYS_PER_UPDATE',508,'117.211.87.147');
2012-09-12 11:40:25,861 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1717}]
2012-09-12 22:11:59,267 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2006','1 Mar 2007',1,1,500,379,0,0,3,2,2,200,'SYS_PER_INSERT',200,'124.253.205.210');
2012-09-12 22:11:59,288 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1718}]
2012-09-12 22:12:47,076 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2008','1 Mar 2009',1,1,500,379,0,0,4,2,3,200,'SYS_PER_INSERT',200,'124.253.205.210');
2012-09-12 22:12:47,088 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1719}]
2012-09-12 22:13:00,949 DBUserProfileMisc line:36 DEBUG [DBLegalInfoInsert] SELECT * FROM LegalInfoInsert(81,'not yet applied for','NO','SYS_PER_INSERT',81,'122.173.250.136');
2012-09-12 22:13:00,965 DBUserProfileMisc line:39 DEBUG [DBLegalInfoInsert] [{'result': 1, 'rescode': 8}]
2012-09-12 22:14:26,245 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(395,'UE93108',13,13,1,1,'','23048','SYS_PER_INSERT',395,'117.197.154.77');
2012-09-12 22:14:26,260 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 1, 'rescode': 380}]
2012-09-12 22:14:26,275 UserProfile line:154 DEBUG [ChangeUserGroup][395] == (1, 'Group Change Sucessful') ==
2012-09-12 22:14:31,772 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Apr 2010',2,2,1250,1012,0,0,1,1,1,375,'SYS_PER_INSERT',375,'115.185.151.244');
2012-09-12 22:14:31,791 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1720}]
2012-09-12 11:47:06,528 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1200,992,0,0,1,1,1,375,'SYS_PER_INSERT',375,'115.185.151.244');
2012-09-12 11:47:06,545 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1721}]
2012-09-12 11:48:06,581 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(151,'Emerging IT technologies','1 Jun 2011','1 Jul 2011','Pricewaterhouse Coopers','Summer Trainee','PricewaterhouseCoopers (trading as PwC) is a multinational professional services firm headquartered in London, United Kingdom. It is the world's largest professional services firm and the largest of the "Big Four" accountancy firms measured by 2011 revenues','Building 8, Tower B
DLF Cyber City
Gurgaon, Haryana 122002
India
Telephone: [91] (124) 462 0000, 306 0000','Surveys conducted
Internet',1,'Mr. Ravindra Kumar Gupta
Senior Manager
Consulting
','Carried out a research on the latest Information technologies and trends. Also conducted a survey among college students to know about the impact of technology on students.','SYS_PER_INSERT',151,'122.173.223.220');
2012-09-12 11:48:06,630 DBExtraAcademicInfo line:100 ERROR DBExtraAcademicInfoDetailsInsert : [details : {'ExtraAcadmicInfoType_id': 1, 'User_id': 151, 'Designation': u'Summer Trainee', 'Title': u'Emerging IT technologies', 'ip': '122.173.223.220', 'Organisation': u'Pricewaterhouse Coopers', 'FunctionalArea': u'Surveys conducted\r\nInternet', 'Summary': u'Carried out a research on the latest Information technologies and trends. Also conducted a survey among college students to know about the impact of technology on students.', 'Start': u'1 Jun 2011', 'Details': u'PricewaterhouseCoopers (trading as PwC) is a multinational professional services firm headquartered in London, United Kingdom. It is the world\'s largest professional services firm and the largest of the "Big Four" accountancy firms measured by 2011 revenues', 'RequestedOperation': 'SYS_PER_INSERT', 'End': u'1 Jul 2011', 'PlaceOfWork': u'Building 8, Tower B\r\nDLF Cyber City\r\nGurgaon, Haryana 122002\r\nIndia\r\nTelephone: [91] (124) 462 0000, 306 0000', 'by_user': 151, 'References': u'Mr. Ravindra Kumar Gupta\r\nSenior Manager\r\nConsulting\r\n'}]
Traceback (most recent call last):
File "/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/UserProfile/DBFunctions/DBExtraAcademicInfo.py", line 91, in DBExtraAcademicInfoDetailsInsert
result = DBhelper.CallFunction(query)
File "/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/DataBaseHelper/DBhelper.py", line 20, in CallFunction
cursor.execute(sql)
File "/usr/lib/python2.6/site-packages/django/db/backends/util.py", line 34, in execute
return self.cursor.execute(sql, params)
File "/usr/lib/python2.6/site-packages/django/db/backends/postgresql_psycopg2/base.py", line 44, in execute
return self.cursor.execute(query, args)
DatabaseError: syntax error at or near "s" at character 290
2012-09-12 22:18:27,302 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(379,205,'UE93054',13,13,1,1,'C, C++, JAVA, ORACLE (DBA), ASP .NET','103500','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I205<sS>RollNo><p9<VUE93054<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V103500<p27<sS>id><p28<I379<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',205,'180.149.53.9');
2012-09-12 22:18:27,310 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 22:18:27,310 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 205==
2012-09-12 22:20:34,599 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2006','1 Apr 2007',1,1,600,563,0,0,3,2,2,153,'SYS_PER_INSERT',153,'122.173.223.220');
2012-09-12 22:20:34,624 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1722}]
2012-09-12 22:20:40,824 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(315,476,'UE-99006',17,17,1,1,' AutoCAD, C, ProE, MS Office. ','15720','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I476<sS>RollNo><p9<VUE-99006<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V AutoCAD, C, ProE, MS Office. <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V15720<p27<sS>id><p28<I315<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',476,'117.214.151.44');
2012-09-12 22:20:40,830 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 22:20:40,830 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 476==
2012-09-12 22:21:18,295 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2008','1 Apr 2009',1,1,500,453,0,0,4,2,3,153,'SYS_PER_INSERT',153,'122.173.223.220');
2012-09-12 22:21:18,313 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1723}]
2012-09-12 22:21:54,904 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 Dec 2009',1,2,1250,970,0,0,1,1,1,153,'SYS_PER_INSERT',153,'122.173.223.220');
2012-09-12 22:21:54,922 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1724}]
2012-09-12 22:22:28,202 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 May 2010',2,2,1250,1037,0,0,1,1,1,153,'SYS_PER_INSERT',153,'122.173.223.220');
2012-09-12 22:22:28,220 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1725}]
2012-09-12 22:22:44,877 DBUserProfileMisc line:20 DEBUG [DBMedicalInfoInsert] SELECT * FROM MedicalInfoInsert(216,'162','57','-2.50','-2.50','','SYS_PER_INSERT',216,'122.173.181.65');
2012-09-12 22:22:44,889 DBUserProfileMisc line:23 DEBUG [DBMedicalInfoInsert] [{'result': 1, 'rescode': 18}]
2012-09-12 22:23:17,968 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1344,'1 Jan 1985','1 Jan 1985',1,1,700,636,0,0,3,4,2,216,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I4<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd7+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I700<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I636<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I216<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd6+x04+x01><p34<tp35<Rp36<sS>id><p37<I1344<sb.','SYS_PER_UPDATE',216,'122.173.181.65');
2012-09-12 22:23:17,975 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1344}]
2012-09-12 11:53:24,997 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(290,'Embedded systems','1 Jun 2010','1 Jul 2010','RAD Innovations','Trainee','RAD … Route to Technologies …. Is a well established Research & Development Organization which provides Hardware & Software solutions to Industry . RAD deals in various areas of technology which includes Electronics , Wireless Communication , Bio Medical , Mechanical , Instrumentation and softwares.','SCO 546 , Level III
Sector 70 , Mohali
Tel: 0172-4667778
Mob: 092164-97778 / 098721-44414 / 098728-03707
E Mail: [email protected]','8051 assembly language, knowledge of interfacing, knowledge of the most popularly used ICs. ',1,'','While signing up for the project, all I seeked was a detailed know how of automation and robotics.
The six weeks that I spent at RAD, saw me working at varied basic automation projects. ','SYS_PER_INSERT',290,'117.220.103.13');
2012-09-12 11:53:25,006 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 18}]
2012-09-12 22:24:43,201 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(290,'Embedded systems','1 Jun 2010','1 Jul 2010','RAD Innovations','Trainee','RAD … Route to Technologies …. Is a well established Research & Development Organization which provides Hardware & Software solutions to Industry . RAD deals in various areas of technology which includes Electronics , Wireless Communication , Bio Medical , Mechanical , Instrumentation and softwares.','SCO 546 , Level III
Sector 70 , Mohali
Telephone no.: 0172-4667778
Mobile: 092164-97778 / 098721-44414 / 098728-03707
E Mail i.d: [email protected]','8051 assembly language, knowledge of interfacing, knowledge of the most popularly used ICs. ',1,'','While signing up for the project, all I seeked was a detailed know how of automation and robotics.
The six weeks that I spent at RAD, saw me working at varied basic automation projects. ','SYS_PER_INSERT',290,'117.220.103.13');
2012-09-12 22:24:43,205 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 2, 'rescode': 161}]
2012-09-12 11:54:43,522 DBUserProfileMisc line:36 DEBUG [DBLegalInfoInsert] SELECT * FROM LegalInfoInsert(216,'J4035954','N/A','SYS_PER_INSERT',216,'122.173.181.65');
2012-09-12 11:54:43,535 DBUserProfileMisc line:39 DEBUG [DBLegalInfoInsert] [{'result': 1, 'rescode': 9}]
2012-09-12 22:24:48,856 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 Jun 2012',6,2,1250,755,0,0,1,1,1,508,'SYS_PER_INSERT',508,'117.211.87.147');
2012-09-12 22:24:48,875 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1726}]
2012-09-12 11:55:08,214 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1200,988,0,0,1,1,1,153,'SYS_PER_INSERT',153,'122.173.223.220');
2012-09-12 11:55:08,240 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1727}]
2012-09-12 22:25:46,152 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 May 2011',4,2,1300,1059,0,0,1,1,1,153,'SYS_PER_INSERT',153,'122.173.223.220');
2012-09-12 22:25:46,170 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1728}]
2012-09-12 22:26:23,850 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2011','1 Dec 2011',5,2,1250,1036,0,0,1,1,1,153,'SYS_PER_INSERT',153,'122.173.223.220');
2012-09-12 22:26:23,868 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1729}]
2012-09-12 11:56:55,881 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2012','1 May 2012',6,2,1250,1001,0,0,1,1,1,153,'SYS_PER_INSERT',153,'122.173.223.220');
2012-09-12 11:56:55,902 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1730}]
2012-09-12 22:27:23,863 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1200,745,0,0,1,1,1,508,'SYS_PER_INSERT',508,'117.211.87.147');
2012-09-12 22:27:23,874 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1731}]
2012-09-12 22:27:53,691 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(311,151,'ue93025',13,13,1,1,' c,c++,java,sql,javascript,jsp,html,dhtml,ajax,xml,android ','29332','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I151<sS>RollNo><p9<Vue93025<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V c,c++,java,sql,javascript,jsp,html,xml,android <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V29332<p27<sS>id><p28<I311<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',151,'122.173.223.220');
2012-09-12 22:27:53,701 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 311}]
2012-09-12 22:29:41,044 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Aug 2009','1 Apr 2010',1,2,1250,836,0,0,1,1,1,200,'SYS_PER_INSERT',200,'124.253.205.210');
2012-09-12 22:29:41,063 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1732}]
2012-09-12 22:29:52,537 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(377,102,'UE99075',17,17,1,3,'Autocad,language c,pro e,Ms office.','125807','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I102<sS>RollNo><p9<VUE99075<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V125807<p27<sS>id><p28<I377<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',102,'117.197.122.177');
2012-09-12 22:29:52,547 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 377}]
2012-09-12 22:30:36,131 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 Apr 2010',2,2,1250,799,0,0,1,1,1,200,'SYS_PER_INSERT',200,'124.253.205.210');
2012-09-12 22:30:36,149 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1733}]
2012-09-12 22:31:02,911 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(380,395,'UE93108',13,13,1,1,'','23048','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I395<sS>RollNo><p9<VUE93108<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V23048<p27<sS>id><p28<I380<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',395,'117.197.154.77');
2012-09-12 22:31:02,917 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 22:31:02,917 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 395==
2012-09-12 22:31:26,096 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1732,'1 Aug 2009','1 Dec 2009',1,2,1250,836,0,0,1,1,1,200,'cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I836<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I200<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x08+x01><p34<tp35<Rp36<sS>id><p37<I1732<sb.','SYS_PER_UPDATE',200,'124.253.205.210');
2012-09-12 22:31:26,104 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1732}]
2012-09-12 22:31:56,943 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(315,476,'UE-99006',17,17,1,1,' AutoCAD, C, ProE, MS Office. ','15720','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I476<sS>RollNo><p9<VUE-99006<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V AutoCAD, C, ProE, MS Office. <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V15720<p27<sS>id><p28<I315<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',476,'122.173.250.136');
2012-09-12 22:31:56,952 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 22:31:56,952 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 476==
2012-09-12 22:32:08,569 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1733,'1 Jan 2010','1 Apr 2010',2,2,1250,799,0,0,1,1,1,200,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x04+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I799<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I2<sS>UserId_id><p29<I200<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x01+x01><p34<tp35<Rp36<sS>id><p37<I1733<sb.','SYS_PER_UPDATE',200,'124.253.205.210');
2012-09-12 22:32:08,579 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1733}]
2012-09-12 22:32:24,036 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1732,'1 Jan 1985','1 Jan 1985',1,2,1250,836,0,0,1,1,1,200,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I836<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I200<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x08+x01><p34<tp35<Rp36<sS>id><p37<I1732<sb.','SYS_PER_UPDATE',200,'124.253.205.210');
2012-09-12 22:32:24,047 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1732}]
2012-09-12 22:32:48,638 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(89,196,'UE99039',17,17,1,1,' AUTO CAD, PRO E','26287','cdjango.db.models.base<model_unpickle<p0<(cUserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I196<sS>RollNo><p9<VUE99039<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V26287<p27<sS>id><p28<I89<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',196,'124.253.52.45');
2012-09-12 22:32:48,649 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': 1, 'rescode': 89}]
2012-09-12 22:33:18,139 UserProfile line:399 ERROR StudentDetailsUpdate : [HttpRequest : <WSGIRequest
GET:<QueryDict: {}>,
POST:<QueryDict: {u'BranchMinor': [u'13'], u'Category': [u'1'], u'Degree': [u'1'], u'RollNo': [u'UE93045'], u'ComputerProficiency': [u'C, C++, Java, MATLAB, HTML, XML, LISP, MySQL'], u'AIEEERank': [u'None'], u'csrfmiddlewaretoken': [u'2dca78729a809b10e0c2d12f4be6e549'], u'BranchMajor': [u'13'], u'Id': [u'217']}>,
COOKIES:{'__utma': '117285699.1514326117.1347469306.1347469306.1347469306.1',
'__utmb': '117285699.4.10.1347469306',
'__utmc': '117285699',
'__utmz': '117285699.1347469306.1.1.utmcsr=tnpuiet.com|utmccn=(referral)|utmcmd=referral|utmcct=/',
'csrftoken': '2dca78729a809b10e0c2d12f4be6e549',
'sessionid': '766875c5bd50109f820c87e7dc21559f'},
META:{'CONTENT_LENGTH': '222',
'CONTENT_TYPE': 'application/x-www-form-urlencoded',
'CSRF_COOKIE': '2dca78729a809b10e0c2d12f4be6e549',
'DOCUMENT_ROOT': '/var/www/vhosts/thoughtxplore.com/uiet',
'GATEWAY_INTERFACE': 'CGI/1.1',
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3',
'HTTP_ACCEPT_ENCODING': 'gzip,deflate,sdch',
'HTTP_ACCEPT_LANGUAGE': 'en-US,en;q=0.8',
'HTTP_CACHE_CONTROL': 'max-age=0',
'HTTP_CONNECTION': 'keep-alive',
'HTTP_COOKIE': 'sessionid=766875c5bd50109f820c87e7dc21559f; csrftoken=2dca78729a809b10e0c2d12f4be6e549; __utma=117285699.1514326117.1347469306.1347469306.1347469306.1; __utmb=117285699.4.10.1347469306; __utmc=117285699; __utmz=117285699.1347469306.1.1.utmcsr=tnpuiet.com|utmccn=(referral)|utmcmd=referral|utmcct=/',
'HTTP_HOST': 'uiet.thoughtxplore.com',
'HTTP_ORIGIN': 'http://uiet.thoughtxplore.com',
'HTTP_REFERER': 'http://uiet.thoughtxplore.com/userprofile/UserProfile/StudentDetails/',
'HTTP_USER_AGENT': 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1',
'PATH_INFO': u'/userprofile/UserProfile/StudentDetails/update',
'PATH_TRANSLATED': '/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/apache/apache.wsgi/userprofile/UserProfile/StudentDetails/update',
'PP_CUSTOM_PHP_INI': '/var/www/vhosts/uiet.thoughtxplore.com/etc/php.ini',
'QUERY_STRING': '',
'REMOTE_ADDR': '115.185.163.114',
'REMOTE_PORT': '53427',
'REQUEST_METHOD': 'POST',
'REQUEST_URI': '/userprofile/UserProfile/StudentDetails/update',
'SCRIPT_FILENAME': '/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/apache/apache.wsgi',
'SCRIPT_NAME': u'',
'SERVER_ADDR': '119.18.58.211',
'SERVER_ADMIN': '[email protected]',
'SERVER_NAME': 'uiet.thoughtxplore.com',
'SERVER_PORT': '80',
'SERVER_PROTOCOL': 'HTTP/1.1',
'SERVER_SIGNATURE': '<address>Apache Server at uiet.thoughtxplore.com Port 80</address>\n',
'SERVER_SOFTWARE': 'Apache',
'mod_wsgi.application_group': 'uiet.thoughtxplore.com|',
'mod_wsgi.callable_object': 'application',
'mod_wsgi.handler_script': '',
'mod_wsgi.input_chunked': '0',
'mod_wsgi.listener_host': '',
'mod_wsgi.listener_port': '80',
'mod_wsgi.process_group': '',
'mod_wsgi.request_handler': 'wsgi-script',
'mod_wsgi.script_reloading': '1',
'mod_wsgi.version': (3, 3),
'wsgi.errors': <mod_wsgi.Log object at 0x2b5ab9161e70>,
'wsgi.file_wrapper': <built-in method file_wrapper of mod_wsgi.Adapter object at 0x2b5ab9419990>,
'wsgi.input': <mod_wsgi.Input object at 0x2b5ab91612f0>,
'wsgi.multiprocess': True,
'wsgi.multithread': False,
'wsgi.run_once': False,
'wsgi.url_scheme': 'http',
'wsgi.version': (1, 1)}>]
Traceback (most recent call last):
File "/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/UserProfile/Views/UserProfile.py", line 328, in StudentDetailsUpdate
aieee= int(HttpRequest.POST["AIEEERank"])
ValueError: invalid literal for int() with base 10: 'None'
2012-09-12 22:33:28,014 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(315,476,'UE-99006',17,17,1,1,' AutoCAD, C, ProE, MS Office. ','15720','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I476<sS>RollNo><p9<VUE-99006<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V AutoCAD, C, ProE, MS Office. <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V15720<p27<sS>id><p28<I315<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',476,'122.173.250.136');
2012-09-12 22:33:28,021 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 22:33:28,021 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 476==
2012-09-12 22:33:48,505 UserProfile line:399 ERROR StudentDetailsUpdate : [HttpRequest : <WSGIRequest
GET:<QueryDict: {}>,
POST:<QueryDict: {u'BranchMinor': [u'13'], u'Category': [u'1'], u'Degree': [u'1'], u'RollNo': [u'UE93045'], u'ComputerProficiency': [u'C, C++, Java, MATLAB, HTML, XML, LISP, MySQL'], u'AIEEERank': [u'None'], u'csrfmiddlewaretoken': [u'2dca78729a809b10e0c2d12f4be6e549'], u'BranchMajor': [u'13'], u'Id': [u'217']}>,
COOKIES:{'__utma': '117285699.1514326117.1347469306.1347469306.1347469306.1',
'__utmb': '117285699.6.10.1347469306',
'__utmc': '117285699',
'__utmz': '117285699.1347469306.1.1.utmcsr=tnpuiet.com|utmccn=(referral)|utmcmd=referral|utmcct=/',
'csrftoken': '2dca78729a809b10e0c2d12f4be6e549',
'sessionid': '766875c5bd50109f820c87e7dc21559f'},
META:{'CONTENT_LENGTH': '222',
'CONTENT_TYPE': 'application/x-www-form-urlencoded',
'CSRF_COOKIE': '2dca78729a809b10e0c2d12f4be6e549',
'DOCUMENT_ROOT': '/var/www/vhosts/thoughtxplore.com/uiet',
'GATEWAY_INTERFACE': 'CGI/1.1',
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3',
'HTTP_ACCEPT_ENCODING': 'gzip,deflate,sdch',
'HTTP_ACCEPT_LANGUAGE': 'en-US,en;q=0.8',
'HTTP_CACHE_CONTROL': 'max-age=0',
'HTTP_CONNECTION': 'keep-alive',
'HTTP_COOKIE': 'sessionid=766875c5bd50109f820c87e7dc21559f; csrftoken=2dca78729a809b10e0c2d12f4be6e549; __utma=117285699.1514326117.1347469306.1347469306.1347469306.1; __utmb=117285699.6.10.1347469306; __utmc=117285699; __utmz=117285699.1347469306.1.1.utmcsr=tnpuiet.com|utmccn=(referral)|utmcmd=referral|utmcct=/',
'HTTP_HOST': 'uiet.thoughtxplore.com',
'HTTP_ORIGIN': 'http://uiet.thoughtxplore.com',
'HTTP_REFERER': 'http://uiet.thoughtxplore.com/userprofile/UserProfile/UserHome/',
'HTTP_USER_AGENT': 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1',
'PATH_INFO': u'/userprofile/UserProfile/StudentDetails/update',
'PATH_TRANSLATED': '/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/apache/apache.wsgi/userprofile/UserProfile/StudentDetails/update',
'PP_CUSTOM_PHP_INI': '/var/www/vhosts/uiet.thoughtxplore.com/etc/php.ini',
'QUERY_STRING': '',
'REMOTE_ADDR': '115.185.163.114',
'REMOTE_PORT': '53432',
'REQUEST_METHOD': 'POST',
'REQUEST_URI': '/userprofile/UserProfile/StudentDetails/update',
'SCRIPT_FILENAME': '/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/apache/apache.wsgi',
'SCRIPT_NAME': u'',
'SERVER_ADDR': '119.18.58.211',
'SERVER_ADMIN': '[email protected]',
'SERVER_NAME': 'uiet.thoughtxplore.com',
'SERVER_PORT': '80',
'SERVER_PROTOCOL': 'HTTP/1.1',
'SERVER_SIGNATURE': '<address>Apache Server at uiet.thoughtxplore.com Port 80</address>\n',
'SERVER_SOFTWARE': 'Apache',
'mod_wsgi.application_group': 'uiet.thoughtxplore.com|',
'mod_wsgi.callable_object': 'application',
'mod_wsgi.handler_script': '',
'mod_wsgi.input_chunked': '0',
'mod_wsgi.listener_host': '',
'mod_wsgi.listener_port': '80',
'mod_wsgi.process_group': '',
'mod_wsgi.request_handler': 'wsgi-script',
'mod_wsgi.script_reloading': '1',
'mod_wsgi.version': (3, 3),
'wsgi.errors': <mod_wsgi.Log object at 0x2b5ab9092bf0>,
'wsgi.file_wrapper': <built-in method file_wrapper of mod_wsgi.Adapter object at 0x2b5ab910fd50>,
'wsgi.input': <mod_wsgi.Input object at 0x2b5ab8adb170>,
'wsgi.multiprocess': True,
'wsgi.multithread': False,
'wsgi.run_once': False,
'wsgi.url_scheme': 'http',
'wsgi.version': (1, 1)}>]
Traceback (most recent call last):
File "/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/UserProfile/Views/UserProfile.py", line 328, in StudentDetailsUpdate
aieee= int(HttpRequest.POST["AIEEERank"])
ValueError: invalid literal for int() with base 10: 'None'
2012-09-12 22:34:10,772 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(217,374,'UE93045',13,13,1,1,'C, C++, Java, MATLAB, HTML, XML, LISP, MySQL','22946','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I374<sS>RollNo><p9<VUE93045<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<VC, C++, Java, MATLAB, HTML, XML, LISP, MySQL<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<NsS>id><p27<I217<sS>BranchMajor_id><p28<I13<sb.','SYS_PER_UPDATE',374,'115.185.163.114');
2012-09-12 22:34:10,777 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 22:34:10,777 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 374==
2012-09-12 22:34:45,039 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Dec 2010',3,2,1200,841,0,0,1,1,1,200,'SYS_PER_INSERT',200,'124.253.205.210');
2012-09-12 22:34:45,058 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1734}]
2012-09-12 22:35:21,577 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(315,476,'UE-99006',17,17,1,1,' AutoCAD, C, ProE, MS Office. ','15720','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I17<sS>User_id><p8<I476<sS>RollNo><p9<VUE-99006<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<V AutoCAD, C, ProE, MS Office. <p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I1<sS>AIEEE><p26<V15720<p27<sS>id><p28<I315<sS>BranchMajor_id><p29<I17<sb.','SYS_PER_UPDATE',476,'117.214.151.44');
2012-09-12 22:35:21,585 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 22:35:21,585 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 476==
2012-09-12 22:35:51,038 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 Apr 2011',4,2,1300,893,0,0,1,1,1,200,'SYS_PER_INSERT',200,'124.253.205.210');
2012-09-12 22:35:51,062 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1735}]
2012-09-12 22:36:41,615 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2011','1 Dec 2011',5,2,1250,895,0,0,1,1,1,200,'SYS_PER_INSERT',200,'124.253.205.210');
2012-09-12 22:36:41,633 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1736}]
2012-09-12 12:11:58,557 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2007','1 Mar 2008',1,1,500,409,0,0,4,2,3,241,'SYS_PER_INSERT',241,'117.197.126.11');
2012-09-12 12:11:58,585 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1737}]
2012-09-12 12:12:30,057 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(689,'1 Jul 2009','1 Dec 2009',1,2,1250,863,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I863<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x08+x01><p34<tp35<Rp36<sS>id><p37<I689<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 12:12:30,080 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 689}]
2012-09-12 22:42:43,018 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(691,'1 Jan 1985','1 Jan 1985',2,2,1250,933,1,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I933<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I2<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I1<sS>SessionStart><p33<g9<(S>+x07+xda+x01+x01><p34<tp35<Rp36<sS>id><p37<I691<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:42:43,024 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 691}]
2012-09-12 22:43:44,831 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(692,'1 Jan 1985','1 Jan 1985',3,2,1350,1042,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xda+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1350<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1042<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I3<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xda+x07+x01><p34<tp35<Rp36<sS>id><p37<I692<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:43:44,838 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 692}]
2012-09-12 22:43:57,424 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(693,'1 Jan 1985','1 Jan 1985',4,2,1300,1010,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1010<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x01+x01><p34<tp35<Rp36<sS>id><p37<I693<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:43:57,430 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 693}]
2012-09-12 22:44:08,319 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(694,'1 Jan 1985','1 Jan 1985',5,2,1350,1071,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1350<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1071<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x08+x01><p34<tp35<Rp36<sS>id><p37<I694<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:44:08,325 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 694}]
2012-09-12 22:44:18,632 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(694,'1 Jan 1985','1 Jan 1985',5,2,1350,1071,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1350<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1071<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I694<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:44:18,645 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 694}]
2012-09-12 22:44:49,243 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(694,'1 Jul 2011','1 Dec 2011',5,2,1350,1071,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1350<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1071<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I694<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:44:49,253 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 694}]
2012-09-12 22:45:15,980 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(693,'1 Jan 2011','1 May 2011',4,2,1300,1010,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1010<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I4<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I693<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:45:15,988 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 693}]
2012-09-12 22:45:26,557 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(690,'1 Jan 1985','1 Jan 1985',6,2,1300,1033,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdc+x05+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1300<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1033<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I6<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdc+x01+x01><p34<tp35<Rp36<sS>id><p37<I690<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:45:26,567 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 690}]
2012-09-12 22:45:47,569 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(692,'1 Jul 2010','1 Dec 2010',3,2,1350,1042,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1350<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1042<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I3<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I692<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:45:47,579 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 692}]
2012-09-12 22:46:12,022 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(691,'1 Jan 2010','1 May 2010',2,2,1250,933,1,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I933<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I2<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I1<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I691<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:46:12,035 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 691}]
2012-09-12 22:46:35,125 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(689,'1 Jul 2009','1 Dec 2009',1,2,1250,863,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd9+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1250<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I863<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd9+x07+x01><p34<tp35<Rp36<sS>id><p37<I689<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:46:35,135 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 689}]
2012-09-12 22:46:56,790 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(694,'1 Jul 2011','1 Dec 2011',5,2,1350,1071,0,0,1,1,1,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I1<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xdb+x0c+x01><p10<tp11<Rp12<sS>Degree_id><p13<I1<sS>TotalMarks><p14<I1350<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I2<sS>SecuredMarks><p26<I1071<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I5<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I1<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xdb+x07+x01><p34<tp35<Rp36<sS>id><p37<I694<sb.','SYS_PER_UPDATE',241,'117.197.126.11');
2012-09-12 22:46:56,797 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 694}]
2012-09-12 22:49:02,729 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(200,'Patient information system','1 Jun 2011','1 Jul 2011','CDAC','trainee','An ISO 9001:2008 Certified Institute
Centre for development of advanced computing,
A scientific Society of ministry of communications & Information Technology, Govt. of India.','CDAC Mohali
Contact : 01722237052','C# .Net and My SQL Server.',1,'Mr. Nitin
9888609937','This software can be used to keep track of the patients registering in a hospital or clinic. Also, this system supports accessing the previous visit histories of any patient, search for patients by name and other properties etc.','SYS_PER_INSERT',200,'124.253.205.210');
2012-09-12 22:49:02,736 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 1, 'rescode': 19}]
2012-09-12 22:50:21,008 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(290,'Computer Networking','1 Jun 2011','1 Jul 2011','Centre for Development of Advanced Computing, Mohali','Trainee','Centre for Development of Advanced Computing (C-DAC), Mohali is a Scientific Society of the Ministry of Communications and Information Technology, Government of India.C-DAC Mohali, ISO 9001:2008 certified, is a Research & Development organization engaged in design and deployment of world class IT and electronics solutions.','Centre for Development of Advanced Computing
A Scientific Society of the Ministry of Communications & Information Technology, (Govt. of India)
A-34, Industrial Area, Phase VIII, Mohali - 160071.(INDIA)
Phone : +91-172-2237052-55, +91-172-6619000. FAX : +91-172-2237050-51.
Website : www.cdacmohali.in','Knowledge of different networking devices.
Knowledge of different network designs.
Knowledge of different protocols.
Knowledge of the simulation software, CISCO Packet tracer',1,'','The project aimed at simulating the computer network aimed at interconnecting a company's different branches, such that the speed of connetivity was high but at average cost','SYS_PER_INSERT',290,'117.220.103.13');
2012-09-12 22:50:21,095 DBExtraAcademicInfo line:100 ERROR DBExtraAcademicInfoDetailsInsert : [details : {'ExtraAcadmicInfoType_id': 1, 'User_id': 290, 'Designation': u'Trainee', 'Title': u'Computer Networking', 'ip': '117.220.103.13', 'Organisation': u'Centre for Development of Advanced Computing, Mohali', 'FunctionalArea': u'Knowledge of different networking devices.\r\nKnowledge of different network designs.\r\nKnowledge of different protocols.\r\nKnowledge of the simulation software, CISCO Packet tracer', 'Summary': u"The project aimed at simulating the computer network aimed at interconnecting a company's different branches, such that the speed of connetivity was high but at average cost", 'Start': u'1 Jun 2011', 'Details': u'Centre for Development of Advanced Computing (C-DAC), Mohali is a Scientific Society of the Ministry of Communications and Information Technology, Government of India.C-DAC Mohali, ISO 9001:2008 certified, is a Research & Development organization engaged in design and deployment of world class IT and electronics solutions.', 'RequestedOperation': 'SYS_PER_INSERT', 'End': u'1 Jul 2011', 'PlaceOfWork': u'Centre for Development of Advanced Computing\r\nA Scientific Society of the Ministry of Communications & Information Technology, (Govt. of India)\r\nA-34, Industrial Area, Phase VIII, Mohali - 160071.(INDIA)\r\nPhone : +91-172-2237052-55, +91-172-6619000. FAX : +91-172-2237050-51.\r\nWebsite : www.cdacmohali.in', 'by_user': 290, 'References': u''}]
Traceback (most recent call last):
File "/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/UserProfile/DBFunctions/DBExtraAcademicInfo.py", line 91, in DBExtraAcademicInfoDetailsInsert
result = DBhelper.CallFunction(query)
File "/var/www/vhosts/thoughtxplore.com/uiet/tx2/tx2/DataBaseHelper/DBhelper.py", line 20, in CallFunction
cursor.execute(sql)
File "/usr/lib/python2.6/site-packages/django/db/backends/util.py", line 34, in execute
return self.cursor.execute(sql, params)
File "/usr/lib/python2.6/site-packages/django/db/backends/postgresql_psycopg2/base.py", line 44, in execute
return self.cursor.execute(query, args)
DatabaseError: syntax error at or near "s" at character 1071
2012-09-12 22:51:47,761 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(688,'1 Apr 2005','1 Mar 2006',1,1,500,452,0,0,3,2,2,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xc1+x01+x01><p10<tp11<Rp12<sS>Degree_id><p13<I2<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I452<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I3<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xc1+x01+x01><p34<tp35<Rp36<sS>id><p37<I688<sb.','SYS_PER_UPDATE',241,'117.214.148.63');
2012-09-12 22:51:47,768 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 688}]
2012-09-12 22:52:12,976 DBFunctions line:288 DEBUG [DBMarksUpdate] SELECT * FROM MarksUpdate(1737,'1 Apr 2007','1 Mar 2008',1,1,500,409,0,0,4,2,3,241,'cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<Marks<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>Board_id><p7<I2<sS>SessionEnd><p8<cdatetime<date<p9<(S>+x07+xd8+x03+x01><p10<tp11<Rp12<sS>Degree_id><p13<I3<sS>TotalMarks><p14<I500<sS>_state><p15<ccopy_reg<_reconstructor<p16<(cdjango.db.models.base<ModelState<p17<c__builtin__<object<p18<Ntp19<Rp20<(dp21<S>adding><p22<I00<sS>db><p23<S>default><p24<sbsS>SessionType_id><p25<I1<sS>SecuredMarks><p26<I409<sS>ReappersRemaining><p27<I0<sS>SessionNumber><p28<I1<sS>UserId_id><p29<I241<sS>DegreeType_id><p30<I4<sS>State_id><p31<I1<sS>TotalReappers><p32<I0<sS>SessionStart><p33<g9<(S>+x07+xd7+x04+x01><p34<tp35<Rp36<sS>id><p37<I1737<sb.','SYS_PER_UPDATE',241,'117.214.148.63');
2012-09-12 22:52:12,986 DBFunctions line:291 DEBUG [DBMarksUpdate] [{'result': 1, 'rescode': 1737}]
2012-09-12 22:57:06,444 DBExtraAcademicInfo line:89 DEBUG [DBExtraAcademicInfoDetailsInsert] SELECT * FROM ExtraAcademicInfoDetailsInsert(38,'Hot Axle & Hot Wheel (HAHW) Detector System','1 Jun 2011','1 Jul 2011','Research Designs and Standards Organisation (RDSO)','Summer Trainee','RDSO is the sole R&D organisation of Indian Railways at Lucknow, formed in 1957 and functions as the technical advisor to Railway Board Zonal Railways and Production Units.','Research Designs and Standards Organisation (RDSO)
Manaknagar, Lucknow- 226011','',1,'','WILD is an unmanned intelligent trackside data acquisition system that measures the dynamic impact load of wheels on the road.
WILD system helped to reduce the railway maintenance cost significantly by identifying the damage causing wheel wheels for quick removal. Every train passing causes the system to trigger, capture/analyse and report the report the condition.','SYS_PER_INSERT',38,'14.98.180.170');
2012-09-12 22:57:06,446 DBExtraAcademicInfo line:92 DEBUG [DBExtraAcademicInfoDetailsInsert] [{'result': 2, 'rescode': 161}]
2012-09-12 22:58:26,958 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(517,'UE91054',18,18,1,1,'WINDOWS 7, MS OFFICE, BASICS OF C
','53711','SYS_PER_INSERT',517,'117.211.87.147');
2012-09-12 22:58:26,971 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 1, 'rescode': 381}]
2012-09-12 22:58:26,984 UserProfile line:154 DEBUG [ChangeUserGroup][517] == (1, 'Group Change Sucessful') ==
2012-09-12 23:05:52,286 DBFunctions line:168 DEBUG [DBInsertStudentDetails] SELECT * FROM StudentDetailsInsert(518,'UE91038',18,18,1,1,'windows7, MS Office, Basics of C','44263','SYS_PER_INSERT',518,'117.211.87.147');
2012-09-12 23:05:52,294 DBFunctions line:171 DEBUG [DBInsertStudentDetails] [{'result': 1, 'rescode': 382}]
2012-09-12 23:05:52,302 UserProfile line:154 DEBUG [ChangeUserGroup][518] == (1, 'Group Change Sucessful') ==
2012-09-12 23:06:26,195 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Apr 2005','1 Mar 2006',1,1,500,452,0,0,3,2,2,54,'SYS_PER_INSERT',54,'117.211.87.147');
2012-09-12 23:06:26,213 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1738}]
2012-09-12 23:08:22,023 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jun 2006','1 Mar 2008',1,1,500,401,0,0,4,2,3,54,'SYS_PER_INSERT',54,'117.211.87.147');
2012-09-12 23:08:22,047 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1739}]
2012-09-12 23:12:07,855 DBFunctions line:185 DEBUG [DBStudentDetailsUpdate] SELECT * FROM StudentDetailsUpdate(369,519,'ue93060',13,13,1,3,'c,c++,asp.net,php','241434','cdjango.db.models.base<model_unpickle<p0<(ctx2.UserProfile.models<StudentDetails<p1<(lp2<cdjango.db.models.base<simple_class_factory<p3<tp4<Rp5<(dp6<S>BranchMinor><p7<I13<sS>User_id><p8<I519<sS>RollNo><p9<Vue93060<p10<sS>_state><p11<ccopy_reg<_reconstructor<p12<(cdjango.db.models.base<ModelState<p13<c__builtin__<object<p14<Ntp15<Rp16<(dp17<S>adding><p18<I00<sS>db><p19<S>default><p20<sbsS>ComputerProficiency><p21<Vc,c++,.net,php<p22<sS>DegreePursuing_id><p23<I1<sS>State_id><p24<I1<sS>Category_id><p25<I3<sS>AIEEE><p26<V241434<p27<sS>id><p28<I369<sS>BranchMajor_id><p29<I13<sb.','SYS_PER_UPDATE',519,'117.197.123.203');
2012-09-12 23:12:07,863 DBFunctions line:188 DEBUG [DBStudentDetailsUpdate] [{'result': -2, 'rescode': 504}]
2012-09-12 23:12:07,863 UserProfile line:198 DEBUG [InsertStudentDetails] == Exception {'result': -2, 'rescode': 504}, 519==
2012-09-12 23:12:11,813 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2009','1 Nov 2009',1,2,1250,770,0,0,1,1,1,54,'SYS_PER_INSERT',54,'117.211.87.147');
2012-09-12 23:12:11,832 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1740}]
2012-09-12 12:44:54,958 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2010','1 May 2010',2,2,500,710,0,0,1,1,1,54,'SYS_PER_INSERT',54,'117.211.87.147');
2012-09-12 12:44:54,977 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1741}]
2012-09-12 12:48:00,930 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jul 2010','1 Nov 2010',3,2,1250,803,0,0,1,1,1,54,'SYS_PER_INSERT',54,'117.211.87.147');
2012-09-12 12:48:00,948 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1742}]
2012-09-12 12:49:19,367 DBFunctions line:83 DEBUG [DBInsertMarks] SELECT * FROM MarksInsert('1 Jan 2011','1 May 2011',4,2,1250,917,0,0,1,1,1,54,'SYS_PER_INSERT',54,'117.211.87.147');
2012-09-12 12:49:19,385 DBFunctions line:86 DEBUG [DBInsertMarks] [{'result': 1, 'rescode': 1743}]