![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have considerable VB6 code that connects to Analysis Services 2000 using both DSO and ADOMD 2.8. I am desperate to upgrade to SQL server and AS 2005 as soon as possible. However, my VB6 code is refusing to connect to Analysis Services 2005 (the latest pre-release). Some questions: 1.) how do I connect to Analysis Services 2005 with VB6? 2.) Will VB6 be able to utilize mdac 9? thank you in advance, |
#3
| |||
| |||
|
|
There have been other posts around this issue. You need to install the version of PTS that matches AS 2005. If you do a search in groups.google.com I am sure you would be able to find the details. VB6 should work find, I think all COM interfaces have been maintained as this is how Excel talks to AS and it works with 2005. -- Regards Darren Gosbell [MCSD] dgosbell_at_yahoo_dot_com Blog: http://www.geekswithblogs.net/darrengosbell In article <92FD52FD-700D-4667-ADC3-17ECFEF4DB65 (AT) microsoft (DOT) com>, PeterH (AT) discussions (DOT) microsoft.com says... I have considerable VB6 code that connects to Analysis Services 2000 using both DSO and ADOMD 2.8. I am desperate to upgrade to SQL server and AS 2005 as soon as possible. However, my VB6 code is refusing to connect to Analysis Services 2005 (the latest pre-release). Some questions: 1.) how do I connect to Analysis Services 2005 with VB6? 2.) Will VB6 be able to utilize mdac 9? thank you in advance, |
#4
| |||
| |||
|
|
Your application | +-------------------+ ADOMD | +-------------------+ PTS8 or PTS9 | +-------------------+ +------------------------------------------------ Analsyis |
|
hmm. My understanding of AS2005 is that there is no more pivot table services. The functionality has been moved to the server. Instead, mdac9 supposedly has a lightweight wrapper for ado and adomd that mimics PTS. BTW: I am able to connect and use data via: 1.) excel pivot table 2.) sql server mgt studio 2005 "Darren Gosbell" wrote: There have been other posts around this issue. You need to install the version of PTS that matches AS 2005. If you do a search in groups.google.com I am sure you would be able to find the details. VB6 should work find, I think all COM interfaces have been maintained as this is how Excel talks to AS and it works with 2005. -- Regards Darren Gosbell [MCSD] dgosbell_at_yahoo_dot_com Blog: http://www.geekswithblogs.net/darrengosbell In article <92FD52FD-700D-4667-ADC3-17ECFEF4DB65 (AT) microsoft (DOT) com>, PeterH (AT) discussions (DOT) microsoft.com says... I have considerable VB6 code that connects to Analysis Services 2000 using both DSO and ADOMD 2.8. I am desperate to upgrade to SQL server and AS 2005 as soon as possible. However, my VB6 code is refusing to connect to Analysis Services 2005 (the latest pre-release). Some questions: 1.) how do I connect to Analysis Services 2005 with VB6? 2.) Will VB6 be able to utilize mdac 9? thank you in advance, |
#5
| |||
| |||
|
#6
| |||
| |||
|
|
Yes, and No. PTS' official name is the OLEDB Provider for OLAP. PTS8 (aka the msolap.2 provider) was a thick client which used lots of resources, had a client-side cache, etc -- it only works against SQL2K. The new PTS9 (aka the msolap.3 provider) is needed to speak to SQL2K5. It is a thin layer upon XMLA and all query processing happens on the server. ADOMD talks to either of them the same once you say if you want msolap.2 or ..3 +-------------------+ | Your application | +-------------------+ | ADOMD | +-------------------+ | PTS8 or PTS9 | +-------------------+ | +------------------------------------------------ Analsyis Server -- Dave Wickert [MSFT] dwickert (AT) online (DOT) microsoft.com Program Manager BI Systems Team SQL BI Product Unit (Analysis Services) -- This posting is provided "AS IS" with no warranties, and confers no rights. "Peter H" <PeterH (AT) discussions (DOT) microsoft.com> wrote in message news:E20D27F3-17F3-4366-99BF-8A26D4E123BB (AT) microsoft (DOT) com... hmm. My understanding of AS2005 is that there is no more pivot table services. The functionality has been moved to the server. Instead, mdac9 supposedly has a lightweight wrapper for ado and adomd that mimics PTS. BTW: I am able to connect and use data via: 1.) excel pivot table 2.) sql server mgt studio 2005 "Darren Gosbell" wrote: There have been other posts around this issue. You need to install the version of PTS that matches AS 2005. If you do a search in groups.google.com I am sure you would be able to find the details. VB6 should work find, I think all COM interfaces have been maintained as this is how Excel talks to AS and it works with 2005. -- Regards Darren Gosbell [MCSD] dgosbell_at_yahoo_dot_com Blog: http://www.geekswithblogs.net/darrengosbell In article <92FD52FD-700D-4667-ADC3-17ECFEF4DB65 (AT) microsoft (DOT) com>, PeterH (AT) discussions (DOT) microsoft.com says... I have considerable VB6 code that connects to Analysis Services 2000 using both DSO and ADOMD 2.8. I am desperate to upgrade to SQL server and AS 2005 as soon as possible. However, my VB6 code is refusing to connect to Analysis Services 2005 (the latest pre-release). Some questions: 1.) how do I connect to Analysis Services 2005 with VB6? 2.) Will VB6 be able to utilize mdac 9? thank you in advance, |
#7
| |||
| |||
|
|
Yes, and No. PTS' official name is the OLEDB Provider for OLAP. PTS8 (aka the msolap.2 provider) was a thick client which used lots of resources, had a client-side cache, etc -- it only works against SQL2K. The new PTS9 (aka the msolap.3 provider) is needed to speak to SQL2K5. It is a thin layer upon XMLA and all query processing happens on the server. ADOMD talks to either of them the same once you say if you want msolap.2 or ..3 +-------------------+ | Your application | +-------------------+ | ADOMD | +-------------------+ | PTS8 or PTS9 | +-------------------+ | +------------------------------------------------ Analsyis Server -- Dave Wickert [MSFT] dwickert (AT) online (DOT) microsoft.com Program Manager BI Systems Team SQL BI Product Unit (Analysis Services) -- This posting is provided "AS IS" with no warranties, and confers no rights. "Peter H" <PeterH (AT) discussions (DOT) microsoft.com> wrote in message news:E20D27F3-17F3-4366-99BF-8A26D4E123BB (AT) microsoft (DOT) com... hmm. My understanding of AS2005 is that there is no more pivot table services. The functionality has been moved to the server. Instead, mdac9 supposedly has a lightweight wrapper for ado and adomd that mimics PTS. BTW: I am able to connect and use data via: 1.) excel pivot table 2.) sql server mgt studio 2005 "Darren Gosbell" wrote: There have been other posts around this issue. You need to install the version of PTS that matches AS 2005. If you do a search in groups.google.com I am sure you would be able to find the details. VB6 should work find, I think all COM interfaces have been maintained as this is how Excel talks to AS and it works with 2005. -- Regards Darren Gosbell [MCSD] dgosbell_at_yahoo_dot_com Blog: http://www.geekswithblogs.net/darrengosbell In article <92FD52FD-700D-4667-ADC3-17ECFEF4DB65 (AT) microsoft (DOT) com>, PeterH (AT) discussions (DOT) microsoft.com says... I have considerable VB6 code that connects to Analysis Services 2000 using both DSO and ADOMD 2.8. I am desperate to upgrade to SQL server and AS 2005 as soon as possible. However, my VB6 code is refusing to connect to Analysis Services 2005 (the latest pre-release). Some questions: 1.) how do I connect to Analysis Services 2005 with VB6? 2.) Will VB6 be able to utilize mdac 9? thank you in advance, |
![]() |
| Thread Tools | |
| Display Modes | |
| |