Sign in
Bob's SQL Reporting Services Blog
Notes, tips, rants, and ruminations on SQL Reporting Services, and Report Builder in particular.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Admin
Clickthrough
Configuration
Filters
Formulas
Grouping
Localization
Model Design
Model Security
Navigation
Pages
Parameters
Presentation
Releases
Report Builder
Report Design
Scale
Schema
Tricks
Archive
Archives
June 2012
(2)
February 2012
(1)
July 2009
(1)
April 2009
(3)
March 2009
(6)
October 2007
(1)
September 2007
(1)
February 2007
(2)
January 2007
(1)
December 2006
(3)
November 2006
(1)
October 2006
(1)
September 2006
(5)
July 2006
(2)
March 2006
(8)
January 2006
(3)
October 2005
(3)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Bob's SQL Reporting Services Blog
Using RDL expressions in Report Builder
Posted
over 7 years ago
by
Bob Meyers MSFT
14
Comments
While not a documented feature, you actually can enter an arbitrary RDL expression into a textbox in a Report Builder report. For example, you could add a textbox that shows the date the report was run by setting the value of the textbox to the following...
Bob's SQL Reporting Services Blog
Report Builder launch parameters
Posted
over 7 years ago
by
Bob Meyers MSFT
20
Comments
To launch Report Builder, use one of the following URLs (also documented on MSDN ): http://<servername>/reportserver/reportbuilder/reportbuilder.application (Full Trust) http://<servername>/reportserver/reportbuilder/reportbuilderlocalintranet...
Bob's SQL Reporting Services Blog
Getting grouping right in Report Builder
Posted
over 7 years ago
by
Bob Meyers MSFT
4
Comments
One thing Report Builder users need to be aware of when building a report is the difference between an entity group , which displays exactly one instance for each row in the underlying table, and a value group , which displays one instance for each distinct...
Bob's SQL Reporting Services Blog
Adding parameters (prompts) to a Report Builder report
Posted
over 7 years ago
by
Bob Meyers MSFT
4
Comments
You easily can add basic parameters to a Report Builder report using the Filter dialog. For example, to let the user choose which year to view sales data for, add an Order Year filter condition to your report filter, then, instead of specifying a value...
Bob's SQL Reporting Services Blog
How to create an inline bar chart
Posted
over 8 years ago
by
Bob Meyers MSFT
2
Comments
Here's a neat trick a co-worker and I discovered this afternoon for creating an inline bar chart (an inline data visualization in a table or other data region). 1. Add an embedded image to your report that will serve as the "bar" (a simple horizontal...
Bob's SQL Reporting Services Blog
Add Excel-like "color scale" conditional formatting to your reports
Posted
over 4 years ago
by
Bob Meyers MSFT
9
Comments
I’ve been meaning to do this for a long time, and it looks like David Lean beat me to it earlier this year by posting an incredibly thorough four-part discussion of how to do conditional formatting in Reporting Services . I’ve played with his sample code...
Bob's SQL Reporting Services Blog
Report model denormalization: Why, How, and When
Posted
over 7 years ago
by
Bob Meyers MSFT
6
Comments
Relational databases are often heavily normalized to improve performance, reduce storage requirements, and ensure data consistency. While performance may be relevant to report execution, neither of these reasons is relevant when presenting the schema...
Bob's SQL Reporting Services Blog
Filtering on totals in Report Builder
Posted
over 6 years ago
by
Bob Meyers MSFT
2
Comments
Since releasing Report Builder almost two years ago, we've found that many users run into difficulty at some point with filtering on totals . A classic example of this is, "show me a list of customers with more than $5000 in Accessory sales." "Accessory...
Bob's SQL Reporting Services Blog
Sorting the values in parameter dropdowns in Report Builder
Posted
over 6 years ago
by
Bob Meyers MSFT
5
Comments
In SQL 2005 the semantic queries generated by Report Builder do not support sorting. This is not a problem in the report itself, because all sorting is defined and implemented in the report definition instead of the query. However, for parameter dropdowns...
Bob's SQL Reporting Services Blog
How to get the SQL for a Report Builder report
Posted
over 7 years ago
by
Bob Meyers MSFT
5
Comments
There are two ways to get the generated SQL for a Report Builder report (or for a model-based query in any RS report): 1) use SQL Profiler to capture the incoming SQL commands, or 2) enable query logging in the report server. To enable query logging...
Bob's SQL Reporting Services Blog
Launching Report Builder from the command line
Posted
over 6 years ago
by
Bob Meyers MSFT
4
Comments
A number of people have asked if it is possible to launch RB from the command line. While it is in fact possible, it is an unsupported feature in SQL Server 2005. That said, here's how to do it. You just need to specify what report server to connect to...
Bob's SQL Reporting Services Blog
Enforcing timeouts on Report Builder queries
Posted
over 7 years ago
by
Bob Meyers MSFT
8
Comments
I've attached a sample C# project illustrating how to create a custom data processing extension ( more info ) that enforces a maximum timeout on any SQL queries submitted to it, including those generated from Report Builder. To try it out: Open...
Bob's SQL Reporting Services Blog
Grokking Report Builder Queries: This is NOT your mother's SQL!
Posted
over 7 years ago
by
Bob Meyers MSFT
6
Comments
IT People and Report Builder The natural inclination when IT people see and start to use Report Builder is that they immediately try think of the entire experience in terms of the underlying SQL statements -- in particular the type of SQL statements they...
Bob's SQL Reporting Services Blog
Collapsing a many-to-many relationship in a report model
Posted
over 7 years ago
by
Bob Meyers MSFT
8
Comments
Often a many-to-many relationship exists between two entities where the intermediate entity has nothing on it except the connecting roles. For example, it might be that an Employee can be assigned to many Regions, and each Region can have many Employees...
Bob's SQL Reporting Services Blog
Using that little checkbox in the Report Builder filter dialog
Posted
over 6 years ago
by
Bob Meyers MSFT
1
Comments
The Filter dialog in Report Builder has a little checkbox near the bottom that many users have asked about. The checkbox label says, "When adding a new condition, apply to all data in my report." The effect of selecting this checkbox is that when subsequent...
Bob's SQL Reporting Services Blog
How to enable Report Builder for non-domain users
Posted
over 7 years ago
by
Bob Meyers MSFT
2
Comments
Report Builder uses a client technology called ClickOnce to download and launch the application files. This component runs outside of Internet Explorer, so it cannot leverage any credentials that may have been collected by IE to access the report server...
Bob's SQL Reporting Services Blog
The philosophy behind Report Builder data navigation
Posted
over 8 years ago
by
Bob Meyers MSFT
7
Comments
The top part of the Explorer pane in Report Builder is probably unlike anything most people have ever used. It starts out as a flat list of entities -- big "things" in your database like Customers, Orders, Products, etc. -- but then rearranges itself once you've added the first field to your report into an auto-collapsing, recursive tree. What's really going on here? Why the new-fangled interface?...
Bob's SQL Reporting Services Blog
Creating a report model that can be used against multiple databases
Posted
over 7 years ago
by
Bob Meyers MSFT
5
Comments
Sometimes it is useful to create a report model that can be used against multiple databases that have the same structure, but reside on different servers and/or have different schema qualifiers. Uploading a second copy of a report model and pointing...
Bob's SQL Reporting Services Blog
Clickthrough reports are the key to integration
Posted
over 7 years ago
by
Bob Meyers MSFT
5
Comments
Clickthrough reports are the special kind of drillthrough reports created by Report Builder. They are "special" because they are linked to the parent report automatically, and are generated on the server from special template reports (or from a built...
Bob's SQL Reporting Services Blog
Requiring Report Builder users to choose a perspective
Posted
over 6 years ago
by
Bob Meyers MSFT
6
Comments
Some customers have report models that are large enough they do not expect any user to ever request the entire model, and would actually prefer to disallow that option, and require them to choose a perspective instead. There is an undocumented and unsupported...
Bob's SQL Reporting Services Blog
How to build a Clickthrough link in Report Builder 2.0
Posted
over 4 years ago
by
Bob Meyers MSFT
1
Comments
As I mentioned in a previous post , due to resource constraints in this release, Report Builder 2.0 is not a strict superset of RB 2005/1.0. One of the features missing from RB 2.0 is automatic creation of Clickthrough links . You can still get them,...
Bob's SQL Reporting Services Blog
What to do with IdentifyingAttributes and DefaultDetailAttributes?
Posted
over 8 years ago
by
Bob Meyers MSFT
1
Comments
SQL 2005 report models will ship with a curious and admittedly incomplete solution for handling "the information users typically want to see about an instance of entity X". The problem is that there are many scenarios for which the answer to that question...
Bob's SQL Reporting Services Blog
How to create a 'company' security filter for a hosted application
Posted
over 7 years ago
by
Bob Meyers MSFT
3
Comments
Several customers have asked how to restrict data visibility in a report model for a hosted application, where every table has a "CompanyID" column, and every user that accesses the system is associated (via some other table) with exactly one company...
Bob's SQL Reporting Services Blog
Evolving your report model over time
Posted
over 7 years ago
by
Bob Meyers MSFT
2
Comments
Many factors combine to make report models highly likely to change and evolve over time. Sometimes the underlying schema changes. Sometimes new stuff is added. Sometimes you just want to improve how the schema is presented to users. Report models are...
Bob's SQL Reporting Services Blog
Creating a role to one of several related items
Posted
over 7 years ago
by
Bob Meyers MSFT
9
Comments
I call this the Primary Address problem, because a classic example is when you have a Customer table and an Address table, and each customer can have many addresses (Primary, Billing, Shipping, etc.), but no more than one of any given type. If you have...
Page 1 of 2 (43 items)
1
2