Showing posts with label office. Show all posts
Showing posts with label office. Show all posts

Friday, March 30, 2012

Reporting Services to MS Word Questions

Hello

I am using SQL RS to export a report to HTML with Office Web Components and then by clicking File->Edit with Microsoft Word, I get the report into Word format.

The report displays fine in the HTML with Office Web Components format, however the content gets condensed to about 3 inches in width and the page margins are off when I get this report into Word.

Is there a way to fix this formatting issues in Word?

Also if anyone has a better idea of how to get data from SQL RS to MS Word, please feel free to comment.
Thanks in advance for the help!We currently do not have a native export into Microsoft Word format. It is high on our list for a post-SQL 2005 release. You might take a look at SoftArtisans, a 3rd party that provides this functionality, http://officewriter.softartisans.com/officewriter-250.aspx.|||Is there any estimated date when a patch or release of SQL RS will be available that exports directly to Word format? This effects our decision and how we will view costs.|||

We have the same dillemma...

We are currently evaluating another reporting tool due to couple of reasons:

1)Mainly because SQL Server RS does not support direct export to MS Word /RTF.

2) No support for export of nested data regions to Excel?

Any idea when these features will be available?

Thanks a lot,

Panna Balaji

|||

We have developed and just released Aspose.Words for Reporting Services that is currently the only solution available for exporting any RDL report to true DOC, RTF and WordML.

Reporting Services to MS Word Questions

Hello

I am using SQL RS to export a report to HTML with Office Web Components and then by clicking File->Edit with Microsoft Word, I get the report into Word format.

The report displays fine in the HTML with Office Web Components format, however the content gets condensed to about 3 inches in width and the page margins are off when I get this report into Word.

Is there a way to fix this formatting issues in Word?

Also if anyone has a better idea of how to get data from SQL RS to MS Word, please feel free to comment.
Thanks in advance for the help!We currently do not have a native export into Microsoft Word format. It is high on our list for a post-SQL 2005 release. You might take a look at SoftArtisans, a 3rd party that provides this functionality, http://officewriter.softartisans.com/officewriter-250.aspx.|||Is there any estimated date when a patch or release of SQL RS will be available that exports directly to Word format? This effects our decision and how we will view costs.|||

We have the same dillemma...

We are currently evaluating another reporting tool due to couple of reasons:

1)Mainly because SQL Server RS does not support direct export to MS Word /RTF.

2) No support for export of nested data regions to Excel?

Any idea when these features will be available?

Thanks a lot,

Panna Balaji

|||

We have developed and just released Aspose.Words for Reporting Services that is currently the only solution available for exporting any RDL report to true DOC, RTF and WordML.

Reporting Services to MS Word Questions

Hello

I am using SQL RS to export a report to HTML with Office Web Components and then by clicking File->Edit with Microsoft Word, I get the report into Word format.

The report displays fine in the HTML with Office Web Components format, however the content gets condensed to about 3 inches in width and the page margins are off when I get this report into Word.

Is there a way to fix this formatting issues in Word?

Also if anyone has a better idea of how to get data from SQL RS to MS Word, please feel free to comment.
Thanks in advance for the help!We currently do not have a native export into Microsoft Word format. It is high on our list for a post-SQL 2005 release. You might take a look at SoftArtisans, a 3rd party that provides this functionality, http://officewriter.softartisans.com/officewriter-250.aspx.|||Is there any estimated date when a patch or release of SQL RS will be available that exports directly to Word format? This effects our decision and how we will view costs.|||

We have the same dillemma...

We are currently evaluating another reporting tool due to couple of reasons:

1)Mainly because SQL Server RS does not support direct export to MS Word /RTF.

2) No support for export of nested data regions to Excel?

Any idea when these features will be available?

Thanks a lot,

Panna Balaji

|||

We have developed and just released Aspose.Words for Reporting Services that is currently the only solution available for exporting any RDL report to true DOC, RTF and WordML.

Monday, March 26, 2012

Reporting services question

