استعلامات لجدول SQLAssessmentRecommendation

للحصول على معلومات حول استخدام هذه الاستعلامات في مدخل Microsoft Azure، راجع البرنامج التعليمي Log Analytics. للحصول على واجهة برمجة تطبيقات REST، راجع الاستعلام.

توصيات SQL حسب منطقة التركيز

حساب جميع عمليات إعادة تعليق SQL حسب منطقة التركيز.

SQLAssessmentRecommendation
| summarize AggregatedValue = count() by FocusArea

توصيات SQL بواسطة الكمبيوتر

حساب توصيات SQL مع نتيجة فاشلة بواسطة الكمبيوتر.

SQLAssessmentRecommendation
| where RecommendationResult == "Failed"
| summarize AggregatedValue = count() by Computer

توصيات SQL حسب المثيل

حساب توصيات SQL مع نتيجة فاشلة حسب المثيل.

SQLAssessmentRecommendation
| where RecommendationResult == "Failed"
| summarize AggregatedValue = count() by SqlInstanceName

توصيات SQL حسب قاعدة البيانات

حساب توصيات SQL مع نتيجة فاشلة حسب قاعدة البيانات.

SQLAssessmentRecommendation
| where RecommendationResult == "Failed"
| summarize AggregatedValue = count() by DatabaseName

توصيات SQL بواسطة AffectedObjectType

حساب توصيات SQL مع نتيجة فاشلة حسب نوع الكائن المتأثر.

SQLAssessmentRecommendation
| where RecommendationResult == "Failed"
| summarize AggregatedValue = count() by AffectedObjectType

كم مرة قام كل مشغل توصية SQL فريد؟

حساب توصيات SQL مع نتيجة فاشلة حسب التوصية.

SQLAssessmentRecommendation
| where RecommendationResult == "Failed"
| summarize AggregatedValue = count() by Recommendation

توصيات تقييم SQL ذات الأولوية العالية

فشل أحدث توصية أمان ذات أولوية عالية مع نتيجة بواسطة معرف التوصية.

SQLAssessmentRecommendation
| where FocusArea == 'Security and Compliance' and RecommendationResult == 'Failed' and RecommendationScore>=35
| summarize arg_max(TimeGenerated, *) by RecommendationId