Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.