en/Microsoft.SqlServer.Assessment.Cmdlets.dll-Help.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
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
<?xml version="1.0" encoding="utf-8"?>
<helpItems schema="maml" xmlns="http://msh">
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Get-SqlAssessmentItem</command:name>
      <command:verb>Get</command:verb>
      <command:noun>SqlAssessmentItem</command:noun>
      <maml:description>
        <maml:para>Gets SQL Assessment best practice checks available for a chosen SQL Server object.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Get-SqlAssessmentItem cmdlet finds all available best practice checks for each input object. Learn more about the SQL Assessment API on the Microsoft Docs page (https://aka.ms/sql-assessment-api-docs).</maml:para>
      <maml:para>This cmdlet accepts the following input types:</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.Server</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.Database</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.AvailabilityGroup</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.FileGroup</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.RegisteredServers.RegisteredServer</maml:para>
      <maml:para>- String containing path to any object of the above types</maml:para>
      <maml:para>- Collection of objects</maml:para>
      <maml:para></maml:para>
      <maml:para>You can get input objects with SqlServer cmdlets like Get-SqlInstance and Get-SqlDatabase or basic PowerShell
cmdlets like Get-Item and Get-ChildItem. Also, the cmdlet supports the SQL Server PowerShell provider, so it can obtain an object from its path. The path can be passed explicitly, otherwise the current path will be used.</maml:para>
      <maml:para>Availability of a check for a chosen object varies on the SQL Server version, platform, and object type. Also, there are checks that target specific databases like `tempdb` or `master`. You can additionally filter checks by tags, names, and severity with the parameters -MinSeverity and -Check.</maml:para>
      <maml:para>With Get-SqlAssessmentItem cmdlet, you can get a list of checks applicable to the given SQL Server object. Also, you can use this cmdlet's output as -Check argument for Invoke-SqlAssessment cmdlet.</maml:para>
      <maml:para>Custom configurations can be applied with the -Configuration parameter. Customization examples are available on Github (https://go.microsoft.com/fwlink/?linkid=2099023).</maml:para>
      <maml:para>SQL Server on Azure VM support</maml:para>
      <maml:para>With SQL Assessment cmdlets, you can assess an instance of SQL Server on Azure VM not only as on-prem SQL Server, but also with rules that are specific to SQL Server on Azure VM (ones that use information about the virtual machine configuration). For example, the AzSqlVmSize rule checks that the VM that hosts an instance of SQL Server on Azure VM is of recommended size.</maml:para>
      <maml:para>To use such rules, connect to Azure with Azure PowerShell Module (https://aka.ms/AAbdhwk) and make sure that the [Az.ResourceGraph](https://www.powershellgallery.com/packages/Az.ResourceGraph)module is installed. Sign in with Azure PowerShell (https://aka.ms/AAbdogm)before invoking SQL Assessment against a SQL Server on Azure VM instance. Example 13 shows the interactive sign in process and subscription selection.</maml:para>
      <maml:para>NOTE. It is possible to use Azure account connection persisted between PowerShell sessions, i.e. invoke Connect-AzAccount in one session and omit this command later. However, the current version of SQL Assessment cmdlets needs the Az.ResourceGraph module to be imported explicitly in this case: Import-Module Az.ResourceGraph</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Get-SqlAssessmentItem</maml:name>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="10" aliases="Target">
          <maml:name>InputObject</maml:name>
          <maml:description>
            <maml:para>Specifies a SQL Server object or a path to such an object. The cmdlet returns appropriate checks for this object. When this parameter is omitted, current location is used as input object. If current location is not a supported SQL Server object, the cmdlet signals an error.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue>
          <dev:type>
            <maml:name>PSObject</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Check</maml:name>
          <maml:description>
            <maml:para>One or more checks, check IDs, or tags.</maml:para>
            <maml:para>For every check object, Get-SqlAssessmentItem returns that check if it supports the input object.</maml:para>
            <maml:para>For every check ID, Get-SqlAssessmentItem returns the corresponding check if it supports the input object.</maml:para>
            <maml:para>For tags, Get-SqlAssessmentItem returns checks with any of those tags.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
          <dev:type>
            <maml:name>String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Configuration</maml:name>
          <maml:description>
            <maml:para>Specifies paths to files containing custom configuration. Customization files will be applied to default configuration in specified order. The scope is limited to this cmdlet invocation only.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue>
          <dev:type>
            <maml:name>PSObject</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="Severity">
          <maml:name>MinSeverity</maml:name>
          <maml:description>
            <maml:para>Specifies minimum severity level for checks to be found. For example, checks of Warning or Information levels will not be returned when -MinSeverity Critical.</maml:para>
          </maml:description>
          <command:parameterValueGroup>
            <command:parameterValue required="false" command:variableLength="false">Information</command:parameterValue>
            <command:parameterValue required="false" command:variableLength="false">Warning</command:parameterValue>
            <command:parameterValue required="false" command:variableLength="false">Critical</command:parameterValue>
          </command:parameterValueGroup>
          <command:parameterValue required="true" variableLength="false">SeverityLevel</command:parameterValue>
          <dev:type>
            <maml:name>SeverityLevel</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Information</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Check</maml:name>
        <maml:description>
          <maml:para>One or more checks, check IDs, or tags.</maml:para>
          <maml:para>For every check object, Get-SqlAssessmentItem returns that check if it supports the input object.</maml:para>
          <maml:para>For every check ID, Get-SqlAssessmentItem returns the corresponding check if it supports the input object.</maml:para>
          <maml:para>For tags, Get-SqlAssessmentItem returns checks with any of those tags.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Configuration</maml:name>
        <maml:description>
          <maml:para>Specifies paths to files containing custom configuration. Customization files will be applied to default configuration in specified order. The scope is limited to this cmdlet invocation only.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue>
        <dev:type>
          <maml:name>PSObject</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="10" aliases="Target">
        <maml:name>InputObject</maml:name>
        <maml:description>
          <maml:para>Specifies a SQL Server object or a path to such an object. The cmdlet returns appropriate checks for this object. When this parameter is omitted, current location is used as input object. If current location is not a supported SQL Server object, the cmdlet signals an error.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue>
        <dev:type>
          <maml:name>PSObject</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="Severity">
        <maml:name>MinSeverity</maml:name>
        <maml:description>
          <maml:para>Specifies minimum severity level for checks to be found. For example, checks of Warning or Information levels will not be returned when -MinSeverity Critical.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">SeverityLevel</command:parameterValue>
        <dev:type>
          <maml:name>SeverityLevel</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Information</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String[]</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>Microsoft.SqlServer.Management.Smo.SqlSmoObject[]</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.SqlServer.Management.Assessment.ICheck</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>------- Example 1: Get checks for local default instance -------</maml:title>
        <dev:code>PS:&gt; Get-SqlInstance -ServerInstance 'localhost' | Get-SqlAssessmentItem
 
   Target: [LOCAL]
 
ID ON Name Origin
-- -- ---- ------
TF1204 True TF 1204 returns deadlock information Microsoft Ruleset 0.1.202
BlackboxTrace True Blackbox trace is configured and running Microsoft Ruleset 0.1.202
HintsStatistics True Hints are being used Microsoft Ruleset 0.1.202
PlansUseRatio True Amount of single use plans in cache i... Microsoft Ruleset 0.1.202
TempDBFilesAutoGrowth True Some TempDB data files have different... Microsoft Ruleset 0.1.202
CpuUtil90 True CPU usage over 90% Microsoft Ruleset 0.1.202
...</dev:code>
        <dev:remarks>
          <maml:para>This example gets all checks available for the default instance of SQL Server running on the current machine.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>---------- Example 2: Get checks with Get-Item cmdlet ----------</maml:title>
        <dev:code>PS:&gt; Get-Item SQLSERVER:\SQL\localhost\default | Get-SqlAssessmentItem
 
   Target: [LOCAL]
 
ID ON Name Origin
-- -- ---- ------
TF1204 True TF 1204 returns deadlock information Microsoft Ruleset 0.1.202
BlackboxTrace True Blackbox trace is configured and running Microsoft Ruleset 0.1.202
HintsStatistics True Hints are being used Microsoft Ruleset 0.1.202
PlansUseRatio True Amount of single use plans in cache i... Microsoft Ruleset 0.1.202
TempDBFilesAutoGrowth True Some TempDB data files have different... Microsoft Ruleset 0.1.202
CpuUtil90 True CPU usage over 90% Microsoft Ruleset 0.1.202
...</dev:code>
        <dev:remarks>
          <maml:para>This example gets all checks available for the default instance of SQL Server running on the current machine.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>------- Example 3: Get checks with path to target object -------</maml:title>
        <dev:code>PS:&gt; Get-SqlAssessmentItem SQLSERVER:\SQL\localhost\default
 
   Target: [LOCAL]
 
ID ON Name Origin
-- -- ---- ------
TF1204 True TF 1204 returns deadlock information Microsoft Ruleset 0.1.202
BlackboxTrace True Blackbox trace is configured and running Microsoft Ruleset 0.1.202
HintsStatistics True Hints are being used Microsoft Ruleset 0.1.202
PlansUseRatio True Amount of single use plans in cache i... Microsoft Ruleset 0.1.202
TempDBFilesAutoGrowth True Some TempDB data files have different... Microsoft Ruleset 0.1.202
CpuUtil90 True CPU usage over 90% Microsoft Ruleset 0.1.202
...</dev:code>
        <dev:remarks>
          <maml:para>This example gets all checks available for the default instance of SQL Server running on the current machine.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>--- Example 4: Get checks with applied custom configuration ---</maml:title>
        <dev:code>PS:&gt; Get-SqlDatabase master -ServerInstance . |
     Get-SqlAssessmentItem -Configuration C:\rulesetA.json, D:\rulesetB.json
 
   Target: [LOCAL]
 
ID ON Name Origin
-- -- ---- ------
TF1204 False TF 1204 returns deadlock information Microsoft Ruleset 0.1.202
BlackboxTrace True Blackbox trace is configured and running Microsoft Ruleset 0.1.202
HintsStatistics True Hints are being used Microsoft Ruleset 0.1.202
PlansUseRatio True Amount of single use plans in cache i... Microsoft Ruleset 0.1.202
TempDBFilesAutoGrowth False Some TempDB data files have different... Microsoft Ruleset 0.1.202
CpuUtil90 True CPU usage over 90% Microsoft Ruleset 0.1.202
SomeCustomCheck True Some custom check Ruleset A 1.0
AnotherCustomCheck True Another custom check Ruleset B 1.0
...</dev:code>
        <dev:remarks>
          <maml:para>This example gets all available checks with applied custom configuration obtained from specified JSON files. Visit SQL Assessment samples folder (https://go.microsoft.com/fwlink/?linkid=2099023)on Github to find out how to make customization.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----- Example 5: Get checks for all instances on localhost -----</maml:title>
        <dev:code>PS:&gt; Get-SqlInstance -ServerInstance localhost | Get-SqlAssessmentItem
 
   Target: [LOCAL]
 
ID ON Name Origin
-- -- ---- ------
TF1204 True TF 1204 returns deadlock information Microsoft Ruleset 0.1.202
BlackboxTrace True Blackbox trace is configured and running Microsoft Ruleset 0.1.202
CpuUtil90 True CPU usage over 90% Microsoft Ruleset 0.1.202
 
   Target: [LOCAL\INSTANCE1]
 
ID ON Name Origin
-- -- ---- ------
HintsStatistics True Hints are being used Microsoft Ruleset 0.1.202
PlansUseRatio True Amount of single use plans in cache i... Microsoft Ruleset 0.1.202
TempDBFilesAutoGrowth True Some TempDB data files have different... Microsoft Ruleset 0.1.202
CpuUtil90 True CPU usage over 90% Microsoft Ruleset 0.1.202
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows Get-SqlAssessmentItem cmdlet accepting a set of SQL Server instances via pipeline.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>Example 6: Get checks for all instances with names ending with numbers</maml:title>
        <dev:code>PS:&gt; Get-SqlInstance -ServerInstance localhost | Where { $_.Name -Match '.*\d+' } | Get-SqlAssessmentItem
 
   Target: [LOCAL\INSTANCE1]
 
ID ON Name Origin
-- -- ---- ------
HintsStatistics True Hints are being used Microsoft Ruleset 0.1.202
PlansUseRatio True Amount of single use plans in cache i... Microsoft Ruleset 0.1.202
TempDBFilesAutoGrowth True Some TempDB data files have different... Microsoft Ruleset 0.1.202
CpuUtil90 True CPU usage over 90% Microsoft Ruleset 0.1.202
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows Get-SqlAssessmentItem cmdlet accepting a set of SQL Server instances via pipeline. Only instances having the name ending with digits are processed.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>--------- Example 7: Get checks for a database by path ---------</maml:title>
        <dev:code>PS:&gt; Get-SqlAssessmentItem SQLSERVER:\SQL\localhost\default\Databases\master
 
 
   TargetObject: [master]
 
ID ON Name Origin
-- -- ---- ------
AutoCreateStats True Auto-Create Statistics should be on Microsoft Ruleset 0.1.202
HintsUsageInModules False Hints usage in modules Microsoft Ruleset 0.1.202
FullBackup True Full backup is missed or outdated Microsoft Ruleset 0.1.202
DuplicateIndexes True Duplicate Indexes Microsoft Ruleset 0.1.202
RedundantIndexes True Redundant Indexes Microsoft Ruleset 0.1.202
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows Get-SqlAssessmentItem cmdlet accepting a path to a SQL Server database.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------- Example 8: Get critical checks for a database --------</maml:title>
        <dev:code>PS:&gt; cd SQLSERVER:\SQL\localhost\default\Databases\master
PS:&gt; Get-SqlAssessmentItem -MinSeverity Critical</dev:code>
        <dev:remarks>
          <maml:para>This example shows Get-SqlAssessmentItem returning available checks with critical severity for the master database. It accepts the current PowerShell provider location as the target.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------- Example 9: Get critical checks for a database --------</maml:title>
        <dev:code>PS:&gt; $db = Get-SqlDatabase master -ServerInstance localhost
PS:&gt; Get-SqlAssessmentItem $db -MinSeverity Critical</dev:code>
        <dev:remarks>
          <maml:para>This example shows Get-SqlAssessmentItem returning available checks with critical severity for the master database.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>---------------- Example 10: Get checks by tag ----------------</maml:title>
        <dev:code>PS:&gt; Get-SqlDatabase -ServerInstance . | Get-SqlAssessmentItem -Check Backup
 
 
   TargetObject: [master]
 
ID ON Name Origin
-- -- ---- ------
FullBackup True Full backup is missed or outdated Microsoft Ruleset 0.1.202
 
 
   TargetObject: [msdb]
 
ID ON Name Origin
-- -- ---- ------
FullBackup True Full backup is missed or outdated Microsoft Ruleset 0.1.202</dev:code>
        <dev:remarks>
          <maml:para>This example shows Get-SqlAssessmentItem cmdlet returning all backup-related checks for all databases on default local SQL Server instance.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------- Example 11: Run interactively selected checks --------</maml:title>
        <dev:code>PS:&gt; $serverInstance = Get-SqlInstance -ServerInstance '(local)'
PS:&gt; $checks = Get-SqlAssessmentItem $serverInstance | Select Id, Description | Out-GridView -PassThru
PS:&gt; Invoke-SqlAssessment $serverInstance -Check $checks
 
    TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Info Enable trace flag 834 to use large-page allocations to improve TF834 Microsoft Ruleset 0.1.202
     analytical and data warehousing workloads.
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.</dev:code>
        <dev:remarks>
          <maml:para>The second line of this example shows obtaining checks for a $serverInstance, and selecting some of them interactively. Selected items are stored in an array variable, which then can be used as input for Invoke-SqlAssessment cmdlet. In this case, only picked checks will run during the assessment process.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>---------- Example 12: Specify credentials explicitly ----------</maml:title>
        <dev:code>PS&gt; $cred = Get-Credential
 
PowerShell credential request
Enter your credentials.
User: Administrator
Password for user Administrator: ********
 
PS&gt; $db = Get-SqlDatabase master -ServerInstance 10.0.3.118 -Credential $cred
PS&gt; Get-SqlAssessmentItem $db
 
   TargetObject: [master]
 
ID ON Name Origin
-- -- ---- ------
AutoCreateStats True Auto-Create Statistics should be on Microsoft Ruleset 0.1.202
FullBackup True Full backup is missed or outdated Microsoft Ruleset 0.1.202
DuplicateIndexes True Duplicate Indexes Microsoft Ruleset 0.1.202
RedundantIndexes True Redundant Indexes Microsoft Ruleset 0.1.202
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows how to get the SQL Assessment check list with explicitly specified credentials.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>Example 13: Get the SQL Assessment rule list for the SQL Server on Azure VM instance</maml:title>
        <dev:code>PS&gt; Connect-AzAccount
PS&gt; Set-Subscription My-Pay-As-You-Go
PS&gt; $cred = Get-Credential
 
PowerShell credential request
Enter your credentials.
User: Administrator
Password for user Administrator: ********
 
PS&gt; $inst = Get-SqlInstance -ServerInstance 10.0.3.118 -Credential $cred
PS&gt; Get-SqlAssessmentItem $inst
 
   TargetObject: [ContosoAzureSql]
 
ID ON Name Origin
-- -- ---- ------
HintsStatistics True Hints are being used Microsoft Ruleset 0.1.202
PlansUseRatio True Amount of single use plans in cache i... Microsoft Ruleset 0.1.202
TempDBFilesAutoGrowth True Some TempDB data files have different... Microsoft Ruleset 0.1.202
AzSqlVmSize True VM size is not memory-optimized Microsoft Ruleset 0.1.202
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows how to get a list of rules that are applicable to a particular SQL Server on Azure VM instance.</maml:para>
          <maml:para>An active Azure subscription connection enables Azure-related checks (AzSqlVmSize in this example). The first line connects to an Azure account to get data from Azure Resource Graph. The second line is optional.</maml:para>
          <maml:para>To run these checks, SQL Assessment requires the Az.ResourceGraph module.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>SQL Assessment API Online Documentation page</maml:linkText>
        <maml:uri>https://aka.ms/sql-assessment-api-docs</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>SQL Assessment Samples</maml:linkText>
        <maml:uri>https://go.microsoft.com/fwlink/?linkid=2099023</maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Invoke-SqlAssessment</command:name>
      <command:verb>Invoke</command:verb>
      <command:noun>SqlAssessment</command:noun>
      <maml:description>
        <maml:para>Runs SQL Assessment best practice checks for a chosen SQL Server object and returns their results.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Invoke-SqlAssessment cmdlet runs an assessment for each input object and returns a list of best practice recommendations that should be applied to the specified objects. It's up to you to follow the given recommendations or not. Learn more about the SQL Assessment API on the Microsoft Docs page (https://aka.ms/sql-assessment-api-docs).</maml:para>
      <maml:para>This cmdlet accepts the following input types:</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.Server</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.Database</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.AvailabilityGroup</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.FileGroup</maml:para>
      <maml:para>- Microsoft.SqlServer.Management.Smo.RegisteredServers.RegisteredServer</maml:para>
      <maml:para>- String containing path to any object of the above types</maml:para>
      <maml:para>- Collection of objects</maml:para>
      <maml:para></maml:para>
      <maml:para>You can get input objects with SqlServer cmdlets like Get-SqlInstance and Get-SqlDatabase or basic PowerShell cmdlets like Get-Item and Get-ChildItem. Also, the cmdlet supports the SQL Server PowerShell provider, so it can obtain an object from its path. The path can be passed explicitly, otherwise the current path will be used.</maml:para>
      <maml:para>Availability of a check for a chosen object varies on the SQL Server version, platform, and object type. Also, there are checks that target specific databases like `tempdb` or `master`. You can additionally filter checks by tags, names, and severity with the parameters -MinSeverity and -Check.</maml:para>
      <maml:para>You can get a list of checks applicable to the given SQL Server object with Get-SqlAssessmentItem cmdlet. </maml:para>
      <maml:para>The cmdlet runs only checks that are applicable to an input object. For example, database checks will not be run for a SQL Server instance or an availability group, even when specified in -Check list.</maml:para>
      <maml:para>Custom configurations can be applied with the -Configuration parameter. Customization examples are available on Github (https://go.microsoft.com/fwlink/?linkid=2099023).</maml:para>
      <maml:para>NOTE. In the first public preview Invoke-SqlAssessment returned AssessmentNote objects with properties CheckId and CheckName containing Check's ID and DisplayName respectively. In the second public preview the two properties were replaced with a single Check property providing much more data. Assuming $note was an object returned by Invoke-SqlAssessment , you can access check's ID as $note.Check.Id instead of $note.CheckId, or check's description as $note.Check.Description. You can use -FlattenOutput parameter to get results in the previous format with CheckId and CheckName. This parameter will also help to retain compatibility to some cmdlets like Write-SqlTableData . See examples 12-14 for more details. Invoke-SqlAssessment cmdlet's output is a list of violated best practices for every given SQL Server object. Use Description property to learn about the best practice and Message property to find out how it can be solved. Also, every check result contains a link to online documentation, which will help you figure out the issue better.</maml:para>
      <maml:para>SQL Server on Azure VM support</maml:para>
      <maml:para>With SQL Assessment cmdlets, you can assess an instance of SQL Server on Azure VM not only as on-prem SQL Server, but also with rules that are specific to SQL Server on Azure VM (ones that use information about the virtual machine configuration). For example, the AzSqlVmSize rule checks that the VM that hosts an instance of SQL Server on Azure VM is of recommended size.</maml:para>
      <maml:para>To use such rules, connect to Azure with Azure PowerShell Module (https://aka.ms/AAbdhwk) and make sure that the [Az.ResourceGraph](https://www.powershellgallery.com/packages/Az.ResourceGraph)module is installed. Sign in with Azure PowerShell (https://aka.ms/AAbdogm)before invoking SQL Assessment against a SQL Server on Azure VM instance. Example 16 shows the interactive sign in process and subscription selection.</maml:para>
      <maml:para>NOTE. It is possible to use Azure account connection persisted between PowerShell sessions, i.e. invoke Connect-AzAccount in one session and omit this command later. However, the current version of SQL Assessment cmdlets needs the Az.ResourceGraph module to be imported explicitly in this case: Import-Module Az.ResourceGraph</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Invoke-SqlAssessment</maml:name>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="10" aliases="Target">
          <maml:name>InputObject</maml:name>
          <maml:description>
            <maml:para>Specifies a SQL Server object or the path to such an object. The cmdlet runs assessment for this object. When this parameter is omitted, current location is used as input object. If current location is not a supported SQL Server object, the cmdlet signals an error.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue>
          <dev:type>
            <maml:name>PSObject</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Check</maml:name>
          <maml:description>
            <maml:para>One or more checks, check IDs, or tags.</maml:para>
            <maml:para>For every check object, Invoke-SqlAssessment runs that check if it supports the input object.</maml:para>
            <maml:para>For every check ID, Invoke-SqlAssessment runs the corresponding check if it supports the input object.</maml:para>
            <maml:para>For tags, Invoke-SqlAssessment runs checks with any of those tags.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">Object[]</command:parameterValue>
          <dev:type>
            <maml:name>Object[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Configuration</maml:name>
          <maml:description>
            <maml:para>Specifies paths to files containing custom configuration. Customization files will be applied to default configuration in specified order. The scope is limited to this cmdlet invocation only.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue>
          <dev:type>
            <maml:name>PSObject</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="Severity">
          <maml:name>MinSeverity</maml:name>
          <maml:description>
            <maml:para>Specifies minimum severity level for checks to be found. For example, checks of Warning or Information levels will not be returned when -MinSeverity Critical.</maml:para>
          </maml:description>
          <command:parameterValueGroup>
            <command:parameterValue required="false" command:variableLength="false">Information</command:parameterValue>
            <command:parameterValue required="false" command:variableLength="false">Warning</command:parameterValue>
            <command:parameterValue required="false" command:variableLength="false">Critical</command:parameterValue>
          </command:parameterValueGroup>
          <command:parameterValue required="true" variableLength="false">SeverityLevel</command:parameterValue>
          <dev:type>
            <maml:name>SeverityLevel</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>FlattenOutput</maml:name>
          <maml:description>
            <maml:para>Indicates that this cmdlet produces simple objects of type Microsoft.SqlServer.Management.Assessment.Cmdlets.AssessmentNoteFlat instead of Microsoft.SqlServer.Management.Assessment.Cmdlets.AssessmentNote .</maml:para>
            <maml:para>Regular AssessmentNote returned from Invoke-SqlAssessment contains references to other useful complex objects like Check (see example 12). With the Check property, you can get the check's description or reuse the check (see example 13). But some cmdlets do not support complex properties. For example, Write-SqlTableData will raise an error while trying to write AssessmentNote to a database. To avoid this you can use -FlattenOutput parameter to replace the Check property with two simple strings: CheckId and CheckName (see example 14).</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Check</maml:name>
        <maml:description>
          <maml:para>One or more checks, check IDs, or tags.</maml:para>
          <maml:para>For every check object, Invoke-SqlAssessment runs that check if it supports the input object.</maml:para>
          <maml:para>For every check ID, Invoke-SqlAssessment runs the corresponding check if it supports the input object.</maml:para>
          <maml:para>For tags, Invoke-SqlAssessment runs checks with any of those tags.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">Object[]</command:parameterValue>
        <dev:type>
          <maml:name>Object[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Configuration</maml:name>
        <maml:description>
          <maml:para>Specifies paths to files containing custom configuration. Customization files will be applied to default configuration in specified order. The scope is limited to this cmdlet invocation only.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue>
        <dev:type>
          <maml:name>PSObject</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="10" aliases="Target">
        <maml:name>InputObject</maml:name>
        <maml:description>
          <maml:para>Specifies a SQL Server object or the path to such an object. The cmdlet runs assessment for this object. When this parameter is omitted, current location is used as input object. If current location is not a supported SQL Server object, the cmdlet signals an error.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">PSObject</command:parameterValue>
        <dev:type>
          <maml:name>PSObject</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="Severity">
        <maml:name>MinSeverity</maml:name>
        <maml:description>
          <maml:para>Specifies minimum severity level for checks to be found. For example, checks of Warning or Information levels will not be returned when -MinSeverity Critical.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">SeverityLevel</command:parameterValue>
        <dev:type>
          <maml:name>SeverityLevel</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>FlattenOutput</maml:name>
        <maml:description>
          <maml:para>Indicates that this cmdlet produces simple objects of type Microsoft.SqlServer.Management.Assessment.Cmdlets.AssessmentNoteFlat instead of Microsoft.SqlServer.Management.Assessment.Cmdlets.AssessmentNote .</maml:para>
          <maml:para>Regular AssessmentNote returned from Invoke-SqlAssessment contains references to other useful complex objects like Check (see example 12). With the Check property, you can get the check's description or reuse the check (see example 13). But some cmdlets do not support complex properties. For example, Write-SqlTableData will raise an error while trying to write AssessmentNote to a database. To avoid this you can use -FlattenOutput parameter to replace the Check property with two simple strings: CheckId and CheckName (see example 14).</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String[]</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>Microsoft.SqlServer.Management.Smo.SqlSmoObject[]</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.SqlServer.Assessment.Cmdlets.AssessmentNote</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>--- Example 1: Invoke assessment for local default instance ---</maml:title>
        <dev:code>PS:&gt; Get-SqlInstance -ServerInstance localhost | Invoke-SqlAssessment
 
   TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Info Enable trace flag 834 to use large-page allocations to improve TF834 Microsoft Ruleset 0.1.202
     analytical and data warehousing workloads.
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.
Warn Amount of single use plans in cache is high (100%). Consider PlansUseRatio Microsoft Ruleset 0.1.202
     enabling the Optimize for ad hoc workloads setting on heavy OLTP
     ad-hoc workloads to conserve resources.
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows how to get all best practice recommendations for the default instance of SQL Server running on the current machine.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----- Example 2: Invoke assessment with PSProvider cmdlet -----</maml:title>
        <dev:code>PS:&gt; Get-Item SQLSERVER:\SQL\localhost\default | Invoke-SqlAssessment
 
   TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Info Enable trace flag 834 to use large-page allocations to improve TF834 Microsoft Ruleset 0.1.202
     analytical and data warehousing workloads.
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.
Warn Amount of single use plans in cache is high (100%). Consider PlansUseRatio Microsoft Ruleset 0.1.202
     enabling the Optimize for ad hoc workloads setting on heavy OLTP
     ad-hoc workloads to conserve resources.
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows how to get all best practice recommendations for the default instance of SQL Server.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>------ Example 3: Invoke assessment with PS Provider path ------</maml:title>
        <dev:code>PS:&gt; Invoke-SqlAssessment SQLSERVER:\SQL\localhost\default
 
TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Info Enable trace flag 834 to use large-page allocations to improve TF834 Microsoft Ruleset 0.1.202
     analytical and data warehousing workloads.
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.
Warn Amount of single use plans in cache is high (100%). Consider PlansUseRatio Microsoft Ruleset 0.1.202
     enabling the Optimize for ad hoc workloads setting on heavy OLTP
     ad-hoc workloads to conserve resources.
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows how to get all best practice recommendations for the default instance of SQL Server.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>---- Example 4: Invoke assessment with custom configuration ----</maml:title>
        <dev:code>PS:&gt; Get-SqlInstance -ServerInstance '(local)' | Invoke-SqlAssessment -Configuration C:\profileA.json, C:\profileB.json
 
TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.
Warn A custom rule violation detected. CustomRuleA Profile A 1.0
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows how to apply custom configuration to get a modified set of best practice recommendations. Custom configurations are described in JSON files. Custom rulesets profileA.json and profileB.json disabled some checks and introduced some new ones. One of the new checks from profileA.json detected a problem with the current configuration of the SQL Server instance. Visit SQL Assessment samples folder (https://go.microsoft.com/fwlink/?linkid=2099023)on Github to find out how to make customization.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------- Example 5: Invoke assessment for all instances --------</maml:title>
        <dev:code>PS:&gt; dir SQLSERVER:\SQL\localhost | Invoke-SqlAssessment
 
    TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Info Enable trace flag 834 to use large-page allocations to improve TF834 Microsoft Ruleset 0.1.202
     analytical and data warehousing workloads.
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.
Warn Amount of single use plans in cache is high (100%). Consider PlansUseRatio Microsoft Ruleset 0.1.202
     enabling the Optimize for ad hoc workloads setting on heavy OLTP
     ad-hoc workloads to conserve resources.
 
    TargetPath : Server[@Name='LOCAL\INSTANCE1']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Warn Product version 14.0.1000 is not the latest available. Keep your LatestCU Microsoft Ruleset 0.1.202
     your SQL Server up to date and install Service Packs and
     Cumulative Updates as they are released.
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows Invoke-SqlAssessment cmdlet accepting a set of SQL Server instances via pipeline.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>--- Example 6: Run assessment for a filtered set ot tragets ---</maml:title>
        <dev:code>PS:&gt; Get-SqlInstance -ServerInstance . | Where { $_.Name -Match '.*\d+' } | Invoke-SqlAssessment
 
    TargetPath : Server[@Name='LOCAL\INSTANCE1']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Warn Product version 14.0.1000 is not the latest available. Keep your LatestCU Microsoft Ruleset 0.1.202
     your SQL Server up to date and install Service Packs and
     Cumulative Updates as they are released.
...</dev:code>
        <dev:remarks>
          <maml:para>This example shows Invoke-SqlAssessment cmdlet accepting a set of SQL Server instances via pipeline. The set is filtered with the standard PowerShell Where-Object cmdlet.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----- Example 7: Invoke assessment for a database by name -----</maml:title>
        <dev:code>PS:&gt; Get-SqlDatabase master -ServerInstance localhost | Invoke-SqlAssessment -Verbose
VERBOSE: Base ruleset version: 0.2.
VERBOSE: No recommendations for [master].</dev:code>
        <dev:remarks>
          <maml:para>This example shows Invoke-SqlAssessment cmdlet accepting name of a database. In this case no issue was found.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----- Example 8: Invoke assessment for a database by path -----</maml:title>
        <dev:code>PS:&gt; Invoke-SqlAssessment SQLSERVER:\SQL\localhost\default\Databases\master -Verbose
VERBOSE: Base ruleset version: 0.2.
VERBOSE: No recommendations for [master].</dev:code>
        <dev:remarks>
          <maml:para>This example shows Invoke-SqlAssessment cmdlet accepting the path to a SQL Server database.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>------- Example 9: Detect critical issues for a database -------</maml:title>
        <dev:code>PS:&gt; cd SQLSERVER:\SQL\localhost\default\Databases\master
PS:&gt; Invoke-SqlAssessment -MinSeverity Critical
VERBOSE: Base ruleset version: 0.2.
VERBOSE: No recommendations for [master].</dev:code>
        <dev:remarks>
          <maml:para>This example shows Invoke-SqlAssessment cmdlet assessing the current location. Only critical issues are reported.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>------------ Example 10: Run checks selected by tag ------------</maml:title>
        <dev:code>PS:&gt; Get-SqlInstance -ServerInstance . | Invoke-SqlAssessment -Check Backup -Verbose
VERBOSE: Base ruleset version: 0.2.
VERBOSE: No recommendations for [LOCAL].</dev:code>
        <dev:remarks>
          <maml:para>This example shows Invoke-SqlAssessment cmdlet running all backup-related checks for every SQL Server instance on the local server.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------- Example 11: Run interactively selected checks --------</maml:title>
        <dev:code>PS:&gt; $serverInstance = Get-SqlInstance -ServerInstance '(local)'
PS:&gt; $checks = Get-SqlAssessmentItem $serverInstance | Select Name, Description | Out-GridView -PassThru
PS:&gt; Invoke-SqlAssessment $serverInstance -Check $checks
 
    TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Info Enable trace flag 834 to use large-page allocations to improve TF834 Microsoft Ruleset 0.1.202
     analytical and data warehousing workloads.
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.</dev:code>
        <dev:remarks>
          <maml:para>The second line of this example shows obtaining checks for a $serverInstance, and selecting some of them interactively. Selected items are stored in an array variable, which then is used as input for Invoke-SqlAssessment cmdlet. Only picked checks run during the assessment process.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------- Example 12: Effect of -FlattenOutput parameter --------</maml:title>
        <dev:code>PS&gt; $inst = Get-SqlInstance -ServerInstance .
PS&gt; Invoke-SqlAssessment $inst -FlattenOutput | Select -First 1 | Get-Member
 
 
   TypeName: Microsoft.SqlServer.Management.Assessment.Cmdlets.AssessmentNoteFlat
 
Name MemberType Definition
---- ---------- ----------
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
CheckId Property string CheckId {get;}
CheckName Property string CheckName {get;}
HelpLink Property string HelpLink {get;}
Message Property string Message {get;}
RulesetName Property string RulesetName {get;}
RulesetVersion Property string RulesetVersion {get;}
Severity Property string Severity {get;}
TargetPath Property string TargetPath {get;}
TargetType Property string TargetType {get;}
 
 
PS&gt; Invoke-SqlAssessment $inst | Select -First 1 | Get-Member
 
 
   TypeName: Microsoft.SqlServer.Management.Assessment.Cmdlets.AssessmentNote
 
Name MemberType Definition
---- ---------- ----------
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
Check Property Microsoft.SqlServer.Management.Assessment.Checks.ICheck Check {get;}
HelpLink Property string HelpLink {get;}
Message Property string Message {get;}
Severity Property Microsoft.SqlServer.Management.Assessment.SeverityLevel Severity {get;}
TargetPath Property string TargetPath {get;}
TargetType Property string TargetType {get;}
 
PS&gt; (Invoke-SqlAssessment $inst | Select -First 1).Check | Get-Member
 
 
   TypeName: Microsoft.SqlServer.Management.Assessment.Checks.Check
 
Name MemberType Definition
---- ---------- ----------
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
Condition Property Microsoft.SqlServer.Management.Assessment....
Description Property string Description {get;set;}
DisplayName Property string DisplayName {get;set;}
Enabled Property bool Enabled {get;set;}
HelpLink Property string HelpLink {get;set;}
Id Property string Id {get;set;}
Level Property Microsoft.SqlServer.Management.Assessment....
Message Property string Message {get;set;}
OriginName Property string OriginName {get;set;}
OriginVersion Property version OriginVersion {get;set;}
Parameters Property System.Collections.Generic.IDictionary[str...
Probes Property System.Collections.Generic.List[Microsoft....
Tags Property System.Collections.Generic.HashSet[string]...
Target Property Microsoft.SqlServer.Management.Assessment....</dev:code>
        <dev:remarks>
          <maml:para>This example shows the difference between objects returned with or without -FlattenOutput parameter. The parameter replaces huge complex Check object with two string properties CheckId and CheckName. This is useful for serialization purposes (see the next example).</maml:para>
          <maml:para>The first command shows simple object with all properties of type string.</maml:para>
          <maml:para>The second command shows another object with two non-string properties: Check and Severity.</maml:para>
          <maml:para>The third command shows the rich set of data accessible with the Check property.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>------------- Example 13: Run failed checks again -------------</maml:title>
        <dev:code>PS&gt; $inst = Get-SqlInstance -ServerInstance .
PS&gt; $results = Invoke-SqlAssessment $inst
PS&gt; $results
 
   TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Info Enable trace flag 834 to use large-page allocations to improve TF834 Microsoft Ruleset 0.1.202
     analytical and data warehousing workloads.
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.
Warn Amount of single use plans in cache is high (100%). Consider PlansUseRatio Microsoft Ruleset 0.1.202
     enabling the Optimize for ad hoc workloads setting on heavy OLTP
     ad-hoc workloads to conserve resources.
 
PS&gt; $results[1].Check.Description
This check detects deprecated or discontinued features used on target SQL Server instance. Deprecated features may be
removed in a future release of SQL Server. Discontinued features have been removed from specific versions of SQL Server.
 
PS&gt; Invoke-SqlAssessment $inst -Check $results[1].Check
    
   TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.
 
PS&gt; Invoke-SqlAssessment $inst -Check ($results).Check
 
   TargetPath : Server[@Name='LOCAL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Info Enable trace flag 834 to use large-page allocations to improve TF834 Microsoft Ruleset 0.1.202
     analytical and data warehousing workloads.
Warn Detected deprecated or discontinued feature uses: String literals DeprecatedFeatures Microsoft Ruleset 0.1.202
     as column aliases, syscolumns, sysusers, SET FMTONLY ON, XP_API,
     Table hint without WITH, More than two-part column name. We
     recommend to replace them with features actual for SQL Server
     version 14.0.1000.
Warn Amount of single use plans in cache is high (100%). Consider PlansUseRatio Microsoft Ruleset 0.1.202
     enabling the Optimize for ad hoc workloads setting on heavy OLTP
     ad-hoc workloads to conserve resources.</dev:code>
        <dev:remarks>
          <maml:para>This example shows how a Check returned with assessment results can be reused. You can rerun the checks which produced AssessmentNotes before.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>------- Example 14: Store assessment results to a table -------</maml:title>
        <dev:code>PS:&gt; $serverInstance = Get-SqlInstance -ServerInstance '(local)'
PS:&gt; Invoke-SqlAssessment $serverInstance -FlattenOutput |
     Write-SqlTableData -ServerInstance localhost -DatabaseName SqlAssessment -SchemaName Assessment -TableName Results -Force</dev:code>
        <dev:remarks>
          <maml:para>The second line of this example shows using -FlattenOutput parameter with Write-SqlTableData cmdlet to store assessment results to a SQL database.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>---------- Example 15: Specify credentials explicitly ----------</maml:title>
        <dev:code>PS&gt; $cred = Get-Credential
 
PowerShell credential request
Enter your credentials.
User: Administrator
Password for user Administrator: ********
 
PS&gt; $inst = Get-SqlInstance -ServerInstance 10.0.3.118 -Credential $cred
PS&gt; Invoke-SqlAssessment $inst
 
   TargetPath : Server[@Name='ContosSQL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Warn Amount of single use plans in cache is high (100%). Consider PlansUseRatio Microsoft Ruleset 0.1.202
     enabling the Optimize for ad hoc workloads setting on heavy OLTP
     ad-hoc workloads to conserve resources</dev:code>
        <dev:remarks>
          <maml:para>This example shows how to invoke SQL Assessment with explicitly specified credentials.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>Example 16: Invoke assessment for a SQL Server on Azure VM instance</maml:title>
        <dev:code>PS&gt; Connect-AzAccount
PS&gt; Set-Subscription My-Pay-As-You-Go
PS&gt; $cred = Get-Credential
 
PowerShell credential request
Enter your credentials.
User: Administrator
Password for user Administrator: ********
 
PS&gt; $inst = Get-SqlInstance -ServerInstance 10.0.3.118 -Credential $cred
PS&gt; Invoke-SqlAssessment $inst
 
   TargetPath : Server[@Name='ContosoAzureSQL']
 
Sev. Message Check ID Origin
---- ------- -------- ------
Warn Amount of single use plans in cache is high (100%). Consider PlansUseRatio Microsoft Ruleset 0.1.202
     enabling the Optimize for ad hoc workloads setting on heavy OLTP
     ad-hoc workloads to conserve resources
Warn Use memory optimized virtual machine sizes for the best AzSqlVmSize Microsoft Ruleset 0.1.202
     performance of SQL Server workloads</dev:code>
        <dev:remarks>
          <maml:para>This example shows how to invoke assessment for an SQL Server on Azure VM instance.</maml:para>
          <maml:para>An active Azure subscription connection enables SQL Server on Azure VM related checks (AzSqlVmSize in this example). The first line connects to an Azure account to get data from Azure Resource Graph. The second line is optional.</maml:para>
          <maml:para>To run these checks SQL Assessment requires Az.ResourceGraph module.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>SQL Assessment API Online Documentation page</maml:linkText>
        <maml:uri>https://aka.ms/sql-assessment-api-docs</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>SQL Assessment Samples</maml:linkText>
        <maml:uri>https://go.microsoft.com/fwlink/?linkid=2099023</maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
</helpItems>