-
Notifications
You must be signed in to change notification settings - Fork 0
/
GDBDeploy_LOG.txt
8848 lines (8848 loc) · 552 KB
/
GDBDeploy_LOG.txt
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
TEST!!!
Test File is open
Test File is open
Test File is open
-----------------Beginning Deploy Job---------------
*----------Processing layer SDW.CITY.ExistingBikeRoutes_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes to Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes_NEW to Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes_BAK
Unable to update date timestamp for ExistingBikeRoutes
Timestamp Update Error: error return without exception set
*----------Finished layer 1, total elapsed time = 0:00:24
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ExistingParks_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.ExistingParks to Database Connections\[email protected]\SDW.CITY.ExistingParks_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.ExistingParks_NEW to Database Connections\[email protected]\SDW.CITY.ExistingParks
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.ExistingParks
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.ExistingParks_BAK
Unable to update date timestamp for ExistingParks
Timestamp Update Error: error return without exception set
*----------Finished layer 2, total elapsed time = 0:00:32
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.GPStreetSystem_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.GPStreetSystem to Database Connections\[email protected]\SDW.CITY.GPStreetSystem_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.GPStreetSystem_NEW to Database Connections\[email protected]\SDW.CITY.GPStreetSystem
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.GPStreetSystem
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.GPStreetSystem_BAK
Unable to update date timestamp for GPStreetSystem
Timestamp Update Error: error return without exception set
*----------Finished layer 3, total elapsed time = 0:00:40
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HRBDesignatedPoints_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints to Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints_NEW to Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints_BAK
Unable to update date timestamp for HRBDesignatedPoints
Timestamp Update Error: error return without exception set
*----------Finished layer 4, total elapsed time = 0:00:48
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HRBDistrictContributors_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors to Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors_NEW to Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors_BAK
Unable to update date timestamp for HRBDistrictContributors
Timestamp Update Error: error return without exception set
*----------Finished layer 5, total elapsed time = 0:00:55
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HabiTrak_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HabiTrak to Database Connections\[email protected]\SDW.CITY.HabiTrak_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HabiTrak_NEW to Database Connections\[email protected]\SDW.CITY.HabiTrak
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HabiTrak
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HabiTrak_BAK
Unable to update date timestamp for HabiTrak
Timestamp Update Error: error return without exception set
*----------Finished layer 6, total elapsed time = 0:01:04
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HistoricDistricts_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HistoricDistricts to Database Connections\[email protected]\SDW.CITY.HistoricDistricts_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HistoricDistricts_NEW to Database Connections\[email protected]\SDW.CITY.HistoricDistricts
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HistoricDistricts
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HistoricDistricts_BAK
Unable to update date timestamp for HistoricDistricts
Timestamp Update Error: error return without exception set
*----------Finished layer 7, total elapsed time = 0:01:11
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.JointUseParks_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.JointUseParks to Database Connections\[email protected]\SDW.CITY.JointUseParks_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.JointUseParks_NEW to Database Connections\[email protected]\SDW.CITY.JointUseParks
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.JointUseParks
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.JointUseParks_BAK
Unable to update date timestamp for JointUseParks
Timestamp Update Error: error return without exception set
*----------Finished layer 8, total elapsed time = 0:01:19
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.MHPACorrections_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.MHPACorrections to Database Connections\[email protected]\SDW.CITY.MHPACorrections_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.MHPACorrections_NEW to Database Connections\[email protected]\SDW.CITY.MHPACorrections
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.MHPACorrections
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.MHPACorrections_BAK
Unable to update date timestamp for MHPACorrections
Timestamp Update Error: error return without exception set
*----------Finished layer 9, total elapsed time = 0:01:28
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.PlanLandUse_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.PlanLandUse to Database Connections\[email protected]\SDW.CITY.PlanLandUse_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.PlanLandUse_NEW to Database Connections\[email protected]\SDW.CITY.PlanLandUse
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.PlanLandUse
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.PlanLandUse_BAK
Unable to update date timestamp for PlanLandUse
Timestamp Update Error: error return without exception set
*----------Finished layer 10, total elapsed time = 0:01:36
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.PrimeIndustrialLands_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands to Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands_NEW to Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands_BAK
Unable to update date timestamp for PrimeIndustrialLands
Timestamp Update Error: error return without exception set
*----------Finished layer 11, total elapsed time = 0:01:44
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ProposedBikeRoutes_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes to Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes_NEW to Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes_BAK
Unable to update date timestamp for ProposedBikeRoutes
Timestamp Update Error: error return without exception set
*----------Finished layer 12, total elapsed time = 0:01:52
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ROADS_FREEWAY_RAMP_NEW
ROADS_FREEWAY_RAMP has the alias name ROADS_FREEWAY_RAMP
ROADS_FREEWAY_RAMP resides in the dataset SDW.CITY.SANGIS
Deleting backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_FREEWAY_RAMP
Renaming new Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_FREEWAY_RAMP_NEW to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_FREEWAY_RAMP
ROADS_FREEWAY_RAMP has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_FREEWAY_RAMP' AD\SDEVIEWER GRANT #
Start Time: Fri Aug 02 16:42:21 2013
Succeeded at Fri Aug 02 16:42:27 2013 (Elapsed Time: 6.00 seconds)
Updated Timestamp for ROADS_FREEWAY_RAMP...
*----------Finished layer 13, total elapsed time = 0:03:44
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ROADS_HIGHWAY_NEW
ROADS_HIGHWAY has the alias name ROADS_HIGHWAY
ROADS_HIGHWAY resides in the dataset SDW.CITY.SANGIS
Deleting backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_HIGHWAY
Renaming to backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_HIGHWAY to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_HIGHWAY_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_HIGHWAY_NEW to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_HIGHWAY
ROADS_HIGHWAY has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_HIGHWAY' AD\SDEVIEWER GRANT #
Start Time: Fri Aug 02 16:44:19 2013
Succeeded at Fri Aug 02 16:44:24 2013 (Elapsed Time: 5.00 seconds)
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_HIGHWAY_BAK' AD\SDEVIEWER REVOKE REVOKE
Start Time: Fri Aug 02 16:44:29 2013
Succeeded at Fri Aug 02 16:44:35 2013 (Elapsed Time: 6.00 seconds)
Updated Timestamp for ROADS_HIGHWAY...
*----------Finished layer 14, total elapsed time = 0:05:52
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ROADS_INTERSECTION_NEW
ROADS_INTERSECTION has the alias name ROADS_INTERSECTION
ROADS_INTERSECTION resides in the dataset SDW.CITY.SANGIS
Test File is open
-----------------Beginning Deploy Job---------------
*----------Processing layer SDW.CITY.ExistingBikeRoutes_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes
Renaming to backup for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes to Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes_NEW to Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes_BAK
Unable to update date timestamp for ExistingBikeRoutes
Timestamp Update Error: error return without exception set
*----------Finished layer 1, total elapsed time = 0:00:29
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ExistingParks_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.ExistingParks
Renaming to backup for Database Connections\[email protected]\SDW.CITY.ExistingParks to Database Connections\[email protected]\SDW.CITY.ExistingParks_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.ExistingParks_NEW to Database Connections\[email protected]\SDW.CITY.ExistingParks
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.ExistingParks
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.ExistingParks_BAK
Unable to update date timestamp for ExistingParks
Timestamp Update Error: error return without exception set
*----------Finished layer 2, total elapsed time = 0:00:40
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.GPStreetSystem_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.GPStreetSystem
Renaming to backup for Database Connections\[email protected]\SDW.CITY.GPStreetSystem to Database Connections\[email protected]\SDW.CITY.GPStreetSystem_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.GPStreetSystem_NEW to Database Connections\[email protected]\SDW.CITY.GPStreetSystem
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.GPStreetSystem
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.GPStreetSystem_BAK
Unable to update date timestamp for GPStreetSystem
Timestamp Update Error: error return without exception set
*----------Finished layer 3, total elapsed time = 0:00:50
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HRBDesignatedPoints_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints to Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints_NEW to Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints_BAK
Unable to update date timestamp for HRBDesignatedPoints
Timestamp Update Error: error return without exception set
*----------Finished layer 4, total elapsed time = 0:01:00
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HRBDistrictContributors_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors to Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors_NEW to Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors_BAK
Unable to update date timestamp for HRBDistrictContributors
Timestamp Update Error: error return without exception set
*----------Finished layer 5, total elapsed time = 0:01:11
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HabiTrak_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.HabiTrak
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HabiTrak to Database Connections\[email protected]\SDW.CITY.HabiTrak_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HabiTrak_NEW to Database Connections\[email protected]\SDW.CITY.HabiTrak
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HabiTrak
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HabiTrak_BAK
Unable to update date timestamp for HabiTrak
Timestamp Update Error: error return without exception set
*----------Finished layer 6, total elapsed time = 0:01:22
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HistoricDistricts_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.HistoricDistricts
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HistoricDistricts to Database Connections\[email protected]\SDW.CITY.HistoricDistricts_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HistoricDistricts_NEW to Database Connections\[email protected]\SDW.CITY.HistoricDistricts
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HistoricDistricts
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HistoricDistricts_BAK
Unable to update date timestamp for HistoricDistricts
Timestamp Update Error: error return without exception set
*----------Finished layer 7, total elapsed time = 0:01:32
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.JointUseParks_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.JointUseParks
Renaming to backup for Database Connections\[email protected]\SDW.CITY.JointUseParks to Database Connections\[email protected]\SDW.CITY.JointUseParks_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.JointUseParks_NEW to Database Connections\[email protected]\SDW.CITY.JointUseParks
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.JointUseParks
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.JointUseParks_BAK
Unable to update date timestamp for JointUseParks
Timestamp Update Error: error return without exception set
*----------Finished layer 8, total elapsed time = 0:01:43
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.MHPACorrections_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.MHPACorrections
Renaming to backup for Database Connections\[email protected]\SDW.CITY.MHPACorrections to Database Connections\[email protected]\SDW.CITY.MHPACorrections_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.MHPACorrections_NEW to Database Connections\[email protected]\SDW.CITY.MHPACorrections
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.MHPACorrections
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.MHPACorrections_BAK
Unable to update date timestamp for MHPACorrections
Timestamp Update Error: error return without exception set
*----------Finished layer 9, total elapsed time = 0:01:53
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.PlanLandUse_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.PlanLandUse
Renaming to backup for Database Connections\[email protected]\SDW.CITY.PlanLandUse to Database Connections\[email protected]\SDW.CITY.PlanLandUse_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.PlanLandUse_NEW to Database Connections\[email protected]\SDW.CITY.PlanLandUse
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.PlanLandUse
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.PlanLandUse_BAK
Unable to update date timestamp for PlanLandUse
Timestamp Update Error: error return without exception set
*----------Finished layer 10, total elapsed time = 0:02:05
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.PrimeIndustrialLands_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands
Renaming to backup for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands to Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands_NEW to Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands_BAK
Unable to update date timestamp for PrimeIndustrialLands
Timestamp Update Error: error return without exception set
*----------Finished layer 11, total elapsed time = 0:02:15
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ProposedBikeRoutes_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes
Renaming to backup for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes to Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes_NEW to Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes_BAK
Unable to update date timestamp for ProposedBikeRoutes
Timestamp Update Error: error return without exception set
*----------Finished layer 12, total elapsed time = 0:02:26
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ROADS_INTERSECTION_NEW
ROADS_INTERSECTION has the alias name ROADS_INTERSECTION
ROADS_INTERSECTION resides in the dataset SDW.CITY.SANGIS
Deleting backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_INTERSECTION
Renaming to backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_INTERSECTION to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_INTERSECTION_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_INTERSECTION_NEW to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_INTERSECTION
ROADS_INTERSECTION has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_INTERSECTION' AD\SDEVIEWER GRANT #
Start Time: Tue Aug 06 10:39:03 2013
Succeeded at Tue Aug 06 10:39:08 2013 (Elapsed Time: 5.00 seconds)
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_INTERSECTION_BAK' AD\SDEVIEWER REVOKE REVOKE
Start Time: Tue Aug 06 10:39:12 2013
Succeeded at Tue Aug 06 10:39:18 2013 (Elapsed Time: 6.00 seconds)
Updated Timestamp for ROADS_INTERSECTION...
*----------Finished layer 13, total elapsed time = 0:04:38
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ROADS_MAJOR_NEW
ROADS_MAJOR has the alias name ROADS_MAJOR
ROADS_MAJOR resides in the dataset SDW.CITY.SANGIS
Deleting backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_MAJOR
Renaming to backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_MAJOR to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_MAJOR_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_MAJOR_NEW to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_MAJOR
ROADS_MAJOR has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_MAJOR' AD\SDEVIEWER GRANT #
Start Time: Tue Aug 06 10:41:08 2013
Succeeded at Tue Aug 06 10:41:13 2013 (Elapsed Time: 5.00 seconds)
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_MAJOR_BAK' AD\SDEVIEWER REVOKE REVOKE
Start Time: Tue Aug 06 10:41:18 2013
Succeeded at Tue Aug 06 10:41:23 2013 (Elapsed Time: 5.00 seconds)
Updated Timestamp for ROADS_MAJOR...
*----------Finished layer 14, total elapsed time = 0:06:43
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ROADS_TRANSITION_RAMP_NEW
ROADS_TRANSITION_RAMP has the alias name ROADS_TRANSITION_RAMP
ROADS_TRANSITION_RAMP resides in the dataset SDW.CITY.SANGIS
Deleting backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_TRANSITION_RAMP
Renaming to backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_TRANSITION_RAMP to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_TRANSITION_RAMP_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_TRANSITION_RAMP_NEW to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_TRANSITION_RAMP
ROADS_TRANSITION_RAMP has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_TRANSITION_RAMP' AD\SDEVIEWER GRANT #
Start Time: Tue Aug 06 10:43:12 2013
Succeeded at Tue Aug 06 10:43:18 2013 (Elapsed Time: 6.00 seconds)
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ROADS_TRANSITION_RAMP_BAK' AD\SDEVIEWER REVOKE REVOKE
Start Time: Tue Aug 06 10:43:22 2013
Succeeded at Tue Aug 06 10:43:27 2013 (Elapsed Time: 5.00 seconds)
Updated Timestamp for ROADS_TRANSITION_RAMP...
*----------Finished layer 15, total elapsed time = 0:08:47
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.RegionalVegetation_1997_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.RegionalVegetation_1997_NEW to Database Connections\[email protected]\SDW.CITY.RegionalVegetation_1997
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.RegionalVegetation_1997
Unable to update date timestamp for RegionalVegetation_1997
Timestamp Update Error: error return without exception set
*----------Finished layer 16, total elapsed time = 0:08:52
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.RegionalVegetation_2012_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.RegionalVegetation_2012_NEW to Database Connections\[email protected]\SDW.CITY.RegionalVegetation_2012
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.RegionalVegetation_2012
Unable to update date timestamp for RegionalVegetation_2012
Timestamp Update Error: error return without exception set
*----------Finished layer 17, total elapsed time = 0:08:56
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.SUBDIVISION_LINE_NEW
SUBDIVISION_LINE has the alias name SUBDIVISION_LINE
SUBDIVISION_LINE resides in the dataset SDW.CITY.SANGIS
Deleting backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_LINE
Renaming to backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_LINE to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_LINE_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_LINE_NEW to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_LINE
SUBDIVISION_LINE has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_LINE' AD\SDEVIEWER GRANT #
Start Time: Tue Aug 06 10:45:25 2013
Succeeded at Tue Aug 06 10:45:30 2013 (Elapsed Time: 5.00 seconds)
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_LINE_BAK' AD\SDEVIEWER REVOKE REVOKE
Start Time: Tue Aug 06 10:45:34 2013
Succeeded at Tue Aug 06 10:45:39 2013 (Elapsed Time: 5.00 seconds)
Updated Timestamp for SUBDIVISION_LINE...
*----------Finished layer 18, total elapsed time = 0:10:59
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.SUBDIVISION_NEW
SUBDIVISION has the alias name SUBDIVISION
SUBDIVISION resides in the dataset SDW.CITY.SANGIS
Deleting backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION
Renaming to backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_NEW to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION
SUBDIVISION has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION' AD\SDEVIEWER GRANT #
Start Time: Tue Aug 06 10:47:22 2013
Succeeded at Tue Aug 06 10:47:27 2013 (Elapsed Time: 5.00 seconds)
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.SUBDIVISION_BAK' AD\SDEVIEWER REVOKE REVOKE
Start Time: Tue Aug 06 10:47:30 2013
Succeeded at Tue Aug 06 10:47:36 2013 (Elapsed Time: 6.00 seconds)
Updated Timestamp for SUBDIVISION...
*----------Finished layer 19, total elapsed time = 0:12:56
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.S_FEWD_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.S_FEWD_NEW to Database Connections\[email protected]\SDW.CITY.S_FEWD
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.S_FEWD
Unable to update date timestamp for S_FEWD
Timestamp Update Error: error return without exception set
*----------Finished layer 20, total elapsed time = 0:13:00
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.TBL_ROAD_NAME_NEW
TBL_ROAD_NAME has the alias name TBL_ROAD_NAME
Renaming to backup for Database Connections\[email protected]\SDW.CITY.TBL_ROAD_NAME to Database Connections\[email protected]\SDW.CITY.TBL_ROAD_NAME_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.TBL_ROAD_NAME_NEW to Database Connections\[email protected]\SDW.CITY.TBL_ROAD_NAME
TBL_ROAD_NAME has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.TBL_ROAD_NAME' AD\SDEVIEWER GRANT #
Start Time: Tue Aug 06 10:47:43 2013
Succeeded at Tue Aug 06 10:47:44 2013 (Elapsed Time: 1.00 seconds)
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.TBL_ROAD_NAME_BAK' AD\SDEVIEWER REVOKE REVOKE
Start Time: Tue Aug 06 10:47:45 2013
Succeeded at Tue Aug 06 10:47:45 2013 (Elapsed Time: 0.00 seconds)
Updated Timestamp for TBL_ROAD_NAME...
*----------Finished layer 21, total elapsed time = 0:13:05
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_Arroyo_Toad_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_Arroyo_Toad_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_Arroyo_Toad
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_Arroyo_Toad
Unable to update date timestamp for USFWS_Arroyo_Toad
Timestamp Update Error: error return without exception set
*----------Finished layer 22, total elapsed time = 0:13:10
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_Cali_Gnatcatcher_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_Cali_Gnatcatcher_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_Cali_Gnatcatcher
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_Cali_Gnatcatcher
Unable to update date timestamp for USFWS_Cali_Gnatcatcher
Timestamp Update Error: error return without exception set
*----------Finished layer 23, total elapsed time = 0:13:14
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_LeastBell_Vireo_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_LeastBell_Vireo_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_LeastBell_Vireo
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_LeastBell_Vireo
Unable to update date timestamp for USFWS_LeastBell_Vireo
Timestamp Update Error: error return without exception set
*----------Finished layer 24, total elapsed time = 0:13:19
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_Otay_Tarplant_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_Otay_Tarplant_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_Otay_Tarplant
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_Otay_Tarplant
Unable to update date timestamp for USFWS_Otay_Tarplant
Timestamp Update Error: error return without exception set
*----------Finished layer 25, total elapsed time = 0:13:23
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_RvrsdFairyShrimp_05_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_05_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_05
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_05
Unable to update date timestamp for USFWS_RvrsdFairyShrimp_05
Timestamp Update Error: error return without exception set
*----------Finished layer 26, total elapsed time = 0:13:28
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_RvrsdFairyShrimp_11_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_11_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_11
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_11
Unable to update date timestamp for USFWS_RvrsdFairyShrimp_11
Timestamp Update Error: error return without exception set
*----------Finished layer 27, total elapsed time = 0:13:32
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SD_FairyShrimp_07_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SD_FairyShrimp_07_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SD_FairyShrimp_07
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SD_FairyShrimp_07
Unable to update date timestamp for USFWS_SD_FairyShrimp_07
Timestamp Update Error: error return without exception set
*----------Finished layer 28, total elapsed time = 0:13:36
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SanDiego_Ambrosia_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Ambrosia_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Ambrosia
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Ambrosia
Unable to update date timestamp for USFWS_SanDiego_Ambrosia
Timestamp Update Error: error return without exception set
*----------Finished layer 29, total elapsed time = 0:13:41
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SanDiego_Thornmint_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Thornmint_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Thornmint
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Thornmint
Unable to update date timestamp for USFWS_SanDiego_Thornmint
Timestamp Update Error: error return without exception set
*----------Finished layer 30, total elapsed time = 0:13:45
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SouthWestFlycatcher_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SouthWestFlycatcher_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SouthWestFlycatcher
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SouthWestFlycatcher
Unable to update date timestamp for USFWS_SouthWestFlycatcher
Timestamp Update Error: error return without exception set
*----------Finished layer 31, total elapsed time = 0:13:50
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SpreadingNavarretia_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SpreadingNavarretia_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SpreadingNavarretia
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SpreadingNavarretia
Unable to update date timestamp for USFWS_SpreadingNavarretia
Timestamp Update Error: error return without exception set
*----------Finished layer 32, total elapsed time = 0:13:54
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_ThreadLeavedBrodiaea_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_ThreadLeavedBrodiaea_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_ThreadLeavedBrodiaea
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_ThreadLeavedBrodiaea
Unable to update date timestamp for USFWS_ThreadLeavedBrodiaea
Timestamp Update Error: error return without exception set
*----------Finished layer 33, total elapsed time = 0:13:59
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_WillowyMonardella_06_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_06_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_06
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_06
Unable to update date timestamp for USFWS_WillowyMonardella_06
Timestamp Update Error: error return without exception set
*----------Finished layer 34, total elapsed time = 0:14:03
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_WillowyMonardella_11_NEW
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_11_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_11
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_11
Unable to update date timestamp for USFWS_WillowyMonardella_11
Timestamp Update Error: error return without exception set
*----------Finished layer 35, total elapsed time = 0:14:07
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ZIPCODE_NEW
ZIPCODE has the alias name ZIPCODE
ZIPCODE resides in the dataset SDW.CITY.SANGIS
Deleting backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ZIPCODE
Renaming to backup for Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ZIPCODE to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ZIPCODE_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ZIPCODE_NEW to Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ZIPCODE
ZIPCODE has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ZIPCODE' AD\SDEVIEWER GRANT #
Start Time: Tue Aug 06 10:50:28 2013
Succeeded at Tue Aug 06 10:50:33 2013 (Elapsed Time: 5.00 seconds)
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.SANGIS\SDW.CITY.ZIPCODE_BAK' AD\SDEVIEWER REVOKE REVOKE
Start Time: Tue Aug 06 10:50:37 2013
Succeeded at Tue Aug 06 10:50:42 2013 (Elapsed Time: 5.00 seconds)
Updated Timestamp for ZIPCODE...
*----------Finished layer 36, total elapsed time = 0:16:02
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.drain_bmp_NEW
DRAIN_BMP has the alias name drain_bmp
drain_bmp resides in the dataset None
Test File is open
-----------------Beginning Deploy Job---------------
*----------Processing layer SDW.CITY.drain_bmp_NEW
DRAIN_BMP has the alias name drain_bmp
drain_bmp resides in the dataset None
Test File is open
-----------------Beginning Deploy Job---------------
*----------Processing layer SDW.CITY.drain_bmp_NEW
DRAIN_BMP has the alias name drain_bmp
drain_bmp resides in the dataset None
Test File is open
-----------------Beginning Deploy Job---------------
*----------Processing layer SDW.CITY.drain_bmp_NEW
DRAIN_BMP has the alias name drain_bmp
drain_bmp resides in the dataset None
Test File is open
-----------------Beginning Deploy Job---------------
*----------Processing layer SDW.CITY.drain_bmp_NEW
DRAIN_BMP has the alias name drain_bmp
drain_bmp resides in the dataset None
Test File is open
-----------------Beginning Deploy Job---------------
*----------Processing layer SDW.CITY.ExistingBikeRoutes_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes
Renaming to backup for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes to Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes_NEW to Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.ExistingBikeRoutes_BAK
Unable to update date timestamp for ExistingBikeRoutes
Timestamp Update Error: error return without exception set
*----------Finished layer 1, total elapsed time = 0:00:27
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ExistingParks_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.ExistingParks
Renaming to backup for Database Connections\[email protected]\SDW.CITY.ExistingParks to Database Connections\[email protected]\SDW.CITY.ExistingParks_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.ExistingParks_NEW to Database Connections\[email protected]\SDW.CITY.ExistingParks
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.ExistingParks
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.ExistingParks_BAK
Unable to update date timestamp for ExistingParks
Timestamp Update Error: error return without exception set
*----------Finished layer 2, total elapsed time = 0:00:37
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.GPStreetSystem_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.GPStreetSystem
Renaming to backup for Database Connections\[email protected]\SDW.CITY.GPStreetSystem to Database Connections\[email protected]\SDW.CITY.GPStreetSystem_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.GPStreetSystem_NEW to Database Connections\[email protected]\SDW.CITY.GPStreetSystem
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.GPStreetSystem
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.GPStreetSystem_BAK
Unable to update date timestamp for GPStreetSystem
Timestamp Update Error: error return without exception set
*----------Finished layer 3, total elapsed time = 0:00:47
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HRBDesignatedPoints_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints to Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints_NEW to Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HRBDesignatedPoints_BAK
Unable to update date timestamp for HRBDesignatedPoints
Timestamp Update Error: error return without exception set
*----------Finished layer 4, total elapsed time = 0:00:57
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HRBDistrictContributors_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors to Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors_NEW to Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HRBDistrictContributors_BAK
Unable to update date timestamp for HRBDistrictContributors
Timestamp Update Error: error return without exception set
*----------Finished layer 5, total elapsed time = 0:01:08
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HabiTrak_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.HabiTrak
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HabiTrak to Database Connections\[email protected]\SDW.CITY.HabiTrak_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HabiTrak_NEW to Database Connections\[email protected]\SDW.CITY.HabiTrak
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HabiTrak
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HabiTrak_BAK
Unable to update date timestamp for HabiTrak
Timestamp Update Error: error return without exception set
*----------Finished layer 6, total elapsed time = 0:01:20
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.HistoricDistricts_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.HistoricDistricts
Renaming to backup for Database Connections\[email protected]\SDW.CITY.HistoricDistricts to Database Connections\[email protected]\SDW.CITY.HistoricDistricts_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.HistoricDistricts_NEW to Database Connections\[email protected]\SDW.CITY.HistoricDistricts
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.HistoricDistricts
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.HistoricDistricts_BAK
Unable to update date timestamp for HistoricDistricts
Timestamp Update Error: error return without exception set
*----------Finished layer 7, total elapsed time = 0:01:31
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.JointUseParks_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.JointUseParks
Renaming to backup for Database Connections\[email protected]\SDW.CITY.JointUseParks to Database Connections\[email protected]\SDW.CITY.JointUseParks_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.JointUseParks_NEW to Database Connections\[email protected]\SDW.CITY.JointUseParks
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.JointUseParks
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.JointUseParks_BAK
Unable to update date timestamp for JointUseParks
Timestamp Update Error: error return without exception set
*----------Finished layer 8, total elapsed time = 0:01:41
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.MHPACorrections_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.MHPACorrections
Renaming to backup for Database Connections\[email protected]\SDW.CITY.MHPACorrections to Database Connections\[email protected]\SDW.CITY.MHPACorrections_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.MHPACorrections_NEW to Database Connections\[email protected]\SDW.CITY.MHPACorrections
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.MHPACorrections
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.MHPACorrections_BAK
Unable to update date timestamp for MHPACorrections
Timestamp Update Error: error return without exception set
*----------Finished layer 9, total elapsed time = 0:01:51
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.PlanLandUse_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.PlanLandUse
Renaming to backup for Database Connections\[email protected]\SDW.CITY.PlanLandUse to Database Connections\[email protected]\SDW.CITY.PlanLandUse_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.PlanLandUse_NEW to Database Connections\[email protected]\SDW.CITY.PlanLandUse
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.PlanLandUse
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.PlanLandUse_BAK
Unable to update date timestamp for PlanLandUse
Timestamp Update Error: error return without exception set
*----------Finished layer 10, total elapsed time = 0:02:03
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.PrimeIndustrialLands_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands
Renaming to backup for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands to Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands_NEW to Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.PrimeIndustrialLands_BAK
Unable to update date timestamp for PrimeIndustrialLands
Timestamp Update Error: error return without exception set
*----------Finished layer 11, total elapsed time = 0:02:14
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.ProposedBikeRoutes_NEW
Deleting backup for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes
Renaming to backup for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes to Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes_NEW to Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.ProposedBikeRoutes_BAK
Unable to update date timestamp for ProposedBikeRoutes
Timestamp Update Error: error return without exception set
*----------Finished layer 12, total elapsed time = 0:02:24
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.RegionalVegetation_1997_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.RegionalVegetation_1997 to Database Connections\[email protected]\SDW.CITY.RegionalVegetation_1997_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.RegionalVegetation_1997_NEW to Database Connections\[email protected]\SDW.CITY.RegionalVegetation_1997
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.RegionalVegetation_1997
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.RegionalVegetation_1997_BAK
Unable to update date timestamp for RegionalVegetation_1997
Timestamp Update Error: error return without exception set
*----------Finished layer 13, total elapsed time = 0:02:33
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.RegionalVegetation_2012_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.RegionalVegetation_2012 to Database Connections\[email protected]\SDW.CITY.RegionalVegetation_2012_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.RegionalVegetation_2012_NEW to Database Connections\[email protected]\SDW.CITY.RegionalVegetation_2012
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.RegionalVegetation_2012
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.RegionalVegetation_2012_BAK
Unable to update date timestamp for RegionalVegetation_2012
Timestamp Update Error: error return without exception set
*----------Finished layer 14, total elapsed time = 0:02:42
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.S_FEWD_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.S_FEWD to Database Connections\[email protected]\SDW.CITY.S_FEWD_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.S_FEWD_NEW to Database Connections\[email protected]\SDW.CITY.S_FEWD
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.S_FEWD
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.S_FEWD_BAK
Unable to update date timestamp for S_FEWD
Timestamp Update Error: error return without exception set
*----------Finished layer 15, total elapsed time = 0:02:48
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_Arroyo_Toad_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_Arroyo_Toad to Database Connections\[email protected]\SDW.CITY.USFWS_Arroyo_Toad_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_Arroyo_Toad_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_Arroyo_Toad
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_Arroyo_Toad
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_Arroyo_Toad_BAK
Unable to update date timestamp for USFWS_Arroyo_Toad
Timestamp Update Error: error return without exception set
*----------Finished layer 16, total elapsed time = 0:02:57
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_Cali_Gnatcatcher_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_Cali_Gnatcatcher to Database Connections\[email protected]\SDW.CITY.USFWS_Cali_Gnatcatcher_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_Cali_Gnatcatcher_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_Cali_Gnatcatcher
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_Cali_Gnatcatcher
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_Cali_Gnatcatcher_BAK
Unable to update date timestamp for USFWS_Cali_Gnatcatcher
Timestamp Update Error: error return without exception set
*----------Finished layer 17, total elapsed time = 0:03:06
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_LeastBell_Vireo_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_LeastBell_Vireo to Database Connections\[email protected]\SDW.CITY.USFWS_LeastBell_Vireo_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_LeastBell_Vireo_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_LeastBell_Vireo
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_LeastBell_Vireo
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_LeastBell_Vireo_BAK
Unable to update date timestamp for USFWS_LeastBell_Vireo
Timestamp Update Error: error return without exception set
*----------Finished layer 18, total elapsed time = 0:03:16
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_Otay_Tarplant_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_Otay_Tarplant to Database Connections\[email protected]\SDW.CITY.USFWS_Otay_Tarplant_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_Otay_Tarplant_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_Otay_Tarplant
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_Otay_Tarplant
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_Otay_Tarplant_BAK
Unable to update date timestamp for USFWS_Otay_Tarplant
Timestamp Update Error: error return without exception set
*----------Finished layer 19, total elapsed time = 0:03:25
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_RvrsdFairyShrimp_05_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_05 to Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_05_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_05_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_05
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_05
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_05_BAK
Unable to update date timestamp for USFWS_RvrsdFairyShrimp_05
Timestamp Update Error: error return without exception set
*----------Finished layer 20, total elapsed time = 0:03:34
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_RvrsdFairyShrimp_11_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_11 to Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_11_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_11_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_11
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_11
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_RvrsdFairyShrimp_11_BAK
Unable to update date timestamp for USFWS_RvrsdFairyShrimp_11
Timestamp Update Error: error return without exception set
*----------Finished layer 21, total elapsed time = 0:03:43
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SD_FairyShrimp_07_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_SD_FairyShrimp_07 to Database Connections\[email protected]\SDW.CITY.USFWS_SD_FairyShrimp_07_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SD_FairyShrimp_07_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SD_FairyShrimp_07
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SD_FairyShrimp_07
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_SD_FairyShrimp_07_BAK
Unable to update date timestamp for USFWS_SD_FairyShrimp_07
Timestamp Update Error: error return without exception set
*----------Finished layer 22, total elapsed time = 0:03:52
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SanDiego_Ambrosia_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Ambrosia to Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Ambrosia_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Ambrosia_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Ambrosia
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Ambrosia
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Ambrosia_BAK
Unable to update date timestamp for USFWS_SanDiego_Ambrosia
Timestamp Update Error: error return without exception set
*----------Finished layer 23, total elapsed time = 0:04:01
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SanDiego_Thornmint_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Thornmint to Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Thornmint_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Thornmint_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Thornmint
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Thornmint
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_SanDiego_Thornmint_BAK
Unable to update date timestamp for USFWS_SanDiego_Thornmint
Timestamp Update Error: error return without exception set
*----------Finished layer 24, total elapsed time = 0:04:10
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SouthWestFlycatcher_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_SouthWestFlycatcher to Database Connections\[email protected]\SDW.CITY.USFWS_SouthWestFlycatcher_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SouthWestFlycatcher_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SouthWestFlycatcher
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SouthWestFlycatcher
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_SouthWestFlycatcher_BAK
Unable to update date timestamp for USFWS_SouthWestFlycatcher
Timestamp Update Error: error return without exception set
*----------Finished layer 25, total elapsed time = 0:04:19
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_SpreadingNavarretia_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_SpreadingNavarretia to Database Connections\[email protected]\SDW.CITY.USFWS_SpreadingNavarretia_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_SpreadingNavarretia_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_SpreadingNavarretia
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_SpreadingNavarretia
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_SpreadingNavarretia_BAK
Unable to update date timestamp for USFWS_SpreadingNavarretia
Timestamp Update Error: error return without exception set
*----------Finished layer 26, total elapsed time = 0:04:28
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_ThreadLeavedBrodiaea_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_ThreadLeavedBrodiaea to Database Connections\[email protected]\SDW.CITY.USFWS_ThreadLeavedBrodiaea_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_ThreadLeavedBrodiaea_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_ThreadLeavedBrodiaea
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_ThreadLeavedBrodiaea
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_ThreadLeavedBrodiaea_BAK
Unable to update date timestamp for USFWS_ThreadLeavedBrodiaea
Timestamp Update Error: error return without exception set
*----------Finished layer 27, total elapsed time = 0:04:37
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_WillowyMonardella_06_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_06 to Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_06_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_06_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_06
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_06
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_06_BAK
Unable to update date timestamp for USFWS_WillowyMonardella_06
Timestamp Update Error: error return without exception set
*----------Finished layer 28, total elapsed time = 0:04:46
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.USFWS_WillowyMonardella_11_NEW
Renaming to backup for Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_11 to Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_11_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_11_NEW to Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_11
Unable to GRANT to for Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_11
Unable to REVOKE to for Database Connections\[email protected]\SDW.CITY.USFWS_WillowyMonardella_11_BAK
Unable to update date timestamp for USFWS_WillowyMonardella_11
Timestamp Update Error: error return without exception set
*----------Finished layer 29, total elapsed time = 0:04:55
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.drain_bmp_NEW
DRAIN_BMP has the alias name drain_bmp
drain_bmp resides in the dataset SDW.CITY.STORM_WATER
Renaming new Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.drain_bmp_NEW to Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.DRAIN_BMP
DRAIN_BMP has the role AD\SYNERGY\SYNERGYVIEWER
Unable to GRANT to AD\SYNERGY\SYNERGYVIEWER for Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.DRAIN_BMP
Unable to update date timestamp for DRAIN_BMP
Timestamp Update Error: error return without exception set
*----------Finished layer 30, total elapsed time = 0:05:01
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.drain_conveyance_NEW
TSW_DRAIN_CONVEYANCE has the alias name drain_conveyance
DRAIN_CONVEYANCE has the alias name drain_conveyance
drain_conveyance resides in the dataset SDW.CITY.STORM_WATER
drain_conveyance resides in the dataset SDW.CITY.STORM_WATER
Renaming to backup for Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.DRAIN_CONVEYANCE to Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.drain_conveyance_BAK
Renaming new Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.drain_conveyance_NEW to Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.DRAIN_CONVEYANCE
DRAIN_CONVEYANCE has the role AD\SYNERGY\SYNERGYVIEWER
DRAIN_CONVEYANCE has the role AD\SDEVIEWER
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.DRAIN_CONVEYANCE' AD\SDEVIEWER GRANT #
Start Time: Wed Aug 07 15:57:10 2013
Succeeded at Wed Aug 07 15:57:11 2013 (Elapsed Time: 1.00 seconds)
Executing: ChangePrivileges 'Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.drain_conveyance_BAK' AD\SDEVIEWER REVOKE REVOKE
Start Time: Wed Aug 07 15:57:12 2013
Succeeded at Wed Aug 07 15:57:13 2013 (Elapsed Time: 1.00 seconds)
Unable to update date timestamp for DRAIN_CONVEYANCE
Timestamp Update Error: error return without exception set
*----------Finished layer 31, total elapsed time = 0:05:13
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.drain_pump_station_NEW
DRAIN_PUMP_STATION has the alias name drain_pump_station
drain_pump_station resides in the dataset SDW.CITY.STORM_WATER
Renaming new Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.drain_pump_station_NEW to Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.DRAIN_PUMP_STATION
DRAIN_PUMP_STATION has the role AD\SYNERGY\SYNERGYVIEWER
Unable to GRANT to AD\SYNERGY\SYNERGYVIEWER for Database Connections\[email protected]\SDW.CITY.STORM_WATER\SDW.CITY.DRAIN_PUMP_STATION
Unable to update date timestamp for DRAIN_PUMP_STATION
Timestamp Update Error: error return without exception set
*----------Finished layer 32, total elapsed time = 0:05:19
*----------*
*----------*
*----------*
*----------Processing layer SDW.CITY.drain_structure_NEW
TSW_DRAIN_STRUCTURE has the alias name drain_structure
DRAIN_STRUCTURE has the alias name drain_structure
drain_structure resides in the dataset SDW.CITY.STORM_WATER