Hi,
I created aspx page with reprotviewer. Report runs fine and I exported it to excel. (Windows 2000 Professional and MS Office 2002). When I try to open report with excel it gives me "Problem during load" message box with message: "Missing file: c:\styleshe
et.css". When I opened excel file with notepad, I found following line "<link rel=3DStylesheet href=3D"file:///c:\stylesheet.css">". I removed line and when I opened excel file again, file opened without message box.
What should I do to make sure that line mentioned above doesn't appear in file in the first place?
Thanks,
Vcitor
I have to assume that the stylesheet link is being placed in there from =
your aspx page or the report viewer. Can you see any way to not use =
this stylesheet (or any other style sheet for that matter)?
On a side note, I would be interested in seeing the code. I am =
beginning to use Reporting Services and it would be interesting to see =
how you were able to render reports within the web pages using the =
report viewer. Are you willing to post your code here or to a location =
like http://www.gotdotnet.com/ ?
--=20
Keith
"Victor" <anonymous@.discussions.microsoft.com> wrote in message =
news:84995B62-2670-47E8-B563-9904A0C466DE@.microsoft.com...
> Hi,
>=20
> I created aspx page with reprotviewer. Report runs fine and I exported =
it to excel. (Windows 2000 Professional and MS Office 2002). When I try =
to open report with excel it gives me "Problem during load" message box =
with message: "Missing file: c:\stylesheet.css". When I opened excel =
file with notepad, I found following line "<link rel=3D3DStylesheet =
href=3D3D"file:///c:\stylesheet.css">". I removed line and when I opened =
excel file again, file opened without message box.
> What should I do to make sure that line mentioned above doesn't appear =
in file in the first place?
>=20
> Thanks,
> Vcitor
|||I exported again to excel format and its working fine now. Reporting services have some issues which hopefully will be resolved in Service Pack 1.
Following is C# code which executed in code behind on button click:
protected Microsoft.Samples.ReportingServices.ReportViewer reprotViewer;
private void btnView_Click(object sender, System.EventArgs e){
string _dateFormat = "yyyy-MM-dd";
string _zeroTime = "+00%3a00%3a00";
string _fromDate = Convert.ToDateTime(lblFromDatetxt.Text).ToString(_ dateFormat) + _zeroTime;
string _toDate = Convert.ToDateTime(lblToDatetxt.Text).AddDays(1).T oString(_dateFormat) + _zeroTime;
string _reportName = "";
string _merchant = "";
reprotViewer.Visible = true;
if(ddlCIMSreports.SelectedItem.Text == "Summary"){
_reportName = "SalesSummary";
}
else{
_reportName = "SalesByMerchantDetail";
//Following assigns Vendor from dropdown list box
_merchant = "&vendor=" + ddlVendor.SelectedItem.Text.Replace(" ", "+");
}
reprotViewer.ServerUrl = "http://localhost/ReportServer";
//Following assigns report name and 3 parameters expected by report
reprotViewer.ReportPath = "%2MerchantSales%2f" + _reportName + _merchant + "&dateFrom=" + _fromDate + "&dateTo=" +_toDate;
}
I hope its helpfull.
Victor
|||Nice article:
http://odetocode.com/Articles/128.aspx
|||good info. thanks
--=20
Keith
"Victor" <anonymous@.discussions.microsoft.com> wrote in message =
news:9FF0148B-33D9-4FAB-933D-1FC357A0E774@.microsoft.com...
> Nice article:
>=20
> http://odetocode.com/Articles/128.aspx

Reporting services question

