Quantcast
Channel: SQL Server Reporting Services, Power View forum
Viewing all articles
Browse latest Browse all 10045

Folder & Associated Reports in ReportServerDb But Not Showing in Report Manger

$
0
0

In SSRS, we have a few folders and associated reports that I can see in the "Catalog" table of the ReportServerDb. However, when looking for the folder and reports in Report Manager they are not there.

I thought it could be a security issue, but I believe I'm logged into the Report Manager as the same user which is the database owner. I also ran the below query and it shows that the user name has the following roles assigned: Browser, Publisher, My Reports, Content Builder, and Report Builder.

Any ideas?

 SELECT C.Name
      ,U.UserName
      ,R.RoleName
      ,R.Description
      ,U.AuthType
  FROM Reportserver.dbo.Users U
  JOIN Reportserver.dbo.PolicyUserRole PUR
    ON U.UserID = PUR.UserID
  JOIN Reportserver.dbo.Policies P
    ON P.PolicyID = PUR.PolicyID
  JOIN Reportserver.dbo.Roles R
    ON R.RoleID = PUR.RoleID
  JOIN Reportserver.dbo.Catalog c
    ON C.PolicyID = P.PolicyID
 WHERE c.Name = @ReportName
ORDER BY U.UserName

 



Viewing all articles
Browse latest Browse all 10045

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>