Showing posts with label implement. Show all posts
Showing posts with label implement. Show all posts

Thursday, March 22, 2012

3 tier architecture in Microsoft BI platform

hi,

i would like to check how to implement a 3 tier architecture in Microsoft BI platform.

Components needed for the BI solution:

- MSSQL2005 RDBMS

- MSSQL2005 Reporting Services

- MSSQL2005 Analysis Services

- MSSQL2005 SSIS

- PerformancePoint

- Sharepoint

Basically, i need to put the components into DB tier, App tier and Web tier.

where to i place each component?

thanks.

-

HY

Hello! This is my sugggestion:

SSIS and RDBMS(DB-Tier)

Analysis Services(App tier)

Reporting Services(Both App tier and Web tier)

Performancepoint and Sharepoint(Both App tier and Web tier)

|||

hi,

this is a dilemma i have been facing trying the architecture the solution for customers.

how to minimise licences cost in a 3 tier environment yet coming with a solution that can work and acceptable to customers.

Can this work?

- SSIS, RDBMS (DB)

- Analysis Service, Reporting Service (App)

- Performance Point, Sharepoint (Web)

Concerns:

a) Need IIS for App tier as need to install Reporting Services at App tier.

b) Will Sharepoint at the web tier be able interact with Reporting Service at the App tier?

thanks.

-

HY

|||

Hello! As an example Reporing Services runs as a windows services, store the rdl-files in SQL Server 2005 RDBMS and have a front end in the report manager.

Yes, you can have all applications installed on the same server.

In SQL Server sp2 you have the option to host Reporting Services in Sharepoint and not use the Report Manager.

HTH

Thomas Ivarsson

Sunday, March 11, 2012

2-Dimensional reports.

I have a number of reports to implement that have the following
characteristics:
1) column headers come from database tables - these are normally 4 to 10
items. These tables consist of 1 text field and a record-id field.
2) rows come from other tables according to specified selection criteria.
3) Row summaries based on some calculations are included in a last column
4) group and final calculations are required.
I've implemented one report using a multi-join SQL statement with a GROUP BY
statement and a CUBE statement, putting the results into a Grid report. This
worked except that the final total also shows details that I don't want on
the report. I've been able to blank out the rows for these entries, but
wasn't able to get rid of the rows themselves in the report, so that the
Final total follows a number of blank lines after the last Group-level
subtotal.
Is there any technique that would allow me to use a Table-report and fill in
the column headers from one DataSet in an extensible manner, and then fill in
the row data from a different dataset?You should be able to use aggregates from another data set in the headers of
a table. You say =First(Fields!Header.Value, "headerdataset").
--
Brian Welcker
Group Program Manager
SQL Server Reporting Services
This posting is provided "AS IS" with no warranties, and confers no rights.
"Altair" <Altair@.discussions.microsoft.com> wrote in message
news:6CA5C7DE-E2D2-4968-A070-9B47D2354518@.microsoft.com...
>I have a number of reports to implement that have the following
> characteristics:
> 1) column headers come from database tables - these are normally 4 to 10
> items. These tables consist of 1 text field and a record-id field.
> 2) rows come from other tables according to specified selection criteria.
> 3) Row summaries based on some calculations are included in a last column
> 4) group and final calculations are required.
> I've implemented one report using a multi-join SQL statement with a GROUP
> BY
> statement and a CUBE statement, putting the results into a Grid report.
> This
> worked except that the final total also shows details that I don't want on
> the report. I've been able to blank out the rows for these entries, but
> wasn't able to get rid of the rows themselves in the report, so that the
> Final total follows a number of blank lines after the last Group-level
> subtotal.
> Is there any technique that would allow me to use a Table-report and fill
> in
> the column headers from one DataSet in an extensible manner, and then fill
> in
> the row data from a different dataset?|||In trying your suggestion, I only get the first element from the dataset.
I've not been successfull, in trying to populate the rest of the column
headers with successive values from the header dataset. From what I've found
in the documentation, there are First(), and a Last() aggregate functions,
but nothing to allow you to iterate through the values.
"Brian Welcker [MSFT]" wrote:
> You should be able to use aggregates from another data set in the headers of
> a table. You say =First(Fields!Header.Value, "headerdataset").
> --
> Brian Welcker
> Group Program Manager
> SQL Server Reporting Services
> This posting is provided "AS IS" with no warranties, and confers no rights.
> "Altair" <Altair@.discussions.microsoft.com> wrote in message
> news:6CA5C7DE-E2D2-4968-A070-9B47D2354518@.microsoft.com...
> >I have a number of reports to implement that have the following
> > characteristics:
> > 1) column headers come from database tables - these are normally 4 to 10
> > items. These tables consist of 1 text field and a record-id field.
> > 2) rows come from other tables according to specified selection criteria.
> > 3) Row summaries based on some calculations are included in a last column
> > 4) group and final calculations are required.
> >
> > I've implemented one report using a multi-join SQL statement with a GROUP
> > BY
> > statement and a CUBE statement, putting the results into a Grid report.
> > This
> > worked except that the final total also shows details that I don't want on
> > the report. I've been able to blank out the rows for these entries, but
> > wasn't able to get rid of the rows themselves in the report, so that the
> > Final total follows a number of blank lines after the last Group-level
> > subtotal.
> >
> > Is there any technique that would allow me to use a Table-report and fill
> > in
> > the column headers from one DataSet in an extensible manner, and then fill
> > in
> > the row data from a different dataset?
>
>

Thursday, February 16, 2012

2005 Internet Replication

Is there any experience with SQL Server 2005 replication?
I want to do replication via Internet without implement VPN or physical
connection to SQL Server.
I think that this is imposible with SQL Server 2000 but watch a presentation
on TECHED which
says that this is possible with SQL Server 2005 ?
Grigoris,
I have set this up in a test environment and you're correct - using SQL
2005, it is now possible to use merge replication over HTTPS. Although you
need to be comfortable issuing certificates, maintaining virtual directories
etc, the guidelines in BOL are quite thorough and helpful. There is a
mistake in some documentation, and HTTP is not supported, so you have to
deal with certificates at some stage. Have a look at BOL for the full info,
and if you have any questions, probably the best place for the moment is the
beta newsgroups:
http://communities.microsoft.com/new...2005&slcid=us.
Rgds,
Paul Ibison SQL Server MVP, www.replicationanswers.com
(recommended sql server 2000 replication book:
http://www.nwsu.com/0974973602p.html)
|||I see. Well they (Microsoft) keep to do things complicated.
I mean you need IIS, sertificates, http and ftp not supported and so on...
Well this is step forward but..
"Paul Ibison" <Paul.Ibison@.Pygmalion.Com> wrote in message
news:eUAEsp0ZFHA.3280@.TK2MSFTNGP09.phx.gbl...
> Grigoris,
> I have set this up in a test environment and you're correct - using SQL
> 2005, it is now possible to use merge replication over HTTPS. Although you
> need to be comfortable issuing certificates, maintaining virtual
> directories etc, the guidelines in BOL are quite thorough and helpful.
> There is a mistake in some documentation, and HTTP is not supported, so
> you have to deal with certificates at some stage. Have a look at BOL for
> the full info, and if you have any questions, probably the best place for
> the moment is the beta newsgroups:
> http://communities.microsoft.com/new...2005&slcid=us.
> Rgds,
> Paul Ibison SQL Server MVP, www.replicationanswers.com
> (recommended sql server 2000 replication book:
> http://www.nwsu.com/0974973602p.html)
>