Hi,
I created aspx page with reprotviewer. Report runs fine and I exported it to
excel. (Windows 2000 Professional and MS Office 2002). When I try to open r
eport with excel it gives me "Problem during load" message box with message:
"Missing file: c:\styleshe
et.css". When I opened excel file with notepad, I found following line "<lin
k rel=3DStylesheet href=3D"file:///c:\stylesheet.css">". I removed line and
when I opened excel file again, file opened without message box.
What should I do to make sure that line mentioned above doesn't appear in fi
le in the first place?
Thanks,
VcitorI have to assume that the stylesheet link is being placed in there from =
your aspx page or the report viewer. Can you see any way to not use =
this stylesheet (or any other style sheet for that matter)?
On a side note, I would be interested in seeing the code. I am =
beginning to use Reporting Services and it would be interesting to see =
how you were able to render reports within the web pages using the =
report viewer. Are you willing to post your code here or to a location =
like http://www.gotdotnet.com/ ?
--=20
Keith
"Victor" <anonymous@.discussions.microsoft.com> wrote in message =
news:84995B62-2670-47E8-B563-9904A0C466DE@.microsoft.com...
> Hi,
>=20
> I created aspx page with reprotviewer. Report runs fine and I exported =
it to excel. (Windows 2000 Professional and MS Office 2002). When I try =
to open report with excel it gives me "Problem during load" message box =
with message: "Missing file: c:\stylesheet.css". When I opened excel =
file with notepad, I found following line "<link rel=3D3DStylesheet =
href=3D3D"file:///c:\stylesheet.css">". I removed line and when I opened =
excel file again, file opened without message box.
> What should I do to make sure that line mentioned above doesn't appear =
in file in the first place?
>=20
> Thanks,
> Vcitor|||I exported again to excel format and its working fine now. Reporting service
s have some issues which hopefully will be resolved in Service Pack 1.
Following is C# code which executed in code behind on button click:
protected Microsoft.Samples.ReportingServices.ReportViewer reprotViewer;
private void btnView_Click(object sender, System.EventArgs e){
string _dateFormat = "yyyy-MM-dd";
string _zeroTime = "+00%3a00%3a00";
string _fromDate = Convert.ToDateTime(lblFromDatetxt.Text).ToString(_dateFor
mat) + _zeroTime;
string _toDate = Convert.ToDateTime(lblToDatetxt.Text).AddDays(1).ToString(_
dateFormat) + _zeroTime;
string _reportName = "";
string _merchant = "";
reprotViewer.Visible = true;
if(ddlCIMSreports.SelectedItem.Text == "Summary"){
_reportName = "SalesSummary";
}
else{
_reportName = "SalesByMerchantDetail";
//Following assigns Vendor from dropdown list box
_merchant = "&vendor=" + ddlVendor.SelectedItem.Text.Replace(" ", "+");
}
reprotViewer.ServerUrl = "http://localhost/ReportServer";
//Following assigns report name and 3 parameters expected by report
reprotViewer.ReportPath = "%2MerchantSales%2f" + _reportName + _merchant + "
&dateFrom=" + _fromDate + "&dateTo=" +_toDate;
}
I hope its helpfull.
Victor|||Nice article:
http://odetocode.com/Articles/128.aspx|||good info. thanks
--=20
Keith
"Victor" <anonymous@.discussions.microsoft.com> wrote in message =
news:9FF0148B-33D9-4FAB-933D-1FC357A0E774@.microsoft.com...
> Nice article:
>=20
> http://odetocode.com/Articles/128.aspx

Friday, March 9, 2012

Reporting Services in small office - SQL Server license issue

