At the Start menu, select Programs> Microsoft SQL Server 2008 (2005 or any version)> SQL Server Business Intelligence Development Studio . Select File> New> Project and Report Server Project from the Business Intelligence Projects list , type a name for the project and click OK:
This is an 'empty' project, meaning nothing is available. If the Solution Explorer button is not available, select the Solution Explorer tab on the right or View> Solution Explorer, the next window will display the name of the project and all related components and objects.
Create shared original data set:
SSRS data sources can be 'embedded' in reports, or shared among multiple reports of a project. Depending on the type of report we will share this original data in different ways. For example, if the data source changes, or the entire database is moved to another server, the user only needs to change the source of the shared data, including dozens, hundreds of Separate reports are included within them.
To create a shared data source, within the Solution Explorer window, right-click and select Shared Data Sources> Add New Data Source . Name the database, noting that there should be no space here. Next, select the appropriate database category from the list, for example, here is SQL Server . Click Edit to fill in the details of the connection protocol. In the Connection Properties window, you enter the server name, identity information, and database. Then click Test Connection to check and OK when done.
Steps to create a report:
In the Solution Explorer , right-click Reports> Add New Report . In the Select the Data Source screen , select the database source just created in the previous step. Next, the Design the Query screen displays, allowing users to type query statements, or using the Query Builder function to build with a graphical interface. In this test, you rely on the following query code snippet:
SELECT P.Name,
ProductNumber,
Color,
ListPrice,
SC.Name [Category]
FROM Production.Product P
LEFT OUTER JOIN Production.ProductSubCategory SC
ON P.ProductSubCategoryID = SC.ProductSubCategoryID
WHERE P.ProductSubCategoryID IS NOT NULL
AND P.Color IS NOT NULL
ORDER BY Category, ListPrice ASC
On the Select the Report Type screen , select Tabular . Note that the Tabular- style format will look like a regular spreadsheet (or database table), with columns at the top of the page, and the number of lines depending on the amount of data in the dataset. Then click Next .
Next to Design the Table , add Color and Category to the Group section, add the remaining fields to the Details section, click Next .
Keep choosing Stepped at Choose the Table Layout and Next steps. Next, select the type for the report table and continue to Next . Finally, name (eg Products By Category ) and Finish :
In the Design tab, you can edit the report in several ways. For example:
Change the size of the report and the components with drag and drop.
Add other objects like photos, from the Toolbox toolbar.
Format characters and numbers (right-click and select Text Box Properties).
Add, move, delete, or change data attributes.
The above basic information is just the first step to introduce SSRS functions. For more details on SQL Server Reporting Services, please refer to the following link: SQL Server Books Online, SQL Server Books Online Tutorials, Microsoft Press - Stacia Misner and CodePlex. Good luck!