How to view current Resource Governor Classification Function

661 Views Asked by At

Is there a way to view what is the current/active Classification Function that the Resource Governor is currently using ?

1

There are 1 best solutions below

0
On BEST ANSWER

The classifier function is stored in the sys.resource_governor_configuration table:

select OBJECT_NAME(classifier_function_id) AS [ClassifierFunctionName]
from sys.resource_governor_configuration;