Lesson 2: Specify connection information (Reporting Services)

In lesson 1, you added a Reporting Services paginated report to your Tutorial project.

In this lesson, you're going to define a data source, connection information the report uses to access data from a relational database or other sources.

For this report, you're going to add the AdventureWorks2022 sample database as your data source. This tutorial assumes that the database is located in the default instance of SQL Server Database Engine and installed on your local computer.

Set up a connection

  1. In the Report Data pane, select New > Data Source. If the Report Data pane isn't visible, then select View menu > Report Data.

    Screenshot of the Report Data pane with the Data Source option highlighted in the New menu.

    The Data Source Properties dialog box opens with the General section displayed.

    Screenshot of the Data Source Properties dialog box.

  2. In the Name text box, enter "AdventureWorks2022".

  3. Select the Embedded connection radio button.

  4. In the Type dropdown selection box, select "Microsoft SQL Server".

  5. In the Connection string text box, type the following string:

    Data source=localhost; initial catalog=AdventureWorks2022

    Note

    This connection string assumes that SQL Server Data Tools (SSDT), the report server, and the AdventureWorks2022 database are all installed on the local computer.

    Change the connection string and replace "localhost" with the name of your database server/instance if the assumption isn't true. If you're using SQL Server Express or a SQL Server named instance, you need to modify your connection string to include instance information. For example:

    Data source=localhost\SQLEXPRESS; initial catalog=AdventureWorks2022

    For more information about connection strings, see the Related content section.

  6. Select the Credentials tab, and under the section Change the credentials used to connect to the data source, select the Use Windows Authentication (integrated security) radio button.

  7. Select OK to complete the process.

Report Designer adds the data source AdventureWorks2022 to the Report Data pane.

Screenshot of the Report Data pane that highlights the AdventureWorks2016 data source.

Next step

In this lesson, you successfully defined a connection to the AdventureWorks2022 sample database. Continue with Lesson 3: Define a dataset for the table report (Reporting Services) to define a dataset for the report.