Author Archives: Alistair Hunt
SQL Server 2008 And Dundas Charts
Beeping Computers !
Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException
- I had a domain user that only had permissions to see reports from one particular folder (and sub-folders) on the Report Server.
- The user had been assigned the Content Manager role and could upload and run reports.
- The problem ocurred when the user wanted to edit the properties of the report and then they would get the above error.
After a bit of digging around it seems that if your user does not have any permissions at the root level (Home folder) then they are not allowed to change any of the settings within a report, regardless of their current role assignment. In this case the solution was straight forward. I just added my domain user to the root folder with a Browser role. Since my root folder security settings were not propogating to any sub folders the user only has permission to access their particular reports and could now amend the properties for them as well.
For more information on the above error, take a look at;
- http://msdn.microsoft.com/en-us/library/aa337279(SQL.90).aspx – rsAccessedDenied (SQL Server Books Online 2005)
- http://msdn.microsoft.com/en-us/library/ms156014(SQL.90).aspx – Managing Permissions and Security for Reporting Services
Simultaneous Lookups using Full Cache to the same table
Its more straight forward than you think.
ISV.Config.xml Entries
<Grid>
<MenuBar>
<Buttons>
<Button Title="New" ToolTip="Create a new Product" Icon="/_imgs/ico_18_1024.gif" Url="http://crmserver/products/product/edit.aspx" PassParams="1" WinParams="height=550,width=1000,Top=200,Left=200,Toolbar=0,Resizable=1,Status=1" WinMode="0" AvailableOffline="true" />
</Buttons>
</MenuBar>
</Grid>
</Entity>
dtproj File Error
- Overwriting the dtproj file when the ‘Save File As’ dialog box was displayed.
- Checking the dtproj file back in SourceSafe.
- Closing the solution, without saving the changes to the project, re-opening the solution, re-adding the new DTSX file and saving the project file changes.
- Getting an earlier version of the dtproj file from SourceSafe and re-insterting the existing items to the project and saving the project file changes.
All of the above attempts proved to be in vain as I was just presented with the same message box. After checking my dtproj file differences within SourceSafe it occurred to me that I should edit the dtproj file within Notepad and see if that resolved the problem. I added a couple of new entries into the dtproj file for the new items that were included in my SSIS project and saved the changes. When I clicked back to my open project, Visual Studio recognised that changes had been made to the dtproj file and asked me if I wished to reload the file? I clicked ‘Yes’, the project file reloaded successfully and have been able to continue working with my SSIS project without further error messages.
Error generated loading DTSX file into IDE
VS 2005 SP1 Installation Problem
Looking in the Event Log I also found this entry around the time the error message was generated;
Event Type:Error
Event Source:MsiInstaller
Event Category:None
Event ID:1008
Date:12/18/2006
Time:12:18:31 PM
Description:
The installation of C:DOCUME~1…LOCALS~1TempZNWA0VS80sp1-KB926601-X86-ENU.msp is not permitted due to an error in software restriction policy processing. The object cannot be trusted.
After doing a bit of research I came across others who had experienced the same problem and they directed me to this Knowledge Base artcile http://support.microsoft.com/default.aspx/kb/925336 which provided the solution. After applying the update and rebooting the server I was able to install the Service Pack.