Reporting Services 2005 How to Display Data Point Labels Outside a Pie Chart

February 8th, 2010  / Author: Greg Pinero (Primary Searcher)

The labels on a pie chart in SQL Server 2005 Reporting Services (SSRS) are very ugly. They just get thrown over the chart by default and they all overlap. I hate it!

This MSDN page tells us how to fix it http://msdn.microsoft.com/en-us/library/ms156263(SQL.90).aspx

To change the position of point labels in a pie chart
Using Report Designer, create a pie chart. For more information, see Working with Chart Data Regions.

In Layout view, right-click the chart, and then click Properties.

On the Data tab, in Values, and then click Add or Edit to open the Edit Chart Value dialog box.

On the Point Labels tab, clear Auto, and then select a button other than the center button.

To set options on this tab, Show point labels must be selected.

SQL Server 2005 Reporting Services SSRS – Fixing Connection Error

February 1st, 2010  / Author: Greg Pinero (Primary Searcher)

I was completely stumped on this error that I was getting on the report manager web page after I uploaded an RDL file and set it use a shared connection I had already set up:

An error has occurred during report processing.
Cannot create a connection to data source 'TWO'.
An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

It turns out I had simply mistyped my connection string when I was setting up the shared connection. So that’s something you should check first.

Mini Searches with Answers

January 31st, 2010  / Author: Greg Pinero (Primary Searcher)

These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.

Arduino playground – LEDSensor
How to use an LED as a photo sensor

GNU/Linux Command-Line Tools Summary
an attempt to provide a summary of useful command-line tools available to a GNU/Linux based operating system

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

Reporting Services – Fixing Could not find stored procedure ‘GetOneConfigurationInfo’.

January 26th, 2010  / Author: Greg Pinero (Primary Searcher)

I was getting that error when going to the http://…/ReportServer webpage because I set up the Reporting Services Configuration Manager wrong.

In the database setup section where it asks for a database name, you want to click “new” and follow the instructions to set up a new database for it to store all of its information. I thought it was asking for which database my reports used :-(

Reporting Services – Error When Starting Report Server

January 26th, 2010  / Author: Greg Pinero (Primary Searcher)

I got this error when starting the report server:


System.ServiceProcess.TimeoutException: Time out has expired and the operation has not been completed. at System.ServiceProcess.ServiceController.WaitForStatus(ServiceControllerStatus desiredStatus, TimeSpan timeout) at ReportServicesConfigUI.Panels.ServerInformationPanel.StartStopServiceTask(Boolean start).

To fix I opened up a command prompt and typed:

C:\> cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>aspnet_regiis -i
Start installing ASP.NET (2.0.50727).
.............................................
Finished installing ASP.NET (2.0.50727).

Apparently I had some issue with my ASPNET account