Add Data to a Report (Report Builder and SSRS)

To add data to a report, you create datasets. Each dataset represents the result set from running a query command on a data source. The columns in the result set are the field collection. The rows in the result set are the data. A dataset does not contain the actual data. A dataset contains the information that is needed to retrieve a specific set of data from a data source.

There are two types of datasets: embedded and shared. An embedded dataset is defined in a report and used only by that report. A shared dataset is defined on the report server or SharePoint site and can be used by multiple reports. In Report Builder, you can create shared datasets in Shared Dataset mode or embedded datasets in Report Designer mode. In Report Designer in SQL Server Data Tools (SSDT), you can create shared datasets as part of a project or embedded datasets as part of a report.

  • Embedded datasets.   Unlike applications such as Microsoft Office Excel where you work with data directly in a worksheet, in Report Builder or Report Designer you work with metadata that represents the data that will be retrieved when the report is processed. To create an embedded dataset, select the source of data and specify a query. After you create the dataset, use the Report Data pane to view the field collection. You can display data from a dataset in a data region like a table or chart. In each data region, you can group, filter, and sort the data to organize it. After you design the report layout, you run the report to see the actual data.

    In the following figure, the Report Data pane displays a data source named AdventureWorks2012 , a dataset named DataSet1, and five fields in the dataset field collection. The Layout pane shows a table with the top row of column headings and the bottom row with table cells that contain text. The placeholder text [Name] is the metadata for the field Name. When the report runs, the placeholder text is replaced by the actual data values. The table expands as required to display all the data.

    rs_DataDesignandPreview

  • Shared datasets.   Create a shared dataset when you want to use a dataset in more than one report. To create and save a shared dataset to a report server or SharePoint site, use Report Builder in shared dataset design view. To create a shared dataset as part of a project that can be deployed to a server or site, use Report Designer.

    The following illustration shows Shared Dataset Design view in Report Builder. You can select or modify the data connection, the dataset properties, the query, filters, and optionally mark filters as parameters, and view the query results. You then save the changes back to the server or site.

    rs_SharedDatasetDesignMode

For more information, see Embedded and Shared Datasets (Report Builder and SSRS) and Embedded and Shared Data Connections or Data Sources (Report Builder and SSRS).

You can also add datasets to a report by adding report parts that include the datasets they depend on. Report parts are self-contained report items that are stored on the report server and can be included in other reports. Use Report Builder to browse and select parts from the Report Part Gallery to add to your reports. Use Report Designer or Report Builder to save report parts for use in the Report Part Gallery. For more information, see Report Parts (Report Builder and SSRS) and Report Parts in Report Designer (SSRS) on the Web at microsoft.com.

To learn how to create a report that displays data from a SQL Server database, see Tutorial: Creating a Basic Table Report (Report Builder). To build a report that includes its own data, see Tutorial: Create a Quick Chart Report Offline (Report Builder).

Note

You can create and modify report definitions (.rdl) in Report Builder and in Report Designer in SQL Server Data Tools. Each authoring environment provides different ways to create, open, and save reports and related items. For more information, see Designing Reports in Report Designer and Report Builder (SSRS) on the Web at microsoft.com.

In This Article

Adding Report Data

Adding Data with Report Parts

Queries and Query Designers

How-To Topics

In This Section

Adding Report Data

In Report Builder, you can add report data in the following ways.

  • Add report parts from a report server to your report. Each report part is self-contained and includes dependent datasets. The datasets are predefined.

  • Use the Table/Matrix, Chart, and Map wizards. From the wizards, you can select shared data sources and shared datasets, or create new datasets, and continue to design the report.

  • Add shared datasets from a report server. Shared datasets are predefined and specify which data to use from a predefined data source. When you add a shared dataset to your report, you add a dataset reference that points to the shared dataset definition.

In Report Builder or Report Designer, you can add data in the following ways.

  • Add embedded datasets based on shared data sources.

  • Add embedded datasets based on embedded data sources.

Note

On a report server, shared items are secured individually or by inheriting permissions from the folder where they are published. To enable other users to have access to shared datasets that you save, you must understand how permissions are granted. For more information, see Security (Report Builder) or Secure Shared Dataset Items.

After you add data to a report, you can organize the data on the report page with data regions, modify report parts and share those changes with others, and enable users to limit or sort the data they see in the report. For more information, see the following related topics:

Arrow icon used with Back to Top link Back to Top

Adding Data with Report Parts

Report parts contain the datasets that they depend on. These datasets are built on shared data sources that are available on the report server. In Report Builder, when you add a report part to your report, the dependent datasets are added to your report, just as if you had added them manually. For example, a predefined chart contains a dataset. To see the data, preview the report.

Note

Report parts are self-contained report items that are stored on the report server and can be included in other reports. Use Report Builder to browse and select parts from the Report Part Gallery to add to your reports. Use Report Designer or Report Builder to save report parts for use in the Report Part Gallery. For more information, see Report Parts (Report Builder and SSRS) and Report Parts in Report Designer (SSRS) on the Web at microsoft.com.

Report parts, shared data sources, and shared datasets are defined in advance and saved on a report server. To access them, you must open Report Builder in server mode by connecting to the report server. You can use these to create new versions of your own if you have write permissions to the report server.

Arrow icon used with Back to Top link Back to Top

Queries and Query Designers

To specify which data you want from a data source, you build a query command. Each data source type provides a related query designer to help you build the query. The query designer can be graphical or text-based. In a graphical query designer, you view metadata that represents the data on the external data source and interactively build a query by dragging fields or entities to the query design surface. In a text-based query designer, you write or import queries in the query syntax that is supported by the external data source.

In the query designer, you can run the query to view example data and validate the query command syntax. Column names in the result set become the field names that you see in the Report Data pane. The result set must be a single set of rows and columns where the same number of values exist for each row of data. Multiple results sets from a single query are not supported. Ragged hierarchies, which do not have a constant number of columns and can produce different number of data values for each row, are not supported.

To run a query, you must have design time credentials. For more information, see Specify Credentials in Report Builder and Data Connections, Data Sources, and Connection Strings (SSRS).

Communication between a data extension and the external data source is handled by data providers. Support for query command syntax, query parameters, and data types for values in the result set is determined by each data provider. For more information, see the topic for the specific type of data extension and Query Designers (Report Builder).

Arrow icon used with Back to Top link Back to Top

How-To Topics

Add and Verify a Data Connection or Data Source (Report Builder and SSRS)

Create a Shared Dataset or Embedded Dataset (Report Builder and SSRS)

Add, Edit, Refresh Fields in the Report Data Pane (Report Builder and SSRS)

Build a Query in the Relational Query Designer (Report Builder and SSRS)

Show Hidden Datasets for Parameter Values for Multidimensional Data (Report Builder and SSRS)

Add a Filter to a Dataset (Report Builder and SSRS)

Set a No Data Message for a Data Region (Report Builder and SSRS)

Associate a Query Parameter with a Report Parameter (Report Builder and SSRS)

Define Parameters in the MDX Query Designer for Analysis Services (Report Builder and SSRS)

Arrow icon used with Back to Top link Back to Top

In This Section

Report Parts and Datasets in Report Builder

Data Connections, Data Sources, and Connection Strings in Report Builder

Specify Credentials in Report Builder

Report Embedded Datasets and Shared Datasets (Report Builder and SSRS)

Dataset Fields Collection (Report Builder and SSRS)

Arrow icon used with Back to Top link Back to Top

See Also

Concepts

Report Design View (Report Builder)

Report Authoring Concepts (Report Builder and SSRS)