dbTalk Databases Forums  

OLAP Cube Setup/Installation

microsoft.public.sqlserver.olap microsoft.public.sqlserver.olap


Discuss OLAP Cube Setup/Installation in the microsoft.public.sqlserver.olap forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
da
 
Posts: n/a

Default OLAP Cube Setup/Installation - 10-01-2004 , 10:30 AM






We're creating an installation for a web based product and would like to
include a sample OLAP cube for use with the application. Currently, we are
using msmdarch.exe to install a CAB file with the cube to a given server.
We would more control over the installation - being able to modify the
datasource, etc. Is there any way to accomplish this programatically?
(i.e., similar to what you might to when installing/setting up a database on
a remote server using transact sql from within the setup app?).

Thanks,

-- da



Reply With Quote
  #2  
Old   
Jamie
 
Posts: n/a

Default RE: OLAP Cube Setup/Installation - 10-03-2004 , 03:01 PM






Microsoft provide a COM API called Decision Support Objects (DSO) that can be
used to programatically manipulate your cube struture. All you need is a
COM-compliant language - VB Script works fine!

HTH

Jamie Thomson
http:///www.conchango.com


"da" wrote:

Quote:
We're creating an installation for a web based product and would like to
include a sample OLAP cube for use with the application. Currently, we are
using msmdarch.exe to install a CAB file with the cube to a given server.
We would more control over the installation - being able to modify the
datasource, etc. Is there any way to accomplish this programatically?
(i.e., similar to what you might to when installing/setting up a database on
a remote server using transact sql from within the setup app?).

Thanks,

-- da




Reply With Quote
  #3  
Old   
da
 
Posts: n/a

Default Re: OLAP Cube Setup/Installation - 10-06-2004 , 11:30 AM



Can the CUBE be manipulated remotely with DSO?

"Jamie" <Jamie (AT) discussions (DOT) microsoft.com> wrote

Quote:
Microsoft provide a COM API called Decision Support Objects (DSO) that can
be
used to programatically manipulate your cube struture. All you need is a
COM-compliant language - VB Script works fine!

HTH

Jamie Thomson
http:///www.conchango.com


"da" wrote:

We're creating an installation for a web based product and would like to
include a sample OLAP cube for use with the application. Currently, we
are
using msmdarch.exe to install a CAB file with the cube to a given
server.
We would more control over the installation - being able to modify the
datasource, etc. Is there any way to accomplish this programatically?
(i.e., similar to what you might to when installing/setting up a
database on
a remote server using transact sql from within the setup app?).

Thanks,

-- da






Reply With Quote
  #4  
Old   
Jamie Thomson
 
Posts: n/a

Default Re: OLAP Cube Setup/Installation - 10-06-2004 , 02:55 PM



Yes.

"da" wrote:

Quote:
Can the CUBE be manipulated remotely with DSO?

"Jamie" <Jamie (AT) discussions (DOT) microsoft.com> wrote in message
news:3EFEFCD8-BAD3-42E9-B4D6-F10A2C05D7F8 (AT) microsoft (DOT) com...
Microsoft provide a COM API called Decision Support Objects (DSO) that can
be
used to programatically manipulate your cube struture. All you need is a
COM-compliant language - VB Script works fine!

HTH

Jamie Thomson
http:///www.conchango.com


"da" wrote:

We're creating an installation for a web based product and would like to
include a sample OLAP cube for use with the application. Currently, we
are
using msmdarch.exe to install a CAB file with the cube to a given
server.
We would more control over the installation - being able to modify the
datasource, etc. Is there any way to accomplish this programatically?
(i.e., similar to what you might to when installing/setting up a
database on
a remote server using transact sql from within the setup app?).

Thanks,

-- da







Reply With Quote
  #5  
Old   
da
 
Posts: n/a

Default Re: OLAP Cube Setup/Installation - 10-18-2004 , 02:55 PM



Jamie,

We've finally gotten around to working with DSO to modify the datasource in
our cube after installation. We're attempting to change the connection
string, but we get back an error something to the effect: "Operation is not
allowed while object is open".

Not sure why it would be "open" since all we're doing is accessing the data
source string in the connection. Is there any sample code that you know of
that we could look at?

Thanks,

-- da


"Jamie Thomson" <jamie.thomson (AT) donotspam (DOT) conchango.com> wrote

Quote:
Yes.

"da" wrote:

Can the CUBE be manipulated remotely with DSO?

"Jamie" <Jamie (AT) discussions (DOT) microsoft.com> wrote in message
news:3EFEFCD8-BAD3-42E9-B4D6-F10A2C05D7F8 (AT) microsoft (DOT) com...
Microsoft provide a COM API called Decision Support Objects (DSO) that
can
be
used to programatically manipulate your cube struture. All you need is
a
COM-compliant language - VB Script works fine!

HTH

Jamie Thomson
http:///www.conchango.com


"da" wrote:

We're creating an installation for a web based product and would
like to
include a sample OLAP cube for use with the application. Currently,
we
are
using msmdarch.exe to install a CAB file with the cube to a given
server.
We would more control over the installation - being able to modify
the
datasource, etc. Is there any way to accomplish this
programatically?
(i.e., similar to what you might to when installing/setting up a
database on
a remote server using transact sql from within the setup app?).

Thanks,

-- da









Reply With Quote
  #6  
Old   
da
 
Posts: n/a

Default Re: OLAP Cube Setup/Installation - 10-18-2004 , 03:04 PM



OK - I just closed the ADO connection prior to setting the string.

Now... how do I managed this so that the string is saved, i.e., such that
next time I visit the Cube data source in the Analytical Server manager I
see the values that I set?

- da

"Jamie Thomson" <jamie.thomson (AT) donotspam (DOT) conchango.com> wrote

Quote:
Yes.

"da" wrote:

Can the CUBE be manipulated remotely with DSO?

"Jamie" <Jamie (AT) discussions (DOT) microsoft.com> wrote in message
news:3EFEFCD8-BAD3-42E9-B4D6-F10A2C05D7F8 (AT) microsoft (DOT) com...
Microsoft provide a COM API called Decision Support Objects (DSO) that
can
be
used to programatically manipulate your cube struture. All you need is
a
COM-compliant language - VB Script works fine!

HTH

Jamie Thomson
http:///www.conchango.com


"da" wrote:

We're creating an installation for a web based product and would
like to
include a sample OLAP cube for use with the application. Currently,
we
are
using msmdarch.exe to install a CAB file with the cube to a given
server.
We would more control over the installation - being able to modify
the
datasource, etc. Is there any way to accomplish this
programatically?
(i.e., similar to what you might to when installing/setting up a
database on
a remote server using transact sql from within the setup app?).

Thanks,

-- da









Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.