I'm attempting to setup Resource Governor to split the Dynamics CRM Report requests into their own workload group to throttle down their impact on the server.
Here is my current classifier function
ALTER FUNCTION [dbo].[fn_ResourceGovernorClassifier]()
RETURNS sysname
WITH SCHEMABINDING
AS
BEGIN
DECLARE @group sysname
IF APP_NAME() like '%Report Server%'
SET @group = 'CRMReports'
ELSE
SET @group = 'default'
RETURN @group
END
However, when I execute a report, it's not being properly assigned to the CRMReports group. It's landing in the default workgroup.
Has anyone set this up before. If so what am I missing to pull out the Reporting requests into the correct workload group?