MattB
MattB

Reputation: 724

Looking for guidance with reporting in Business Intelligence Development Studio

I've been using Microsoft SQL Server Management Studio for multiple manual SQL queries for Excel reports up until this point. I'd now like to automate my processes further with Microsoft Business Intelligence Development Studio and generate reports using this rather than Excel.

Here's a rough overview of what I'm looking to do:

My access to the SQL servers is read-only. I'm not an administrator on the PC I have access to due to tight security.

I've played around with both SSIS packages and reports, but am not quite sure where to begin. I did create an SSIS package that combines the SQL server and Excel data using a Merge Join transformation, but am not quite sure what to do with the created package or if that package can even be used in a report.

Any guidance would be appreciated.

Thanks.

Upvotes: 0

Views: 537

Answers (1)

Raj More
Raj More

Reputation: 48034

Since you have BIDS, you have various options to send data to your users:

  • Create reports in SSRS
  • Export the SSRS report to Excel
  • Create SSIS packages to export CSV files that are read by Excel (I used this model to mimic the report data caching ability of SSRS)

The SQL Server Reporting Services book is a great place to start.

http://www.amazon.com/Microsoft-Server-2005-Reporting-Services/dp/0735622507

Upvotes: 1

Related Questions