I am developing a business databse system for a small engineering office,
well, not that small: 50 workstations and 6 server computers. SQL Server
(statndard version) is used as data store. I am planning to use SQL Server's
Reporting Services to produce data reports.
According to our work load, one SQL Server (standard, 1 processor license)
with properly configured hardware is definitely enough both to handle both
production data access and to host reporting serivces database. But as all
you know, reporting services also require IIS to serve the reports,
therefore IIS must be running on the server where Reporting services are
hosted. By the way, most psrt of our database app is ASP.NET app, running on
IIS of one of our server (intranet web server, no outside access, at least
for now).
But, our network administrator insists that web server and SQL Server must
run on seperate computers with the attitute "over my dead body if you want
to put web server and Sql Server on the same machine." So, the coices are:
1. A machine as web server, to server ASP.NET apps and Reporting Services.
Obviously, we need also put SQL Server on this computer to host only
Reporting Services databases. And another computer for another SQL Server to
hold production data. So, we need two SQL Server licenses. Expensive
solution
2. A computer as web server to host ASP.NET apps. Another computer to host
SQL Server, serving both production data and Reporting Services databases.
Obviously, IIS is also needed on this computer to serve the reports. Thus,
there are two IIS web server running on the network. The network admin's
theory is that the more web servers on the network, the more risk you take.
3. Consider the work load, put web server, SQL Server on the same computer
(we must "run over" the network admin's dead body to do that).
I'd love to go with option 1 to seperate production data with IIS, after
all, data is more important. But we just cannot justify the two SQL server
licenses (near $10000).
How do you set up reporting services in your office of similar size?We run many web sites internally and externally and have been using RS with
great success
The only issue you are going to face with 1 proc is that SQL RS is very
processor intensive as far as rendering goes...
Having IIS and SQL on the same server is a non-issue as long as both are
behind a firewall.
Basically, as long as you have the horsepower â'Option 1â' is no problem|||One thing that surprised me is that you have per processor license. If they
were using CALs then no extra CALs would be needed and all you would need is
1,000 about for the standard server license. I believe that a CAL would give
you access to both. I suggest talking to a MS person about licensing and see
if a processor license is really needed or if you could convert it to a
server license and CALs instead.
Otherwise, I think what you are seeing is typical with DBAs. I think DBAs
need to get over it. You can configure IIS to safely run on the same machine
and with IIS 6 (Windows 2003) I think you will find the stability is quite
high too.
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"Norman Yuan" <nobody@.nowhere.no> wrote in message
news:ORTIqCnyEHA.1188@.tk2msftngp13.phx.gbl...
>I am developing a business databse system for a small engineering office,
> well, not that small: 50 workstations and 6 server computers. SQL Server
> (statndard version) is used as data store. I am planning to use SQL
> Server's
> Reporting Services to produce data reports.
> According to our work load, one SQL Server (standard, 1 processor license)
> with properly configured hardware is definitely enough both to handle both
> production data access and to host reporting serivces database. But as all
> you know, reporting services also require IIS to serve the reports,
> therefore IIS must be running on the server where Reporting services are
> hosted. By the way, most psrt of our database app is ASP.NET app, running
> on
> IIS of one of our server (intranet web server, no outside access, at least
> for now).
> But, our network administrator insists that web server and SQL Server must
> run on seperate computers with the attitute "over my dead body if you want
> to put web server and Sql Server on the same machine." So, the coices are:
> 1. A machine as web server, to server ASP.NET apps and Reporting Services.
> Obviously, we need also put SQL Server on this computer to host only
> Reporting Services databases. And another computer for another SQL Server
> to
> hold production data. So, we need two SQL Server licenses. Expensive
> solution
> 2. A computer as web server to host ASP.NET apps. Another computer to host
> SQL Server, serving both production data and Reporting Services databases.
> Obviously, IIS is also needed on this computer to serve the reports. Thus,
> there are two IIS web server running on the network. The network admin's
> theory is that the more web servers on the network, the more risk you
> take.
> 3. Consider the work load, put web server, SQL Server on the same computer
> (we must "run over" the network admin's dead body to do that).
> I'd love to go with option 1 to seperate production data with IIS, after
> all, data is more important. But we just cannot justify the two SQL server
> licenses (near $10000).
> How do you set up reporting services in your office of similar size?
>|||To expand on Bruce's comment:
> You can configure IIS to safely run on the same machine and with IIS 6
> (Windows 2003) I think you will find the stability is quite high too.
Read Chapters 2 and 5 of our book "The Hitchhiker's Guide to SQL Server 2000
Reporting Services"
And take the following steps:
(i) Disable Integrated Security on the Report Server.
(ii) Install SSL on the IIS Web Site.
(iii) Configure the Report Server to use a Domain Account to Access the
Report Server Database.
(iv) Carefully consider the RSExec Role Membership Accounts
Peter Blackburn
Windows Server Systems - SQL Server MVP
Hitchhiker's Guide to SQL Server Reporting Services
http://www.sqlreportingservices.net
"Bruce L-C [MVP]" <bruce_lcNOSPAM@.hotmail.com> wrote in message
news:%23Qi0f3ryEHA.3368@.TK2MSFTNGP15.phx.gbl...
> One thing that surprised me is that you have per processor license. If
> they were using CALs then no extra CALs would be needed and all you would
> need is 1,000 about for the standard server license. I believe that a CAL
> would give you access to both. I suggest talking to a MS person about
> licensing and see if a processor license is really needed or if you could
> convert it to a server license and CALs instead.
> Otherwise, I think what you are seeing is typical with DBAs. I think DBAs
> need to get over it. You can configure IIS to safely run on the same
> machine and with IIS 6 (Windows 2003) I think you will find the stability
> is quite high too.
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
>
> "Norman Yuan" <nobody@.nowhere.no> wrote in message
> news:ORTIqCnyEHA.1188@.tk2msftngp13.phx.gbl...
>>I am developing a business databse system for a small engineering office,
>> well, not that small: 50 workstations and 6 server computers. SQL Server
>> (statndard version) is used as data store. I am planning to use SQL
>> Server's
>> Reporting Services to produce data reports.
>> According to our work load, one SQL Server (standard, 1 processor
>> license)
>> with properly configured hardware is definitely enough both to handle
>> both
>> production data access and to host reporting serivces database. But as
>> all
>> you know, reporting services also require IIS to serve the reports,
>> therefore IIS must be running on the server where Reporting services are
>> hosted. By the way, most psrt of our database app is ASP.NET app, running
>> on
>> IIS of one of our server (intranet web server, no outside access, at
>> least
>> for now).
>> But, our network administrator insists that web server and SQL Server
>> must
>> run on seperate computers with the attitute "over my dead body if you
>> want
>> to put web server and Sql Server on the same machine." So, the coices
>> are:
>> 1. A machine as web server, to server ASP.NET apps and Reporting
>> Services.
>> Obviously, we need also put SQL Server on this computer to host only
>> Reporting Services databases. And another computer for another SQL Server
>> to
>> hold production data. So, we need two SQL Server licenses. Expensive
>> solution
>> 2. A computer as web server to host ASP.NET apps. Another computer to
>> host
>> SQL Server, serving both production data and Reporting Services
>> databases.
>> Obviously, IIS is also needed on this computer to serve the reports.
>> Thus,
>> there are two IIS web server running on the network. The network admin's
>> theory is that the more web servers on the network, the more risk you
>> take.
>> 3. Consider the work load, put web server, SQL Server on the same
>> computer
>> (we must "run over" the network admin's dead body to do that).
>> I'd love to go with option 1 to seperate production data with IIS, after
>> all, data is more important. But we just cannot justify the two SQL
>> server
>> licenses (near $10000).
>> How do you set up reporting services in your office of similar size?
>>
>|||Thanks for the replies.
"Norman Yuan" <nobody@.nowhere.no> wrote in message
news:ORTIqCnyEHA.1188@.tk2msftngp13.phx.gbl...
> I am developing a business databse system for a small engineering office,
> well, not that small: 50 workstations and 6 server computers. SQL Server
> (statndard version) is used as data store. I am planning to use SQL
Server's
> Reporting Services to produce data reports.
> According to our work load, one SQL Server (standard, 1 processor license)
> with properly configured hardware is definitely enough both to handle both
> production data access and to host reporting serivces database. But as all
> you know, reporting services also require IIS to serve the reports,
> therefore IIS must be running on the server where Reporting services are
> hosted. By the way, most psrt of our database app is ASP.NET app, running
on
> IIS of one of our server (intranet web server, no outside access, at least
> for now).
> But, our network administrator insists that web server and SQL Server must
> run on seperate computers with the attitute "over my dead body if you want
> to put web server and Sql Server on the same machine." So, the coices are:
> 1. A machine as web server, to server ASP.NET apps and Reporting Services.
> Obviously, we need also put SQL Server on this computer to host only
> Reporting Services databases. And another computer for another SQL Server
to
> hold production data. So, we need two SQL Server licenses. Expensive
> solution
> 2. A computer as web server to host ASP.NET apps. Another computer to host
> SQL Server, serving both production data and Reporting Services databases.
> Obviously, IIS is also needed on this computer to serve the reports. Thus,
> there are two IIS web server running on the network. The network admin's
> theory is that the more web servers on the network, the more risk you
take.
> 3. Consider the work load, put web server, SQL Server on the same computer
> (we must "run over" the network admin's dead body to do that).
> I'd love to go with option 1 to seperate production data with IIS, after
> all, data is more important. But we just cannot justify the two SQL server
> licenses (near $10000).
> How do you set up reporting services in your office of similar size?
>|||Cost per CAL for SQL Server is $175, plus ~$800 for the server license, so to
use a CAL-based approach for a company with 50 users will run just under $10k
for a single instance of SQL Server ($175 * 50) + $800 = $9550 -- you would
then double that for separate instances of SQL Server 2000 and Reporting
Services if they are running on separate machines.
So the cheapest approach is definitely to go with the processor license,
since Microsoft says you need a license not only for each person who actually
runs a report, but anyone who views a report (even in hard-copy printed
format or as an email).
If this is only for internal use, though, and is not made publicly available
outside your company firewall, I don't see why it would be a security issue.
"Bruce L-C [MVP]" wrote:
> One thing that surprised me is that you have per processor license. If they
> were using CALs then no extra CALs would be needed and all you would need is
> 1,000 about for the standard server license. I believe that a CAL would give
> you access to both. I suggest talking to a MS person about licensing and see
> if a processor license is really needed or if you could convert it to a
> server license and CALs instead.
> Otherwise, I think what you are seeing is typical with DBAs. I think DBAs
> need to get over it. You can configure IIS to safely run on the same machine
> and with IIS 6 (Windows 2003) I think you will find the stability is quite
> high too.
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
>
> "Norman Yuan" <nobody@.nowhere.no> wrote in message
> news:ORTIqCnyEHA.1188@.tk2msftngp13.phx.gbl...
> >I am developing a business databse system for a small engineering office,
> > well, not that small: 50 workstations and 6 server computers. SQL Server
> > (statndard version) is used as data store. I am planning to use SQL
> > Server's
> > Reporting Services to produce data reports.
> >
> > According to our work load, one SQL Server (standard, 1 processor license)
> > with properly configured hardware is definitely enough both to handle both
> > production data access and to host reporting serivces database. But as all
> > you know, reporting services also require IIS to serve the reports,
> > therefore IIS must be running on the server where Reporting services are
> > hosted. By the way, most psrt of our database app is ASP.NET app, running
> > on
> > IIS of one of our server (intranet web server, no outside access, at least
> > for now).
> >
> > But, our network administrator insists that web server and SQL Server must
> > run on seperate computers with the attitute "over my dead body if you want
> > to put web server and Sql Server on the same machine." So, the coices are:
> >
> > 1. A machine as web server, to server ASP.NET apps and Reporting Services.
> > Obviously, we need also put SQL Server on this computer to host only
> > Reporting Services databases. And another computer for another SQL Server
> > to
> > hold production data. So, we need two SQL Server licenses. Expensive
> > solution
> >
> > 2. A computer as web server to host ASP.NET apps. Another computer to host
> > SQL Server, serving both production data and Reporting Services databases.
> > Obviously, IIS is also needed on this computer to serve the reports. Thus,
> > there are two IIS web server running on the network. The network admin's
> > theory is that the more web servers on the network, the more risk you
> > take.
> >
> > 3. Consider the work load, put web server, SQL Server on the same computer
> > (we must "run over" the network admin's dead body to do that).
> >
> > I'd love to go with option 1 to seperate production data with IIS, after
> > all, data is more important. But we just cannot justify the two SQL server
> > licenses (near $10000).
> >
> > How do you set up reporting services in your office of similar size?
> >
> >
>
>|||I thought the user CAL gives access to any server you have in the
organization. I work for a very large organization and for us, all I need to
do is buy additional server licenses but that might be a different licensing
scheme.
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"Joel Corra" <JoelCorra@.discussions.microsoft.com> wrote in message
news:35182241-F520-496D-A901-669ABB37DF57@.microsoft.com...
> Cost per CAL for SQL Server is $175, plus ~$800 for the server license, so
to
> use a CAL-based approach for a company with 50 users will run just under
$10k
> for a single instance of SQL Server ($175 * 50) + $800 = $9550 -- you
would
> then double that for separate instances of SQL Server 2000 and Reporting
> Services if they are running on separate machines.
> So the cheapest approach is definitely to go with the processor license,
> since Microsoft says you need a license not only for each person who
actually
> runs a report, but anyone who views a report (even in hard-copy printed
> format or as an email).
> If this is only for internal use, though, and is not made publicly
available
> outside your company firewall, I don't see why it would be a security
issue.
> "Bruce L-C [MVP]" wrote:
> > One thing that surprised me is that you have per processor license. If
they
> > were using CALs then no extra CALs would be needed and all you would
need is
> > 1,000 about for the standard server license. I believe that a CAL would
give
> > you access to both. I suggest talking to a MS person about licensing and
see
> > if a processor license is really needed or if you could convert it to a
> > server license and CALs instead.
> >
> > Otherwise, I think what you are seeing is typical with DBAs. I think
DBAs
> > need to get over it. You can configure IIS to safely run on the same
machine
> > and with IIS 6 (Windows 2003) I think you will find the stability is
quite
> > high too.
> >
> > --
> > Bruce Loehle-Conger
> > MVP SQL Server Reporting Services
> >
> >
> >
> > "Norman Yuan" <nobody@.nowhere.no> wrote in message
> > news:ORTIqCnyEHA.1188@.tk2msftngp13.phx.gbl...
> > >I am developing a business databse system for a small engineering
office,
> > > well, not that small: 50 workstations and 6 server computers. SQL
Server
> > > (statndard version) is used as data store. I am planning to use SQL
> > > Server's
> > > Reporting Services to produce data reports.
> > >
> > > According to our work load, one SQL Server (standard, 1 processor
license)
> > > with properly configured hardware is definitely enough both to handle
both
> > > production data access and to host reporting serivces database. But as
all
> > > you know, reporting services also require IIS to serve the reports,
> > > therefore IIS must be running on the server where Reporting services
are
> > > hosted. By the way, most psrt of our database app is ASP.NET app,
running
> > > on
> > > IIS of one of our server (intranet web server, no outside access, at
least
> > > for now).
> > >
> > > But, our network administrator insists that web server and SQL Server
must
> > > run on seperate computers with the attitute "over my dead body if you
want
> > > to put web server and Sql Server on the same machine." So, the coices
are:
> > >
> > > 1. A machine as web server, to server ASP.NET apps and Reporting
Services.
> > > Obviously, we need also put SQL Server on this computer to host only
> > > Reporting Services databases. And another computer for another SQL
Server
> > > to
> > > hold production data. So, we need two SQL Server licenses. Expensive
> > > solution
> > >
> > > 2. A computer as web server to host ASP.NET apps. Another computer to
host
> > > SQL Server, serving both production data and Reporting Services
databases.
> > > Obviously, IIS is also needed on this computer to serve the reports.
Thus,
> > > there are two IIS web server running on the network. The network
admin's
> > > theory is that the more web servers on the network, the more risk you
> > > take.
> > >
> > > 3. Consider the work load, put web server, SQL Server on the same
computer
> > > (we must "run over" the network admin's dead body to do that).
> > >
> > > I'd love to go with option 1 to seperate production data with IIS,
after
> > > all, data is more important. But we just cannot justify the two SQL
server
> > > licenses (near $10000).
> > >
> > > How do you set up reporting services in your office of similar size?
> > >
> > >
> >
> >
> >