Hello,
Scenario:
I am trying to set up a shared schedule in report manager after successfully deploying the reports to my server. I have set up the linked reports and AD permissions, however when I want to either set up a shared schedule, or an individual schedule I encounter the error below.
System details:
Microsoft SQL Server 2005 - 9.00.2050.00 (Intel X86) Feb 13 2007 23:02:48 Copyright (c) 1988-2005 Microsoft Corporation Enterprise Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
Report Manager Error:
An internal error occurred on the report server. See the error log for more details. (rsInternalError) The specified @.category_id ('100') does not exist.
The error log does not contain any infor regarding this error, and I've searched for this error extensively in Google as well as microsoft.com, however can't seem to find a resolution for it.
I have also tried to create the schedule in SQL Server Management Studio. The complete error message is as follows:
An internal error occurred on the report server. See the error log for more details. (rsInternalError) (Report Services SOAP Proxy Source)
Additional information:
An internal error occurred on the report server. See the error log for more details. (rsInternalError) (ReportingServicesLibrary)
The specified @.category_id ('100') does not exist. () (.Net SqlClient Data Provider)
Please could you send me any further info about how to solve this problem and resolve the error.
Thank you
Sune de Vos
Hi,It looks like you did not have permission to setup category on database server in msdb.
try this:
use msdb
set IDENTITY_INSERT syscategories ON
insert into syscategories(category_id,category_class,category_type,name) values(100,1,1,'Report Server')
set IDENTITY_INSERT syscategories OFF
you need to be sysadmin to run this.
It seems to work after that - did not test how it will behave later, so be careful.
Best Regards
No comments:
Post a Comment