Showing posts with label regarding. Show all posts
Showing posts with label regarding. Show all posts

Friday, March 30, 2012

Reporting Services Advanced Features

I am looking to find more information regarding advanced filtering/report parameters available in SQL Server 2005 Reporting Services. From what I can see, the user can set values for each report parameter and the query defaults to "where x = (param 1) and y = (param 2)" etc. Is there a way that a user can pick parameters that structure a more complex where clause? For example, say I want to filter by all clients enrolled in all of these 3 service programs and have a dog or clients not enrolled in one of the following 3 care programs or clients who live in one of the following cities? So it would be like this:

where (((sp = 1 and sp = 2 and sp = 3) and animal = dog) or ((cp not in (1, 2, 3)) or city in (a, b, c, d)))

In addition, I am looking for more information regarding programmatic capabilities in Reporting Services. Can anyone point me to a good place for this information? I would like to know whether we could structure part of a query in VB.NET code and then pass this query to Reporting Services to join with the basic report query. Also, I would like to know Reporting Services' capability to interact with stored procedures.

In addition, is Reporting Services more for internal business reporting, or do companies add it onto their existing software package to sell to external customers? Does Reporting Services allow one report to be created, and then users (our customers) on different servers who use different databases to run the report by giving Reporting Services their credentials (database, SQL Server login, etc)?

Basically, I have just been following the tutorials on Microsoft's site, but they are all pretty basic so I haven't gotten a good feel for whether this product is good for advanced reporting needs.

Thanks!

Anonymous wrote:

I am looking to find more information regarding advanced filtering/report parameters available in SQL Server 2005 Reporting Services. From what I can see, the user can set values for each report parameter and the query defaults to "where x = (param 1) and y = (param 2)" etc. Is there a way that a user can pick parameters that structure a more complex where clause? For example, say I want to filter by all clients enrolled in all of these 3 service programs and have a dog or clients not enrolled in one of the following 3 care programs or clients who live in one of the following cities? So it would be like this:

where (((sp = 1 and sp = 2 and sp = 3) and animal = dog) or ((cp not in (1, 2, 3)) or city in (a, b, c, d)))

You can add pretty much any type of WHERE clause you'd like, since you control the query that is being issued. The default interface is best suited to modifying the value portion of a where clause, not adding new columns or changing operators. It is possible, but it is not as easy to implement.

Anonymous wrote:

In addition, is Reporting Services more for internal business reporting, or do companies add it onto their existing software package to sell to external customers? Does Reporting Services allow one report to be created, and then users (our customers) on different servers who use different databases to run the report by giving Reporting Services their credentials (database, SQL Server login, etc)?

It is used for both. Microsoft uses Reporting Services in the Dynamics products, for example.

|||Can you point me to some tutorials and/or articles that provide more details? For the query above, I want the user to specify the columns, values, and operators for the where clause and then be able to generate the query from their specifications.

How can Reporting Services be used to allow a user to log into our application, select the databases to work with, and then have the report generate according to user login?
|||

If your requirement is that the user by allowed to create their own where clauses, you might want to investigate Report Builder as an option. It provides all the GUI for accomplishes this, and can allow users to build their own reports on the fly. There are other third party tools that allow this as well.

The other path is to build your own front end to manage the creation of the where clause. It's more work, but you have full control. If you want to go this route, I'd recommend checking out a few books on Reporting Services, as many of them have chapters that deal with this to some degree.

Reporting Services Advanced Features

I am looking to find more information regarding advanced filtering/report parameters available in SQL Server 2005 Reporting Services. From what I can see, the user can set values for each report parameter and the query defaults to "where x = (param 1) and y = (param 2)" etc. Is there a way that a user can pick parameters that structure a more complex where clause? For example, say I want to filter by all clients enrolled in all of these 3 service programs and have a dog or clients not enrolled in one of the following 3 care programs or clients who live in one of the following cities? So it would be like this:

where (((sp = 1 and sp = 2 and sp = 3) and animal = dog) or ((cp not in (1, 2, 3)) or city in (a, b, c, d)))

In addition, I am looking for more information regarding programmatic capabilities in Reporting Services. Can anyone point me to a good place for this information? I would like to know whether we could structure part of a query in VB.NET code and then pass this query to Reporting Services to join with the basic report query. Also, I would like to know Reporting Services' capability to interact with stored procedures.

In addition, is Reporting Services more for internal business reporting, or do companies add it onto their existing software package to sell to external customers? Does Reporting Services allow one report to be created, and then users (our customers) on different servers who use different databases to run the report by giving Reporting Services their credentials (database, SQL Server login, etc)?

Basically, I have just been following the tutorials on Microsoft's site, but they are all pretty basic so I haven't gotten a good feel for whether this product is good for advanced reporting needs.

Thanks!

Anonymous wrote:

I am looking to find more information regarding advanced filtering/report parameters available in SQL Server 2005 Reporting Services. From what I can see, the user can set values for each report parameter and the query defaults to "where x = (param 1) and y = (param 2)" etc. Is there a way that a user can pick parameters that structure a more complex where clause? For example, say I want to filter by all clients enrolled in all of these 3 service programs and have a dog or clients not enrolled in one of the following 3 care programs or clients who live in one of the following cities? So it would be like this:

where (((sp = 1 and sp = 2 and sp = 3) and animal = dog) or ((cp not in (1, 2, 3)) or city in (a, b, c, d)))

You can add pretty much any type of WHERE clause you'd like, since you control the query that is being issued. The default interface is best suited to modifying the value portion of a where clause, not adding new columns or changing operators. It is possible, but it is not as easy to implement.

