![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have a web page on a web server that pulls data from a cube on another server that has SQL Server Analysis Serivces installed. When I try to establish the connection I get the following error: MicrosoftR OLE DB Provider for Analysis Services error '80004005' Database 'Backoffice' does not exist. /.../.../....asp, line 154 I have done some reading and tried several things already, but have only gotten a little bit closer. I have AS installed on the web server as well (I am moving the cubes from this computer to the other one to reduce the load on the server) and don't get any problems. Here is what I have done: Reinstalled SQL Server Analysis Services SP3 on the SQL Server Reinstalled SQL Server Analysis Services SP3 on the Web Server (this allowed me to start using the MDX Sample Application to query cubes on the SQL Server, which did not work before I did this) I've gotten it so that I can access the server from another computer using the MDX Sample Application and Microsoft Excel 2003. However, I still cannot get my web page to see the database. I am using an ado connection object to try to establish the connection, and then (the code never gets this far), I have an MDX statement that loads a recordset full of the data to be displayed. Here is the connection string: cn.Open "Data Source=SERVERNAME;Initial Catalog=Backoffice;Provider=msolap;" Can anyone help me out? Thanks! Chet |
#3
| |||
| |||
|
|
I am having the same problem anyone that can help with this would be greatly appreciated. "Chet Cromer" <chetsjunk (AT) ccrtc (DOT) com> wrote in message news:#1XGsbFkEHA.3696 (AT) TK2MSFTNGP15 (DOT) phx.gbl: I have a web page on a web server that pulls data from a cube on another server that has SQL Server Analysis Serivces installed. When I try to establish the connection I get the following error: MicrosoftR OLE DB Provider for Analysis Services error '80004005' Database 'Backoffice' does not exist. /.../.../....asp, line 154 I have done some reading and tried several things already, but have only gotten a little bit closer. I have AS installed on the web server as well (I am moving the cubes from this computer to the other one to reduce the load on the server) and don't get any problems. Here is what I have done: Reinstalled SQL Server Analysis Services SP3 on the SQL Server Reinstalled SQL Server Analysis Services SP3 on the Web Server (this allowed me to start using the MDX Sample Application to query cubes on the SQL Server, which did not work before I did this) I've gotten it so that I can access the server from another computer using the MDX Sample Application and Microsoft Excel 2003. However, I still cannot get my web page to see the database. I am using an ado connection object to try to establish the connection, and then (the code never gets this far), I have an MDX statement that loads a recordset full of the data to be displayed. Here is the connection string: cn.Open "Data Source=SERVERNAME;Initial Catalog=Backoffice;Provider=msolap;" Can anyone help me out? Thanks! Chet |
#4
| |||
| |||
|
|
I have a web page on a web server that pulls data from a cube on another server that has SQL Server Analysis Serivces installed. When I try to establish the connection I get the following error: Microsoft® OLE DB Provider for Analysis Services error '80004005' Database 'Backoffice' does not exist. /.../.../....asp, line 154 I have done some reading and tried several things already, but have only gotten a little bit closer. I have AS installed on the web server as well (I am moving the cubes from this computer to the other one to reduce the load on the server) and don't get any problems. Here is what I have done: Reinstalled SQL Server Analysis Services SP3 on the SQL Server Reinstalled SQL Server Analysis Services SP3 on the Web Server (this allowed me to start using the MDX Sample Application to query cubes on the SQL Server, which did not work before I did this) I've gotten it so that I can access the server from another computer using the MDX Sample Application and Microsoft Excel 2003. However, I still cannot get my web page to see the database. I am using an ado connection object to try to establish the connection, and then (the code never gets this far), I have an MDX statement that loads a recordset full of the data to be displayed. Here is the connection string: cn.Open "Data Source=SERVERNAME;Initial Catalog=Backoffice;Provider=msolap;" Can anyone help me out? Thanks! Chet |
#5
| |||
| |||
|
|
Chet, STOP reinstalling things. (we assume here that the OLAP Database Backoffice exists). What is the authentication method used by the asp page which is attempting to use your connection string. The format you are using will us the identity of the called (the asp page). Is this user allowed to access the database? look at your security setup. hope this helps, dlr "Chet Cromer" <chetsjunk (AT) ccrtc (DOT) com> wrote in message news:%231XGsbFkEHA.3696 (AT) TK2MSFTNGP15 (DOT) phx.gbl... I have a web page on a web server that pulls data from a cube on another server that has SQL Server Analysis Serivces installed. When I try to establish the connection I get the following error: MicrosoftR OLE DB Provider for Analysis Services error '80004005' Database 'Backoffice' does not exist. /.../.../....asp, line 154 I have done some reading and tried several things already, but have only gotten a little bit closer. I have AS installed on the web server as well (I am moving the cubes from this computer to the other one to reduce the load on the server) and don't get any problems. Here is what I have done: Reinstalled SQL Server Analysis Services SP3 on the SQL Server Reinstalled SQL Server Analysis Services SP3 on the Web Server (this allowed me to start using the MDX Sample Application to query cubes on the SQL Server, which did not work before I did this) I've gotten it so that I can access the server from another computer using the MDX Sample Application and Microsoft Excel 2003. However, I still cannot get my web page to see the database. I am using an ado connection object to try to establish the connection, and then (the code never gets this far), I have an MDX statement that loads a recordset full of the data to be displayed. Here is the connection string: cn.Open "Data Source=SERVERNAME;Initial Catalog=Backoffice;Provider=msolap;" Can anyone help me out? Thanks! Chet |
#6
| |||
| |||
|
|
Authentication methods are Anonymous and Basic. This page is part of an intranet site for a small company, and we control access to the pages through our own id/password list (do not utilize any windows security). The default user for Anonymous is the IUSR... account for the web server, which now that I think of it, would not have access to ANYTHING on the other server, since it's not a domain account. If I changed the default account to a domain account with access to the data on the server, would that do the trick? Thanks for your help... I'll stop reinstalling things now. ![]() Chet "Dennis Redfield" <dennis.redfield (AT) acadia-ins (DOT) com> wrote in message news:eU7Lp1bkEHA.3872 (AT) TK2MSFTNGP11 (DOT) phx.gbl: Chet, STOP reinstalling things. (we assume here that the OLAP Database Backoffice exists). What is the authentication method used by the asp page which is attempting to use your connection string. The format you are using will us the identity of the called (the asp page). Is this user allowed to access the database? look at your security setup. hope this helps, dlr "Chet Cromer" <chetsjunk (AT) ccrtc (DOT) com> wrote in message news:%231XGsbFkEHA.3696 (AT) TK2MSFTNGP15 (DOT) phx.gbl... I have a web page on a web server that pulls data from a cube on another server that has SQL Server Analysis Serivces installed. When I try to establish the connection I get the following error: MicrosoftR OLE DB Provider for Analysis Services error '80004005' Database 'Backoffice' does not exist. /.../.../....asp, line 154 I have done some reading and tried several things already, but have only gotten a little bit closer. I have AS installed on the web server as well (I am moving the cubes from this computer to the other one to reduce the load on the server) and don't get any problems. Here is what I have done: Reinstalled SQL Server Analysis Services SP3 on the SQL Server Reinstalled SQL Server Analysis Services SP3 on the Web Server (this allowed me to start using the MDX Sample Application to query cubes on the SQL Server, which did not work before I did this) I've gotten it so that I can access the server from another computer using the MDX Sample Application and Microsoft Excel 2003. However, I still cannot get my web page to see the database. I am using an ado connection object to try to establish the connection, and then (the code never gets this far), I have an MDX statement that loads a recordset full of the data to be displayed. Here is the connection string: cn.Open "Data Source=SERVERNAME;Initial Catalog=Backoffice;Provider=msolap;" Can anyone help me out? Thanks! Chet |
#7
| |||
| |||
|
|
Authentication methods are Anonymous and Basic. This page is part of an intranet site for a small company, and we control access to the pages through our own id/password list (do not utilize any windows security). The default user for Anonymous is the IUSR... account for the web server, which now that I think of it, would not have access to ANYTHING on the other server, since it's not a domain account. If I changed the default account to a domain account with access to the data on the server, would that do the trick? Thanks for your help... I'll stop reinstalling things now. ![]() Chet "Dennis Redfield" <dennis.redfield (AT) acadia-ins (DOT) com> wrote in message news:eU7Lp1bkEHA.3872 (AT) TK2MSFTNGP11 (DOT) phx.gbl: Chet, STOP reinstalling things. (we assume here that the OLAP Database Backoffice exists). What is the authentication method used by the asp page which is attempting to use your connection string. The format you are using will us the identity of the called (the asp page). Is this user allowed to access the database? look at your security setup. hope this helps, dlr "Chet Cromer" <chetsjunk (AT) ccrtc (DOT) com> wrote in message news:%231XGsbFkEHA.3696 (AT) TK2MSFTNGP15 (DOT) phx.gbl... I have a web page on a web server that pulls data from a cube on another server that has SQL Server Analysis Serivces installed. When I try to establish the connection I get the following error: MicrosoftR OLE DB Provider for Analysis Services error '80004005' Database 'Backoffice' does not exist. /.../.../....asp, line 154 I have done some reading and tried several things already, but have only gotten a little bit closer. I have AS installed on the web server as well (I am moving the cubes from this computer to the other one to reduce the load on the server) and don't get any problems. Here is what I have done: Reinstalled SQL Server Analysis Services SP3 on the SQL Server Reinstalled SQL Server Analysis Services SP3 on the Web Server (this allowed me to start using the MDX Sample Application to query cubes on the SQL Server, which did not work before I did this) I've gotten it so that I can access the server from another computer using the MDX Sample Application and Microsoft Excel 2003. However, I still cannot get my web page to see the database. I am using an ado connection object to try to establish the connection, and then (the code never gets this far), I have an MDX statement that loads a recordset full of the data to be displayed. Here is the connection string: cn.Open "Data Source=SERVERNAME;Initial Catalog=Backoffice;Provider=msolap;" Can anyone help me out? Thanks! Chet |
#8
| |||
| |||
|
|
Another question... Can I work the User ID and Password into the connection string instead of relying on the userid/password of the account being used to access the asp page? Assume anybody who can GET to this page is allowed to view it. Chet "Chet Cromer" <chetsjunk (AT) ccrtc (DOT) com> wrote in message news:eJzEXVckEHA.1152 (AT) TK2MSFTNGP11 (DOT) phx.gbl: Authentication methods are Anonymous and Basic. This page is part of an intranet site for a small company, and we control access to the pages through our own id/password list (do not utilize any windows security). The default user for Anonymous is the IUSR... account for the web server, which now that I think of it, would not have access to ANYTHING on the other server, since it's not a domain account. If I changed the default account to a domain account with access to the data on the server, would that do the trick? Thanks for your help... I'll stop reinstalling things now. ![]() Chet "Dennis Redfield" <dennis.redfield (AT) acadia-ins (DOT) com> wrote in message news:eU7Lp1bkEHA.3872 (AT) TK2MSFTNGP11 (DOT) phx.gbl: Chet, STOP reinstalling things. (we assume here that the OLAP Database Backoffice exists). What is the authentication method used by the asp page which is attempting to use your connection string. The format you are using will us the identity of the called (the asp page). Is this user allowed to access the database? look at your security setup. hope this helps, dlr "Chet Cromer" <chetsjunk (AT) ccrtc (DOT) com> wrote in message news:%231XGsbFkEHA.3696 (AT) TK2MSFTNGP15 (DOT) phx.gbl... I have a web page on a web server that pulls data from a cube on another server that has SQL Server Analysis Serivces installed. When I try to establish the connection I get the following error: MicrosoftR OLE DB Provider for Analysis Services error '80004005' Database 'Backoffice' does not exist. /.../.../....asp, line 154 I have done some reading and tried several things already, but have only gotten a little bit closer. I have AS installed on the web server as well (I am moving the cubes from this computer to the other one to reduce the load on the server) and don't get any problems. Here is what I have done: Reinstalled SQL Server Analysis Services SP3 on the SQL Server Reinstalled SQL Server Analysis Services SP3 on the Web Server (this allowed me to start using the MDX Sample Application to query cubes on the SQL Server, which did not work before I did this) I've gotten it so that I can access the server from another computer using the MDX Sample Application and Microsoft Excel 2003. However, I still cannot get my web page to see the database. I am using an ado connection object to try to establish the connection, and then (the code never gets this far), I have an MDX statement that loads a recordset full of the data to be displayed. Here is the connection string: cn.Open "Data Source=SERVERNAME;Initial Catalog=Backoffice;Provider=msolap;" Can anyone help me out? Thanks! Chet |
#9
| |||
| |||
|
|
Bingo. Set it up as a domain account. That will be the security context for accessing the Analysis server. |
#10
| |||
| |||
|
|
Perfect. Thanks for the assistance. If I remember, you can't access the Analysis Server over HTTP using SQL Server Standard edition, can you? I remember coming down this road before, I think. "Dave Wickert [MSFT]" <dwickert (AT) online (DOT) microsoft.com> wrote in message news:e1r6aPekEHA.556 (AT) tk2msftngp13 (DOT) phx.gbl: Bingo. Set it up as a domain account. That will be the security context for accessing the Analysis server. |
![]() |
| Thread Tools | |
| Display Modes | |
| |