-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotSoLatestStories.XML
986 lines (939 loc) · 84.9 KB
/
NotSoLatestStories.XML
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
<?xml version="1.0"?>
<Objects>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Free Ebooks! Free Ebooks!</Property>
<Property Name="Description" Type="System.String">There&#8217;s a lot to smile on a cool Monday like this. One, it&#8217;s 27C outside here in Singapore, a lot less humid than most days. Two, a smiling barista in Starbucks served my coffee this morning, she must&#8217;ve a great morning start too and three, free ebooks from the Red-Gate community, http://www.red-gate.com/community/books/index! I started to [&#8230;]</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">29/07/2013 13:27:45</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">Today</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/coffee-and-sql/2013/07/29/free-ebooks-free-ebooks/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Encourage Someone You Respect To Run For The PASS Board of Directors</Property>
<Property Name="Description" Type="System.String">PASS is accepting candidate applications for the 2013 election through August 7th, 2013.&nbsp; Later this year we – the PASS membership – will be voting to fill three seats on the Board. To have a good election we need a great selection of candidates. I hope for a slate of candidates so good that we want them all to be elected. I hope we don’t have an election where three people run for three seats, making it a non-election election.
I believe it’s our job to do more than just vote. If w</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">29/07/2013 08:07:14</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">Today</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/andy_warren/2013/07/29/encourage-someone-you-respect-to-run-for-the-pass-board-of-directors/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">VMware High Availability in SQL Server</Property>
<Property Name="Description" Type="System.String">With the massive number of servers running SQL Server within virtual machines (VMs), it's critically important for DBAs to understand the high availability options available when SQL Server is running within a VM. </Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">29/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">Today</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100382/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Using Lookup Function to Bridge Datasets in Report Builder</Property>
<Property Name="Description" Type="System.String">The report function, lookup, can be used to link two independent datesets.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">29/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">Today</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Lookup/100391/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">How to understand NoSQL Databases</Property>
<Property Name="Description" Type="System.String">Today we have a guest editorial from Phil Factor that looks at NoSQL databases.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">29/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">Today</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100746/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">SQL Saturday #252, Christchurch New Zealand</Property>
<Property Name="Description" Type="System.String">TweetSQL Saturday #252 Christchurch, New Zealand
G&#8217;day,
Well, these are exciting times for the Christchurch SQL SERVER User Group.
After a period of fragmentation where our meetings seemed to be at random intervals &#8211; mainly due to certain major events outside our control &#8211; such as earthquakes, the city being rebuilt and accomodation challenges, we regrouped and relauched with a new leadership team. We had a local company &#8211; SQL Services - step up and offer us regular accom</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">29/07/2013 04:29:50</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">Today</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/martin_catherall/2013/07/28/sql-saturday-252-christchurch-new-zealand/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">SQL Saturday Sacramento was terrific</Property>
<Property Name="Description" Type="System.String">This year&#8217;s SQL Saturday #222 in Sacramento was a blast. This event was certainly the high point of my summer, and am very thankful to have been selected to speak here.
Yesterday I&nbsp;presented two sessions&nbsp;at the SQL Saturday event in Sacramento, CA. First up was the session called &#8220;It&#8217;s All About the Performance, Right?&#8220;. The slides for this presentation are available here. My second session was entitled &#8220;Squeezing the Most Performance from your&nbsp;VMware</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">29/07/2013 00:57:15</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">Today</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/technobabble-by-klee-from-kleegeek/2013/07/28/sql-saturday-sacramento-was-terrific/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Security Questions: Recommended Security Book</Property>
<Property Name="Description" Type="System.String">As I mentioned in the introductory post, during the Introduction to SQL Server Security session for Pragmatic Work&#8217;s Training on the T&#8217;s, I received a large number of questions that there wasn&#8217;t time to answer. Instead of just a re-cap of all of the questions, instead I&#8217;ve opted to put together a post per topic. Hopefully, this will help, not just those that attended the session, but also anyone searching for the same questions later on.
Security question
The next quest</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">27/07/2013 22:00:21</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">Yesterday</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/stratesql/2013/07/27/security-questions-recommended-security-book/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Go ahead. Laugh.</Property>
<Property Name="Description" Type="System.String">I came across one of my twitter friends @DBAReactions tumblr site and gosh! I cannot stop laughing! Here is one link that is so true, http://dbareactions.tumblr.com/post/47021713946/after-the-san-admin-says-wow-you-were-right. Tell me you haven&#8217;t had any issues with the SAN team in your organization. I had. When they gave me a disk on RAID 5 when in my specs docs [&#8230;]</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">27/07/2013 08:09:23</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">2 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/coffee-and-sql/2013/07/27/go-ahead-laugh/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Hardware 201: Selecting and Sizing Database Hardware</Property>
<Property Name="Description" Type="System.String">On July 25, I had the opportunity to present Hardware 201 for the PASS Performance Virtual Chapter. You can download my deck here.
Hardware 201: Selecting and Sizing Database Hardware for OLTP Performance
The foundation of database performance is the underlying server hardware and storage subsystem. Even the best designed and optimized database application can be crippled by an inadequate hardware and storage infrastructure. Recent advances in new processors and chipsets, along with improvements</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">27/07/2013 03:43:29</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">2 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/glennberry/2013/07/26/hardware-201-selecting-and-sizing-database-hardware/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">SQL Server Login Errors</Property>
<Property Name="Description" Type="System.String">Hello Dear Reader.&nbsp; Quick blog today.&nbsp; If you are working in the SQL Server world eventually you will try to connect to a SQL Server and get an error.&nbsp; A beautiful wonderful descriptive error that reads, pauses… looks around… stands straight…. In my best impersonation of a classic English poet proceeds to read, “Error: 18456, Severity:&nbsp; 14, State: Xâ€. Ahhh sweet music.&nbsp; Okay Dear Reader I confess, it’s definitely not Lord Tennyson.&nbsp; But the important par</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">27/07/2013 00:43:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">2 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/sqlballs/2013/07/26/sql-server-login-errors/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Webcast Presentation Materials: 5 Amazing Reasons DBAs Need to Love Extended Events</Property>
<Property Name="Description" Type="System.String">If you are looking for a presentation that brings together bacon, unicorns, and lightsabers, then you should have seen my presentation this past Thursday for Pragmatic Works Training on the T&#8217;s. The session was 5 Amazing Reasons DBAs Need to Love Extended Events. In it, I ran through a list of reasons on why extended events gets me pumped up for performance tuning.
The abstract for the sessions is:
Extended events provide DBAs with a powerful tool that can be used to troubleshoot and inve</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">27/07/2013 00:20:55</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">2 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/stratesql/2013/07/26/webcast-presentation-materials-5-amazing-reasons-dbas-need-to-love-extended-events/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Disaster Recovery - Part 1 - Possibly Almost Everything But the Kit</Property>
<Property Name="Description" Type="System.String">Over the years I have been fortunate or unfortunate enough, depending on who you are to have experienced several disasters along with a couple of very near misses. &nbsp;In this post I am going to explore some of the areas of DR that are not related to the physical kit. &nbsp;Let me just start by defining what I mean by a disaster, a disaster is not a cluster fail-over, it is not a drive failure in a RAID array and it is not a UPS failure. &nbsp;Disasters can be classified in two categories. &nb</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">26/07/2013 22:24:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">2 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/sqlserver365/2013/07/26/disaster-recovery-part-1-possibly-almost-everything-but-the-kit/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Reblog: July 19 to July 25</Property>
<Property Name="Description" Type="System.String">I&#8217;ve always been a fan of the feeling when I find an old blog post that&#8217;s got just the information that I need to solve a problem or answer a question. It&#8217;s that whole &#8220;cha-ching&#8221; &#8211; buried treasure! feeling. That&#8217;s kind of the aim of this blog post. To provide a list of some posts that still have value that came out in previous years.
The posts for this past week in previous years are:
Analyzing Your Indexes with a Custom Report (20 Jul, 2009)
Moving</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">26/07/2013 22:00:30</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">2 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/stratesql/2013/07/26/reblog-july-19-to-july-25/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Headed to Cocoa for SQLSaturday #231</Property>
<Property Name="Description" Type="System.String">I’m leaving mid-morning today to drive to Cocoa with my family for a beach weekend and SQLSaturday #231. I’ll be presenting PCI for the SQL DBA and I’m really looking forward to it. I did a virtual presentation of it earlier this month and it ran long, so I’ve made some adjustments and can’t wait to get the immediate feedback from interacting with the attendees.
It’s also the un-official end of summer for me. Kids go back to school in mid August so there are things to do to get ready</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">26/07/2013 21:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">2 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/andy_warren/2013/07/26/headed-to-cocoa-for-sqlsaturday-231/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">The SQLAndy Rules for Storing Credit Card Numbers</Property>
<Property Name="Description" Type="System.String">I’ll try to write more about these over the next couple months, but I wanted to write down a quick reference for those that have to deal with storing credit card numbers. These rules cover the basics – the full topic of protecting card data is easily a book or two. These are my rules, when in doubt consult with your compliance team for final guidance.
Don’t Store Them! PCI compliance is complex and expensive. Getting hacked and dealing with the consequences is more complex and more expens</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">26/07/2013 20:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">2 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/andy_warren/2013/07/26/the-sqlandy-rules-for-storing-credit-card-numbers/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Page Split Mini-Series - Part II - Page Latch Contention</Property>
<Property Name="Description" Type="System.String">
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
Normal
0
false
false
false
false
EN-US
X-NONE
X-NONE
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
DefSemiHidden="true" DefQFormat="false" DefPriority="99"
LatentStyleCount="267">
<w:LsdExcepti</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">26/07/2013 19:33:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">2 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/pearlknows/2013/07/26/page-split-mini-series-part-ii-page-latch-contention/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Configuring Database Mirroring</Property>
<Property Name="Description" Type="System.String">This article contains a set of instructions for configuring SQL Server mirroring, including pre-requisites. It also includes notes on how to resolve a few issues that I have encountered.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">26/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">3 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Database+Mirroring/72009/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">PowerShell the SQL Server Way</Property>
<Property Name="Description" Type="System.String">Although Windows PowerShell has been available to IT professionals going on seven years, there are still many IT pros who are just now deciding to see what the fuss is all about. Depending on your job, you might find PowerShell an invaluable tool. Microsoft's plan is that PowerShell will be the management tool for all of its servers and platforms. For most IT pros, it's not a matter of if you'll be using PowerShell, only a matter of when.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">26/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">3 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100381/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">Could You Live Like a DBA?</Property>
<Property Name="Description" Type="System.String">A light-hearted take on the life of a DBA.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">26/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">3 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/humor/99113/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">SQL – Query to find data,log,Total Size and other Useful information of all databases – SQL 2000/2005/2008/R2</Property>
<Property Name="Description" Type="System.String">I&#8217;ve encountered a situation where I need to find out the database file,log file, total size and other useful information about a database on SQL Server 2000/2005/2008/R2 versions. The requirement is to use same query and it has to be executed across all version of SQL SERVER. We can also do this using dynamic SQL&#8217;s.
Here is the T-SQL which you can use to run on any version of SQL Server to fetch the result.
USE MASTER
Go
SELECT @@SERVERNAME Servername,
CONVERT(VARCHAR(25), DB.name</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 23:21:22</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">3 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/powersql-by-prashanth-jayaram/2013/07/25/sql-query-to-find-datalogtotal-size-and-other-useful-information-of-all-databases-sql-200020052008r2/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">TechEd Europe 2013 videos online</Property>
<Property Name="Description" Type="System.String">Microsoft has posted ALL the session videos for TechEd Europe 2013 and they are available for free! Some great videos on the latest products and versions. Check them out here. There are four videos on SQL Server 2014:
Microsoft SQL Server 2014 In-Memory OLTP: Overview
Microsoft SQL Server 2014: Future and Features
Microsoft SQL Server 2014 In-Memory OLTP: DB Developer Deep Dive
Microsoft SQL Server 2014 In-Memory OLTP: Management Deep Dive
</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 22:00:21</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">3 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/jamesserra/2013/07/25/teched-europe-2013-videos-online/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">First Time Speaker</Property>
<Property Name="Description" Type="System.String">So this week was another first for me, I finally bit the bullet and gave a talk at the Leeds SQL Server User Group and it was great, I thoroughly enjoyed it!Public speaking is something that I have wanted to do for a while now but have put off because of nerves to be honest. &nbsp;I have given plenty talks to colleagues at a number of previous employers but never publicly, I had the mindset that I would be more comfortable speaking to my peers, rather than as I had previously envisaged a "rowdy </Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 20:58:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">3 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/sqlserver365/2013/07/25/first-time-speaker/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Blog Images and PNG Compression</Property>
<Property Name="Description" Type="System.String">I’m not terribly good at putting at least one image in every post. The images I do use are either screen captures from Snagit or photos from my phone. I rarely do much in the way of editing them, a luxury of running a low key blog. As far as process, I typically just insert the image into Livewriter and let it do its magic. That works pretty well for me.
Below is a capture of some of the filenames of images on my blog. The filenames are blah. Does it matter? I hardly ever re-use an image and </Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 20:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">3 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/andy_warren/2013/07/25/blog-images-and-png-compression/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">Crash when inserting to a FileTable with a parallel plan</Property>
<Property Name="Description" Type="System.String">Whilst doing some ad-hoc work on some data on a 2012 SP1 instance I came across an issue with the SQL server raising a sev 20 error with a script that I was attempting to run. The work that I was doing was that I was exporting some binary data (basic text files) that is stored in one table to the file system via a filetable within the same database. It came as bit of a surprise when I saw this error message:
Location:&nbsp;&nbsp;&nbsp;&nbsp; "xact.cpp":4175Expression:&nbsp;&nbsp;&nbsp;&nbsp; !m_</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 19:43:23</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">3 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/rocks/2013/07/25/crash-when-inserting-to-a-filetable-with-a-parallel-plan/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Latest Blog Posts - SQLServerCentral</Property>
<Property Name="Title" Type="System.String">70-457 Reviewer #07, Resolving Concurrency Problems in SQL Server 2012</Property>
<Property Name="Description" Type="System.String">This topic is part of the lessons covered in Optimization and Troubleshooting SQL Server 2012 which is 14% of overall scoring in the exam. For this article, I will cover the following subtopics; Resolving Concurrency Problems Blocks and Deadlocks Identifying Issues Resolving Issues Resolving Concurrency Problems Many factors can affect the concurrency of a database [&#8230;]</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 17:23:10</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">3 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/blogs/coffee-and-sql/2013/07/25/70-457-reviewer-07-resolving-concurrency-problems-in-sql-server-2012/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Disaster Recovery Tip #6 - Monitor Your Systems</Property>
<Property Name="Description" Type="System.String">Today's complex systems are too large to be able to rely on any DBA's memory for knowledge of each component, and its configuration options and settings. </Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">4 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100752/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">Data Farming</Property>
<Property Name="Description" Type="System.String">Another spy story involving data that's not true, and perhaps not plausible, but it makes Steve Jones think about data shadows.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">4 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/64575/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Finding lost or forgotten SQL Servers</Property>
<Property Name="Description" Type="System.String">This article will show a way to find all SQL Servers, particularly those that have been forgotten about or lost.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">4 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/powershell/72809/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">SQLServerCentral.com Users Survey 2013</Property>
<Property Name="Description" Type="System.String">We want to make sure we're covering the things that are relevant to you, so we're asking for some feedback on what you use on SSC, where we need to improve, and what you'd like to see.
It should only take a few minutes, and three randomly-selected people will win a $100 Amazon gift card for their efforts.
</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">4 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100841/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">AlwaysOn in SQL Server 2014 CTP1</Property>
<Property Name="Description" Type="System.String">AlwaysOn encompasses the SQL Server solutions for mission-critical high availability and disaster recovery. Two solutions were included under the AlwaysOn umbrella in SQL Server 2012: Availability Groups and Failover Cluster Instances. Each solution has different characteristics, making them appropriate for different scenarios, and both can be combined in the same deployment.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">25/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">4 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100380/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">Moving to the Heartland</Property>
<Property Name="Description" Type="System.String">With companies like Microsoft and Google building data centers in small towns, Steve Jones has some comments about how this might affect IT jobs.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">24/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">5 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/64681/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Rendering images from a database on SSRS reports</Property>
<Property Name="Description" Type="System.String">Looking for a way to put images on SSRS reports and allow the business users to change the images every so often? This article explains how to implement this in such a way that you don't have to modify a report when the image is changed. </Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">24/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">5 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100379/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Stairway to Server-side Tracing - Level 3: Creating a SQL Trace Using SQL Server Profiler</Property>
<Property Name="Description" Type="System.String">In this third article of our Stairway Series on tracing, Dan Guzman goes into the method of using Profiler to help you create a custom trace of the events that you need to monitor.
Check SQL Server performance at a glanceWe consulted 1000 SQL Server professionals to make SQL Monitor’s UI as clear as possible. Start monitoring with a free trial.
</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">24/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">5 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/SQL+Trace/71839/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Free eBook: SQL Server Hardware</Property>
<Property Name="Description" Type="System.String">SQL Server Hardware will provide the fundamental knowledge and resources you need to make intelligent decisions about choice, and optimal installation and configuration, of SQL Server hardware, operating system and the SQL Server RDBMS.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">24/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">5 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100634/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">SQL Saturday #236 St Louis, MO</Property>
<Property Name="Description" Type="System.String">SQL Saturday is returning to St Louis for a full day of free SQL Server training and networking. This year's event will be on August 3, 2013 at the Saint Louis University's Center for Workforce &amp; Organizational Development. We hope to see you there. </Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">24/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">5 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/99776/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Simple-Talk blogs</Property>
<Property Name="Title" Type="System.String">SQL Query for Determining SharePoint ACL Sizes</Property>
<Property Name="Description" Type="System.String">When a SharePoint Access Control List (ACL) size exceeds more than 64kb for a particular URL, the contents under that URL become unsearchable due to limitations in the SharePoint search engine.&#160; The error most often seen is The Parameter is Incorrect which really helps to pinpoint the problem (its difficult to convey extreme sarcasm here, [...]</Property>
<Property Name="Publication" Type="System.String">Simple-Talk</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">https://www.simple-talk.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">23/07/2013 13:15:39</Property>
<Property Name="Color" Type="System.String">92171a</Property>
<Property Name="author" Type="System.String">Damon Armstrong</Property>
<Property Name="Ago" Type="System.String">5 days ago</Property>
<Property Name="link" Type="System.String">https://www.simple-talk.com/blogs/2013/07/23/sql-query-for-determining-sharepoint-acl-sizes/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Are my actual worker threads exceeding the sp_configure 'max worker threads' value?</Property>
<Property Name="Description" Type="System.String">Tom Stringer (@SQLife) was working on some HADR testing for a customer to simulate many availability groups and introduce significant load into the system to measure overhead and such. In his quest to do that he was seeing behavior that he couldn’t really explain and so worked with him to uncover what was happening under the covers. </Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">23/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">6 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100378/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">The Agile Cult</Property>
<Property Name="Description" Type="System.String">Lots of developers have embraced Agile development, and Steve Jones thinks it's a good way to build software. However, it's not necessarily as easy as you might think.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">23/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">6 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/64356/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">What’s going on, on my server, right now?</Property>
<Property Name="Description" Type="System.String">Quick and easy way to monitor server activity and be notified from alerts.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">23/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">6 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/SQL+Monitoring/100615/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">SQL Server Central Webinar Series #24: Prepare for When Disaster Strikes</Property>
<Property Name="Description" Type="System.String">Our next webinar on July 23rd has Steve Jones presenting on some disaster stories with ideas on how you might prevent, or mitigate the effects, of those problem situations.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">23/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">6 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100422/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Survey: Understanding SQL Code</Property>
<Property Name="Description" Type="System.String">Understanding thousands of lines of code of an existing database is very time-consuming and tedious, prone to inadvertent oversight of key logic points. We are looking at advanced ways to provide greater insight into your code base while reducing the numerous demands placed on the developer. Please help us by completing this short survey to help us define the requirements.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">23/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">6 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100783/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Tables and Clustered Indexes Part 2</Property>
<Property Name="Description" Type="System.String">A table does not so much 'have' a clustered index as a table 'is' a clustered index.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">22/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">7 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/clustered+index/100477/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">SQL Monitor Custom Metric: Top Buffer Cache Object</Property>
<Property Name="Description" Type="System.String">This metric measures the amount of memory used in the buffer cache by the largest object (based on the number of pages). It checks the sys.dm_os_buffer_descriptors to identify the object, and returns the relative percentage used. You should use this metric if you want to monitor what is in the buffer area, or if you are having performance-related disk read problems.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">22/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">7 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100742/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">SQL Server 2012 Analysis Services XMLA</Property>
<Property Name="Description" Type="System.String">Cube developers often flippantly use the term XMLA in their discussion of maintaining, scripting, backing up, and restoring cubes and other SSAS objects; what exactly is XMLA and how can it be used? Check out this tip to learn more.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">22/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">7 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100374/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">Hiring Heterogeneously</Property>
<Property Name="Description" Type="System.String">Hiring a diverse group of people can make your team work better. Steve Jones has a few thoughts today.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">22/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">7 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100713/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">New Resource: LearnSomeSQL.com</Property>
<Property Name="Description" Type="System.String">We're trialling a new resource for SQL beginners and we'd like to know what you think.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">19/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">10 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Beginner/100729/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Disaster Recovery Tip #4 - Learn about partial restores! </Property>
<Property Name="Description" Type="System.String">Sometimes recovery simply entails rerunning a failed process.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">19/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">10 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100750/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">DR Failovers</Property>
<Property Name="Description" Type="System.String">We don't often predict for disasters, which is good since we rarely have extensive plans for dealing with them. If we do, do we actually test our plans, or test the systems under full load?</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">19/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">10 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100661/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Telemetry basics and troubleshooting</Property>
<Property Name="Description" Type="System.String">From the MSDN Windows Azure blog - We recently introduced Azure CAT team series of blog posts and tech articles describing the Cloud Service Fundamentals in Windows Azure code project posted on MSDN Code Gallery. The first component we are addressing in this series is Telemetry. This has been one of the first reusable components we have built working on Windows Azure customer projects of all sizes.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">19/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">10 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100373/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Formatting Dates with 3 Character Months (SQL Spackle)</Property>
<Property Name="Description" Type="System.String">Another in the series of articles to help you &quot;fill in the cracks&quot; in your T-SQL knowledge. MVP Jeff Moden shows us a super simple, high performance method to solve this timeless problem.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">19/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">10 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/formatting/72066/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">SQL Saturday #234 Baton Rouge, LA</Property>
<Property Name="Description" Type="System.String">SQL Saturday is coming to Baton Rouge for a free day of SQL Server training and Networking on August 3.
There is also a pre-conference session presented by Bill Pearson on Practical Self-Service BI with PowerPivot for Excel on August 2nd.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">19/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">10 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100175/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Simple-Talk blogs</Property>
<Property Name="Title" Type="System.String">Software Tuned to Humanity</Property>
<Property Name="Description" Type="System.String">I learned a great deal from a cynical old programmer who once told me that the ideal length of time for a compiler to do its work was the same time it took to roll a cigarette. For development work, this is oh so true. After intently looking at the editing window for an hour [...]</Property>
<Property Name="Publication" Type="System.String">Simple-Talk</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">https://www.simple-talk.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">18/07/2013 17:26:47</Property>
<Property Name="Color" Type="System.String">92171a</Property>
<Property Name="author" Type="System.String">Phil Factor</Property>
<Property Name="Ago" Type="System.String">10 days ago</Property>
<Property Name="link" Type="System.String">https://www.simple-talk.com/blogs/2013/07/18/software-tuned-to-humanity/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">SQL Saturday #239 East Iowa</Property>
<Property Name="Description" Type="System.String">SQL Saturday will be in Iowa City on July 27, 2013. This free day of SQL Server Training and Networking will also have pay-for pre-conference sessions presented by Bill Pearson, Louis Davidson and Tim Mitchell.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">18/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">11 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100377/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">Password Ninjas</Property>
<Property Name="Description" Type="System.String">How do you keep track of passwords? A few experts out there share some of their techniques and Steve Jones adds his thoughts.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">18/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">11 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100709/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">SQL in the City Seminar Sacramento 2013 </Property>
<Property Name="Description" Type="System.String">Join Red Gate for a free a seminar on July 26 (the day before SQL Saturday Sacramento). SQL Server MVP experts, Steve Jones and Grant Fritchey will present sessions featuring best practices for SQL Server database development and deployment, in addition to showing Red Gate tools in action.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">18/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">11 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100701/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Resolving Errors While Connecting to SSIS</Property>
<Property Name="Description" Type="System.String">This article will help you solve connection errors with SSIS due to permission issues.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">18/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">11 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/98113/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String"> How To Document Your PowerShell Library</Property>
<Property Name="Description" Type="System.String">PowerShell provides comment-based help for functions and scripts with Get-Help, but when you want to document modues or generate a complete indexed API in HTML format, just as you can with Sandcastle for .NET or javadoc for Java, then stronger magic is required. Michael Sorens shows you how it is done, with source code.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">18/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">11 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100368/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">Data Philanthropy</Property>
<Property Name="Description" Type="System.String">The idea of giving back to the world some of your success has been something many successful businesses have done forever. Steve Jones thinks they should consider giving more than physical resources, but also give data.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">17/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">12 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100663/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">Biml Workshop presented by Varigence and Linchpin People</Property>
<Property Name="Description" Type="System.String">Business Intelligence Markup Language (Biml) automates your BI patterns and eliminates the manual repetition that consumes most of your time. On October 15th come see why BI professionals around the world think Biml is the future of data integration and BI. </Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">17/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">12 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/redirect/articles/100571/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles</Property>
<Property Name="Title" Type="System.String">What is Biml? - Level 1</Property>
<Property Name="Description" Type="System.String">An introduction to the Biml language from Andy Leonard that helps</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Main Articles</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/</Property>
<Property Name="PubDate" Type="System.DateTime">17/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">12 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/BIML/100552/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">Hack Resistant?</Property>
<Property Name="Description" Type="System.String">Can we make a hack resistant database? A vendor claims this, but Steve Jones thinks it's not really a good claim to make and that we ought to make it our job to secure databases.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">16/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">13 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100579/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">The Desktop</Property>
<Property Name="Description" Type="System.String">Steve Jones talks about laptops and desktop machines, and the potential issues that IT professionals have with one or the other.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">15/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">14 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100578/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">The Vacation Struggle</Property>
<Property Name="Description" Type="System.String">It can be hard to take all your time off each year and Steve Jones is in that situation right now. However he reminds us that life is more important than work.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">12/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">17 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100601/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Simple-Talk blogs</Property>
<Property Name="Title" Type="System.String">Good DBAs Do Baselines</Property>
<Property Name="Description" Type="System.String">One morning, you wake up and feel funny. You can&#8217;t quite put your finger on it, but something isn&#8217;t quite right. What now? Unless you happen to be a hypochondriac, you likely drag yourself out of bed, get on with the day and gather more &#8220;evidence&#8221;. You check your symptoms over the next few days; [...]</Property>
<Property Name="Publication" Type="System.String">Simple-Talk</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">https://www.simple-talk.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">12/07/2013 05:20:10</Property>
<Property Name="Color" Type="System.String">92171a</Property>
<Property Name="author" Type="System.String">Louis Davidson</Property>
<Property Name="Ago" Type="System.String">17 days ago</Property>
<Property Name="link" Type="System.String">https://www.simple-talk.com/blogs/2013/07/12/good-dbas-do-baselines/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">Hiring Guitarists</Property>
<Property Name="Description" Type="System.String">Hiring senior people is hard, but Steve Jones stumbled upon an idea that compares hiring technology people to hiring a senior level technology expert.</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">11/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">18 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100580/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">Simple-Talk blogs</Property>
<Property Name="Title" Type="System.String">Continuous Integration for SQL Server Part III – Deployment</Property>
<Property Name="Description" Type="System.String">In this article, I&#8217;ll describe the next stage in implementing a full Continuous Integration and Deployment process for SQL Server databases: Deployment. This post follows on directly from my previous post on Continuous Integration and testing for SQL Server. Following the steps in this previous post is a pre-requisite to following the steps below, though [...]</Property>
<Property Name="Publication" Type="System.String">Simple-Talk</Property>
<Property Name="Stream" Type="System.String">Blogs</Property>
<Property Name="PageURL" Type="System.String">https://www.simple-talk.com/blogs/</Property>
<Property Name="PubDate" Type="System.DateTime">10/07/2013 10:51:44</Property>
<Property Name="Color" Type="System.String">92171a</Property>
<Property Name="author" Type="System.String">Ben Rees</Property>
<Property Name="Ago" Type="System.String">18 days ago</Property>
<Property Name="link" Type="System.String">https://www.simple-talk.com/blogs/2013/07/10/continuous-integration-for-sql-server-part-iii-deployment/</Property>
</Object>
<Object Type="System.Management.Automation.PSCustomObject">
<Property Name="Feed" Type="System.String">SQLServerCentral.com Articles tagged Editorial</Property>
<Property Name="Title" Type="System.String">Programming</Property>
<Property Name="Description" Type="System.String">Programming is an important skill, perhaps extremely important for the future. Steve Jones thinks that's true.
Total DeploymentEnjoy easy release management for your .NET apps, services, and databases with Deployment Manager. Get your free Starter edition now
</Property>
<Property Name="Publication" Type="System.String">SQL Server Central</Property>
<Property Name="Stream" Type="System.String">Editorials</Property>
<Property Name="PageURL" Type="System.String">http://www.sqlservercentral.com/Articles/Editorial</Property>
<Property Name="PubDate" Type="System.DateTime">10/07/2013 07:00:00</Property>
<Property Name="Color" Type="System.String">325181</Property>
<Property Name="author" Type="" />
<Property Name="Ago" Type="System.String">19 days ago</Property>
<Property Name="link" Type="System.String">http://www.sqlservercentral.com/articles/Editorial/100553/</Property>
</Object>
</Objects>