This is my view that I'm using to secure the application.
SELECT dbo.[JobCashFlow Table].*
FROM dbo.[JobCashFlow Table]
WHERE (Project_Owner = SYSTEM_USER) OR
(IS_MEMBER('Manager') = 1)
Can someone tell me why the IS_MEMBER is not catching my role 'Manager'? iF i PLACE myself in the Manager group, it still only shows me the 14 records that have project_owner equal to my login name. I'm using Windows NT Authentication.
SELECT dbo.[JobCashFlow Table].*
FROM dbo.[JobCashFlow Table]
WHERE (Project_Owner = SYSTEM_USER) OR
(IS_MEMBER('Manager') = 1)
Can someone tell me why the IS_MEMBER is not catching my role 'Manager'? iF i PLACE myself in the Manager group, it still only shows me the 14 records that have project_owner equal to my login name. I'm using Windows NT Authentication.