![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I am trying to show Olap cube to either ASP.NET or ASP web page. What is general Connection String script used? I searched thru Google and internet, but was not able to find any article really helpful directly. Thanks. Justin |
#3
| |||
| |||
|
|
Provider=msolap.2;data source=<server>;initial catalog=<foodmart 2000>;Integrated Security=SSPI;SSPI=Kerberos put msolap.3 for AS2005 and msolap.2 for AS2000 using only provider=msolap use the default provider (generally the most recent driver) SSPI=Kerberos is required when the web server and the OLAP server are on 2 diffrents servers (search for IIS + kerberos keywords on the MS website to learn more) if you are not sure about the string, create an excel file, connect it to your AS server using the pivottable, save as web page, edit the web page with notepad to see the connection string generated. "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:56088388-97DB-48E3-8613-38015FAD9B2C (AT) microsoft (DOT) com... I am trying to show Olap cube to either ASP.NET or ASP web page. What is general Connection String script used? I searched thru Google and internet, but was not able to find any article really helpful directly. Thanks. Justin |
#4
| |||
| |||
|
|
I am pretty novice when it comes to coding. I have created olap.asp under my root folder (under 'justin' folder). Here is a following code. %@ LANGUAGE="VBSCRIPT"% % Dim MyCon as ADODB.Connection Set MyCon = new ADODB.Connection MyCon.Open("provider=msolap; Datasource=localhost; Initial Catalog=FoodMart 2000; Connect Timeout=5") % And got this error (see bottom) Error Type: Microsoft VBScript compilation (0x800A0401) Expected end of statement /justin/olap1.asp, line 25, column 10 Dim MyCon as ADODB.Connection ---------^ Any suggestions? Appreciated. Justin "Jéjé" wrote: Provider=msolap.2;data source=<server>;initial catalog=<foodmart 2000>;Integrated Security=SSPI;SSPI=Kerberos put msolap.3 for AS2005 and msolap.2 for AS2000 using only provider=msolap use the default provider (generally the most recent driver) SSPI=Kerberos is required when the web server and the OLAP server are on 2 diffrents servers (search for IIS + kerberos keywords on the MS website to learn more) if you are not sure about the string, create an excel file, connect it to your AS server using the pivottable, save as web page, edit the web page with notepad to see the connection string generated. "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:56088388-97DB-48E3-8613-38015FAD9B2C (AT) microsoft (DOT) com... I am trying to show Olap cube to either ASP.NET or ASP web page. What is general Connection String script used? I searched thru Google and internet, but was not able to find any article really helpful directly. Thanks. Justin |
#5
| |||
| |||
|
#6
| |||
| |||
|
|
oohh... ASP is too old for me now ;-) first, switch to ASPX there is a free visual studio available to help you to develop your application. second, if you don't know how to play with your cube, maybe you have to focus on existing controls on the market like the snowflake (intellimerce) product. The price of a tool will be far less then a custom development! "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:1B914000-9C66-4722-870B-EDE49BF58DC0 (AT) microsoft (DOT) com... I am pretty novice when it comes to coding. I have created olap.asp under my root folder (under 'justin' folder). Here is a following code. %@ LANGUAGE="VBSCRIPT"% % Dim MyCon as ADODB.Connection Set MyCon = new ADODB.Connection MyCon.Open("provider=msolap; Datasource=localhost; Initial Catalog=FoodMart 2000; Connect Timeout=5") % And got this error (see bottom) Error Type: Microsoft VBScript compilation (0x800A0401) Expected end of statement /justin/olap1.asp, line 25, column 10 Dim MyCon as ADODB.Connection ---------^ Any suggestions? Appreciated. Justin "Jéjé" wrote: Provider=msolap.2;data source=<server>;initial catalog=<foodmart 2000>;Integrated Security=SSPI;SSPI=Kerberos put msolap.3 for AS2005 and msolap.2 for AS2000 using only provider=msolap use the default provider (generally the most recent driver) SSPI=Kerberos is required when the web server and the OLAP server are on 2 diffrents servers (search for IIS + kerberos keywords on the MS website to learn more) if you are not sure about the string, create an excel file, connect it to your AS server using the pivottable, save as web page, edit the web page with notepad to see the connection string generated. "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:56088388-97DB-48E3-8613-38015FAD9B2C (AT) microsoft (DOT) com... I am trying to show Olap cube to either ASP.NET or ASP web page. What is general Connection String script used? I searched thru Google and internet, but was not able to find any article really helpful directly. Thanks. Justin |
#7
| |||
| |||
|
|
Hi Jéjé, Do you have any advice how I should write ASP.NET script to display OLAP cube or pivot table that is generated? Thank you for any comment. Justin "Jéjé" wrote: oohh... ASP is too old for me now ;-) first, switch to ASPX there is a free visual studio available to help you to develop your application. second, if you don't know how to play with your cube, maybe you have to focus on existing controls on the market like the snowflake (intellimerce) product. The price of a tool will be far less then a custom development! "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:1B914000-9C66-4722-870B-EDE49BF58DC0 (AT) microsoft (DOT) com... I am pretty novice when it comes to coding. I have created olap.asp under my root folder (under 'justin' folder). Here is a following code. %@ LANGUAGE="VBSCRIPT"% % Dim MyCon as ADODB.Connection Set MyCon = new ADODB.Connection MyCon.Open("provider=msolap; Datasource=localhost; Initial Catalog=FoodMart 2000; Connect Timeout=5") % And got this error (see bottom) Error Type: Microsoft VBScript compilation (0x800A0401) Expected end of statement /justin/olap1.asp, line 25, column 10 Dim MyCon as ADODB.Connection ---------^ Any suggestions? Appreciated. Justin "Jéjé" wrote: Provider=msolap.2;data source=<server>;initial catalog=<foodmart 2000>;Integrated Security=SSPI;SSPI=Kerberos put msolap.3 for AS2005 and msolap.2 for AS2000 using only provider=msolap use the default provider (generally the most recent driver) SSPI=Kerberos is required when the web server and the OLAP server are on 2 diffrents servers (search for IIS + kerberos keywords on the MS website to learn more) if you are not sure about the string, create an excel file, connect it to your AS server using the pivottable, save as web page, edit the web page with notepad to see the connection string generated. "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:56088388-97DB-48E3-8613-38015FAD9B2C (AT) microsoft (DOT) com... I am trying to show Olap cube to either ASP.NET or ASP web page. What is general Connection String script used? I searched thru Google and internet, but was not able to find any article really helpful directly. Thanks. Justin |
#8
| |||
| |||
|
|
sample application: http://www.sqlserveranalysisservices.com/default.htm but you can found some samples on the web. Displaying is not so complex... but if you want to allow the user to play with the data (like he can in the pivottable) this is another level of work! "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:2E9E5ADA-4A48-4F43-B446-EFB82D8311FF (AT) microsoft (DOT) com... Hi Jéjé, Do you have any advice how I should write ASP.NET script to display OLAP cube or pivot table that is generated? Thank you for any comment. Justin "Jéjé" wrote: oohh... ASP is too old for me now ;-) first, switch to ASPX there is a free visual studio available to help you to develop your application. second, if you don't know how to play with your cube, maybe you have to focus on existing controls on the market like the snowflake (intellimerce) product. The price of a tool will be far less then a custom development! "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:1B914000-9C66-4722-870B-EDE49BF58DC0 (AT) microsoft (DOT) com... I am pretty novice when it comes to coding. I have created olap.asp under my root folder (under 'justin' folder). Here is a following code. %@ LANGUAGE="VBSCRIPT"% % Dim MyCon as ADODB.Connection Set MyCon = new ADODB.Connection MyCon.Open("provider=msolap; Datasource=localhost; Initial Catalog=FoodMart 2000; Connect Timeout=5") % And got this error (see bottom) Error Type: Microsoft VBScript compilation (0x800A0401) Expected end of statement /justin/olap1.asp, line 25, column 10 Dim MyCon as ADODB.Connection ---------^ Any suggestions? Appreciated. Justin "Jéjé" wrote: Provider=msolap.2;data source=<server>;initial catalog=<foodmart 2000>;Integrated Security=SSPI;SSPI=Kerberos put msolap.3 for AS2005 and msolap.2 for AS2000 using only provider=msolap use the default provider (generally the most recent driver) SSPI=Kerberos is required when the web server and the OLAP server are on 2 diffrents servers (search for IIS + kerberos keywords on the MS website to learn more) if you are not sure about the string, create an excel file, connect it to your AS server using the pivottable, save as web page, edit the web page with notepad to see the connection string generated. "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:56088388-97DB-48E3-8613-38015FAD9B2C (AT) microsoft (DOT) com... I am trying to show Olap cube to either ASP.NET or ASP web page. What is general Connection String script used? I searched thru Google and internet, but was not able to find any article really helpful directly. Thanks. Justin |
#9
| |||
| |||
|
|
Thank you so much Jéjé. I will take a look at the site on Monday. I am trying to get some sample of code to display Olap cubes using ASP.NET. Is there any good reference website or publications I could look into? I would appreciate for any comment. Thanks. Justin "Jéjé" wrote: sample application: http://www.sqlserveranalysisservices.com/default.htm but you can found some samples on the web. Displaying is not so complex... but if you want to allow the user to play with the data (like he can in the pivottable) this is another level of work! "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:2E9E5ADA-4A48-4F43-B446-EFB82D8311FF (AT) microsoft (DOT) com... Hi Jéjé, Do you have any advice how I should write ASP.NET script to display OLAP cube or pivot table that is generated? Thank you for any comment. Justin "Jéjé" wrote: oohh... ASP is too old for me now ;-) first, switch to ASPX there is a free visual studio available to help you to develop your application. second, if you don't know how to play with your cube, maybe you haveto focus on existing controls on the market like the snowflake (intellimerce) product. The price of a tool will be far less then a custom development! "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:1B914000-9C66-4722-870B-EDE49BF58DC0 (AT) microsoft (DOT) com... I am pretty novice when it comes to coding. |
#10
| |||
| |||
|
|
Provider=msolap.2;data source=<server>;initial catalog=<foodmart 2000>;Integrated Security=SSPI;SSPI=Kerberos put msolap.3 for AS2005 and msolap.2 for AS2000 using only provider=msolap use the default provider (generally the most recent driver) SSPI=Kerberos is required when the web server and the OLAP server are on 2 diffrents servers (search for IIS + kerberos keywords on the MS website to learn more) if you are not sure about the string, create an excel file, connect it to your AS server using the pivottable, save as web page, edit the web page with notepad to see the connection string generated. "Justin Doh" <JustinDoh (AT) discussions (DOT) microsoft.com> wrote in message news:56088388-97DB-48E3-8613-38015FAD9B2C (AT) microsoft (DOT) com... I am trying to show Olap cube to either ASP.NET or ASP web page. What is general Connection String script used? I searched thru Google and internet, but was not able to find any article really helpful directly. Thanks. Justin |
![]() |
| Thread Tools | |
| Display Modes | |
| |