Skip to main content
A newer version of this page is available. .

Bind a Report to a Union-Based Federated Data Source

  • 3 minutes to read

You can create a federated data source for your report to display data combined from several sources. This topic demonstrates how to use the Union and UnionAll operations to combine data into a single query.

Create a Report and Data Sources

  1. Create a new blank report.

  2. Add a SQL data source that provides information about customers. For instance, bind to the Northwind database’s Customers table. You can use the nwind.mdb file from the XtraReports installation (the default path is C:\Users\Public\Public Documents\DevExpress Demos 19.2\Components\Data\nwind.mdb).

  3. Add an Excel data source that provides information about suppliers.

Create Data Federation and Bind the Report to It

  1. Click the report’s smart tag, expand the DataSource property’s drop-down menu and click Add Report Data Source.

  2. In the invoked Data Source Wizard, select Data Federation and click Next.

  3. On the next page, click Add Query.

  4. In the invoked Query Builder (adapted to federated data sources), choose Union as a query type.

  5. Double-click the Customers table and the Excel data source. The two sources are added to the query.

    The query includes only fields that have identical names and types in the origin sources.

  1. Rename fields.

  2. Click OK to close the Query Builder. Click Finish to complete the Data Source Wizard.

The Wizard creates a new FederationDataSource that includes the single Customers query. This data source becomes available in the Report Explorer‘s Components node. The Field List reflects the data source structure.

The federated query’s default name equals to the first source’s name (the Customers table in this tutorial). You can rename this query in the Manage Queries dialog. To invoke it, right-click the data source in the Field List or Report Explorer and select Manage Queries in the context menu.

Once you rename the query, update the report’s DataMember property.

Design the Report Layout

  1. Click the report’s smart tag and select Design in Report Wizard.

  2. In the invoked Report Wizard, select Table Report and click Next.

  3. Select data fields to display in the report and click Finish. You can also go to the next page to continue layout creation.

The resulting layout looks similar to the following image:

Switch to the Preview tab to see the report document. It displays contacts from the Customers and Suppliers tables.

Tip

Duplicate contacts from the Customers and Suppliers tables are not removed in the Union All mode.

See Also