Anonymous wrote:

In addition, is Reporting Services more for internal business reporting, or do companies add it onto their existing software package to sell to external customers? Does Reporting Services allow one report to be created, and then users (our customers) on different servers who use different databases to run the report by giving Reporting Services their credentials (database, SQL Server login, etc)?

It is used for both. Microsoft uses Reporting Services in the Dynamics products, for example.

|||Can you point me to some tutorials and/or articles that provide more details? For the query above, I want the user to specify the columns, values, and operators for the where clause and then be able to generate the query from their specifications.

How can Reporting Services be used to allow a user to log into our application, select the databases to work with, and then have the report generate according to user login?|||

If your requirement is that the user by allowed to create their own where clauses, you might want to investigate Report Builder as an option. It provides all the GUI for accomplishes this, and can allow users to build their own reports on the fly. There are other third party tools that allow this as well.

The other path is to build your own front end to manage the creation of the where clause. It's more work, but you have full control. If you want to go this route, I'd recommend checking out a few books on Reporting Services, as many of them have chapters that deal with this to some degree.

Friday, March 23, 2012

Reporting Services & Sharepoint

Greetings all,
Can anyone point me to information regarding the integration of RS reports
into SP? I am wondering what the recommended practice has been so far, is
anyone even doing this? The product site for RS mentions SP, but I am
unable to find any good examples of this.
Anyone working with these two services in an enterprise environment? How
are you finding RS for analytical reporting?
thanks,
JDI believe that RS SP2 will have SharePoint integration. Some mention of it
is here -
http://weblogs.asp.net/Mat_Stephen/archive/2004/12/20/327323.aspx
SBC
"Joe Dirt" <veganopolis@.spam_is_for_jerks_gmail.com> wrote in message
news:pan.2004.10.21.10.53.10.847905@.spam_is_for_jerks_gmail.com...
> Greetings all,
> Can anyone point me to information regarding the integration of RS reports
> into SP? I am wondering what the recommended practice has been so far, is
> anyone even doing this? The product site for RS mentions SP, but I am
> unable to find any good examples of this.
> Anyone working with these two services in an enterprise environment? How
> are you finding RS for analytical reporting?
> thanks,
> JD
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.818 / Virus Database: 556 - Release Date: 12/17/2004|||You may also try googling "Reporting Services Web Parts" for this. Bryant
Likes and I have both done some work on this, but Bryant's components are
available for download, and I think he's added features .
--
Jay Nathan
http://www.jaynathan.com/blog
"c1sbc" <c1sbc@.comcast.net> wrote in message
news:uWAgsEq5EHA.2012@.TK2MSFTNGP15.phx.gbl...
> I believe that RS SP2 will have SharePoint integration. Some mention of it
> is here -
> http://weblogs.asp.net/Mat_Stephen/archive/2004/12/20/327323.aspx
> SBC
>
> "Joe Dirt" <veganopolis@.spam_is_for_jerks_gmail.com> wrote in message
> news:pan.2004.10.21.10.53.10.847905@.spam_is_for_jerks_gmail.com...
> > Greetings all,
> >
> > Can anyone point me to information regarding the integration of RS
reports
> > into SP? I am wondering what the recommended practice has been so far,
is
> > anyone even doing this? The product site for RS mentions SP, but I am
> > unable to find any good examples of this.
> >
> > Anyone working with these two services in an enterprise environment? How
> > are you finding RS for analytical reporting?
> >
> > thanks,
> > JD
>
> --
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.818 / Virus Database: 556 - Release Date: 12/17/2004
>

Wednesday, March 21, 2012

Reporting Services

Does anyone have any advise regarding implementing SQL Server Reporting Services on a seperate server from the SQL Server database?

1. Can this be done?

2. If it can be done what are the pros and cons?

Thank you.(1) yes it can be done.you would need to be able to establish a connection to the sql server though.

(2) am not xactly sure about the pros and cons..its just another way you can do it..maybe someone else here can give you more details about that..

hth

Wednesday, March 7, 2012

Reporting Service , VS Studio .NET 2003, and Business Intelligence

Hi,
I have a question regarding the business intelligence projects.
I have installed VS Studio .NEt 2003 and SQL Server 2000 as well as
the Reporting Service.
However I can't find "Business Intelligence Projects" when I want to
create a new project from Visual Studio.
1. How do I add the "Business Intelligence Projects" to the new project list
so I can create a new report?
2. Do I need SharePoint Portal Server because I didn't install it?
Thanks a lot for the reply.2) You don't need SharePoint to develop and view Reporting Services reports.
1) Run the Reporting Services installation on your development machine, but
only choose Client tools. Make sure you choose Report Designer when
installing. This will add the things you need to your VS.NET. You will find
Business Intelligence Projects at the top of the list of Project Types when
you start a New Project.
Kaisa M. Lindahl
"EAA" <EAA@.discussions.microsoft.com> wrote in message
news:FCBBCF65-2B0C-4448-8A3F-5B2E58CBB5B8@.microsoft.com...
> Hi,
> I have a question regarding the business intelligence projects.
> I have installed VS Studio .NEt 2003 and SQL Server 2000 as well as
> the Reporting Service.
> However I can't find "Business Intelligence Projects" when I want to
> create a new project from Visual Studio.
> 1. How do I add the "Business Intelligence Projects" to the new project
> list
> so I can create a new report?
> 2. Do I need SharePoint Portal Server because I didn't install it?
> Thanks a lot for the reply.