Question : SQL 2008 Database


I have created some reports in SSRS..

They all work well for the most part. The only security restriction on the reports are that only certain users can enter the SharePoint Point to view the reports...

My Questions is that even some of the Reports data need to be hidden I have certain users that should not see certain customers on the reports..

What would be the best way to handle an issue like this... I think this would require row level security if im not mistaken but I would not know how to implement..




 

Answer : SQL 2008 Database

Leo,
HTH
Thanks,
Chris
1:
2:
3:
4:
5:
DECLARE @UserName varchar(30)  
SET @UserName = 'SKIES\irodriguez'  --SKIES\Ksteele  
  
Select CustomerNo from AR_Customer AR inner join UserSecurity US on AR.UserSecurityKey >= US.Security_ID  
        and US.UserName = @UserName
Random Solutions  
 
programming4us programming4us