dbTalk Databases Forums  

Porting DSO code over to AS2005

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


Discuss Porting DSO code over to AS2005 in the microsoft.public.sqlserver.olap forum.



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

Default Porting DSO code over to AS2005 - 11-08-2005 , 06:32 PM






We currently use DSO to process all of our AS2000 cubes.

I've been given the chance to mess with 2005 for a few weeks which means
I'll need to rewrite the code. What do I have to rewrite it in? Any tips in
rewriting it?

I apologize for the basic question!



Reply With Quote
  #2  
Old   
Jéjé
 
Posts: n/a

Default Re: Porting DSO code over to AS2005 - 11-08-2005 , 06:45 PM






you can easely schedule XMLA commands using the new SQL Agent.
(I think there is a command line tool to do the same job)

go to your AS2005 server, create some XMLA commands (try to use the
templates (view --> template explorer) or do the operation by saving it into
a script file instead of executing it)
you can save the command as an XMLA file or schedule it directly etc...

its easy and this works fine!
bye bye security, context and other monothread issues!!!
welcome XMLA commands!

good luck!

Jerome.


"Jesse O" <jesperzz (AT) hotmail (DOT) com> wrote

Quote:
We currently use DSO to process all of our AS2000 cubes.

I've been given the chance to mess with 2005 for a few weeks which means
I'll need to rewrite the code. What do I have to rewrite it in? Any tips
in rewriting it?

I apologize for the basic question!




Reply With Quote
  #3  
Old   
Vladimir Chtepa
 
Posts: n/a

Default Re: Porting DSO code over to AS2005 - 11-09-2005 , 02:44 AM



Hi,

Where can I get full list of the possible XMLA commands?

Thanks,
Vladimir

"Jéjé" <willgart (AT) BBBhotmailAAA (DOT) com> schrieb im Newsbeitrag
news:O1HSwbM5FHA.884 (AT) TK2MSFTNGP14 (DOT) phx.gbl...
Quote:
you can easely schedule XMLA commands using the new SQL Agent.
(I think there is a command line tool to do the same job)

go to your AS2005 server, create some XMLA commands (try to use the
templates (view --> template explorer) or do the operation by saving it
into a script file instead of executing it)
you can save the command as an XMLA file or schedule it directly etc...

its easy and this works fine!
bye bye security, context and other monothread issues!!!
welcome XMLA commands!

good luck!

Jerome.


"Jesse O" <jesperzz (AT) hotmail (DOT) com> wrote in message
news:%23yOXSUM5FHA.432 (AT) TK2MSFTNGP09 (DOT) phx.gbl...
We currently use DSO to process all of our AS2000 cubes.

I've been given the chance to mess with 2005 for a few weeks which means
I'll need to rewrite the code. What do I have to rewrite it in? Any tips
in rewriting it?

I apologize for the basic question!






Reply With Quote
  #4  
Old   
Prasad
 
Posts: n/a

Default Re: Porting DSO code over to AS2005 - 11-09-2005 , 11:39 AM



Hi Vladimir,

Here is a very good article from T. K. Anand - Microsoft Corporation that
has great deal of info on XMLA processing commands. Hope you find it helpful.
We can ask T.K for consolidated list of XMLA Commands and how to run these
through Integration Services. Unfortunately i do not have his email address.
Please let me know if you find any further info on this as i am also in the
same boat.

MSAS 2005 Processing Architecture:

http://msdn.microsoft.com/library/en...asprocarch.asp

Thanks,

Prasad.

Reply With Quote
  #5  
Old   
Denny Lee
 
Posts: n/a

Default Re: Porting DSO code over to AS2005 - 11-09-2005 , 11:49 AM



The XMLA reference can be found at:
http://msdn2.microsoft.com/en-us/lib...S,SQL.90).aspx

--
HTH!
Denny Lee
<dennyglee_at_hotmail_dot_com>

Blog at:: http://spaces.msn.com/members/denster/



"Vladimir Chtepa" <vc.nospam (AT) diacom-systemhaus (DOT) nospam.de> wrote

Quote:
Hi,

Where can I get full list of the possible XMLA commands?

Thanks,
Vladimir

"Jéjé" <willgart (AT) BBBhotmailAAA (DOT) com> schrieb im Newsbeitrag
news:O1HSwbM5FHA.884 (AT) TK2MSFTNGP14 (DOT) phx.gbl...
you can easely schedule XMLA commands using the new SQL Agent.
(I think there is a command line tool to do the same job)

go to your AS2005 server, create some XMLA commands (try to use the
templates (view --> template explorer) or do the operation by saving it
into a script file instead of executing it)
you can save the command as an XMLA file or schedule it directly etc...

its easy and this works fine!
bye bye security, context and other monothread issues!!!
welcome XMLA commands!

good luck!

Jerome.


"Jesse O" <jesperzz (AT) hotmail (DOT) com> wrote in message
news:%23yOXSUM5FHA.432 (AT) TK2MSFTNGP09 (DOT) phx.gbl...
We currently use DSO to process all of our AS2000 cubes.

I've been given the chance to mess with 2005 for a few weeks which means
I'll need to rewrite the code. What do I have to rewrite it in? Any tips
in rewriting it?

I apologize for the basic question!








Reply With Quote
  #6  
Old   
Denny Lee
 
Posts: n/a

Default Re: Porting DSO code over to AS2005 - 11-09-2005 , 11:52 AM



As Jerome had noted, if you are referring to the DSO portion to create OLAP
cubes, dimensions, objects, etc. - one of the best routes is to do the XMLA
route.

As well, if you are using DSO more for the processing of OLAP objects, note
that the AMO object model and DSO object model are quite similar. To get a
quick crash course on the AMO model, install the AMOAdventureWorks sample
with Yukon. In the C:\Program Files\Microsoft SQL
Server\90\Samples\Analysis Services\Programmability\AMO\DisplayObjectNames
(default location), there is the DisplayObjectNames sample that shows how
you can go through the AMO object model to view the database, cube,
dimension objects.

--
HTH!
Denny Lee
<dennyglee_at_hotmail_dot_com>

Blog at:: http://spaces.msn.com/members/denster/



"Jesse O" <jesperzz (AT) hotmail (DOT) com> wrote

Quote:
We currently use DSO to process all of our AS2000 cubes.

I've been given the chance to mess with 2005 for a few weeks which means
I'll need to rewrite the code. What do I have to rewrite it in? Any tips
in rewriting it?

I apologize for the basic question!




Reply With Quote
  #7  
Old   
Vladimir Chtepa
 
Posts: n/a

Default Re: Porting DSO code over to AS2005 - 11-09-2005 , 01:58 PM



Thaks, Denny

It's waht I need.

Vladimir Chtepa

"Denny Lee" <dennyglee (AT) hotmail (DOT) com> schrieb im Newsbeitrag
news:efrElXV5FHA.2364 (AT) TK2MSFTNGP12 (DOT) phx.gbl...
Quote:
The XMLA reference can be found at:
http://msdn2.microsoft.com/en-us/lib...S,SQL.90).aspx

--
HTH!
Denny Lee
dennyglee_at_hotmail_dot_com

Blog at:: http://spaces.msn.com/members/denster/



"Vladimir Chtepa" <vc.nospam (AT) diacom-systemhaus (DOT) nospam.de> wrote in message
news:OXrobnQ5FHA.1140 (AT) tk2msftngp13 (DOT) phx.gbl...
Hi,

Where can I get full list of the possible XMLA commands?

Thanks,
Vladimir

"Jéjé" <willgart (AT) BBBhotmailAAA (DOT) com> schrieb im Newsbeitrag
news:O1HSwbM5FHA.884 (AT) TK2MSFTNGP14 (DOT) phx.gbl...
you can easely schedule XMLA commands using the new SQL Agent.
(I think there is a command line tool to do the same job)

go to your AS2005 server, create some XMLA commands (try to use the
templates (view --> template explorer) or do the operation by saving it
into a script file instead of executing it)
you can save the command as an XMLA file or schedule it directly etc...

its easy and this works fine!
bye bye security, context and other monothread issues!!!
welcome XMLA commands!

good luck!

Jerome.


"Jesse O" <jesperzz (AT) hotmail (DOT) com> wrote in message
news:%23yOXSUM5FHA.432 (AT) TK2MSFTNGP09 (DOT) phx.gbl...
We currently use DSO to process all of our AS2000 cubes.

I've been given the chance to mess with 2005 for a few weeks which
means I'll need to rewrite the code. What do I have to rewrite it in?
Any tips in rewriting it?

I apologize for the basic question!










Reply With Quote
  #8  
Old   
Jesse O
 
Posts: n/a

Default Re: Porting DSO code over to AS2005 - 11-09-2005 , 04:44 PM



How does AMO interact with XMLA?

Basically my DSO code does more than create and process cubes. It pulls data
from status tables, inserts, ect.


"Vladimir Chtepa" <vc.nospam (AT) diacom-systemhaus (DOT) nospam.de> wrote

Quote:
Thaks, Denny

It's waht I need.

Vladimir Chtepa

"Denny Lee" <dennyglee (AT) hotmail (DOT) com> schrieb im Newsbeitrag
news:efrElXV5FHA.2364 (AT) TK2MSFTNGP12 (DOT) phx.gbl...
The XMLA reference can be found at:
http://msdn2.microsoft.com/en-us/lib...S,SQL.90).aspx

--
HTH!
Denny Lee
dennyglee_at_hotmail_dot_com

Blog at:: http://spaces.msn.com/members/denster/



"Vladimir Chtepa" <vc.nospam (AT) diacom-systemhaus (DOT) nospam.de> wrote in
message news:OXrobnQ5FHA.1140 (AT) tk2msftngp13 (DOT) phx.gbl...
Hi,

Where can I get full list of the possible XMLA commands?

Thanks,
Vladimir

"Jéjé" <willgart (AT) BBBhotmailAAA (DOT) com> schrieb im Newsbeitrag
news:O1HSwbM5FHA.884 (AT) TK2MSFTNGP14 (DOT) phx.gbl...
you can easely schedule XMLA commands using the new SQL Agent.
(I think there is a command line tool to do the same job)

go to your AS2005 server, create some XMLA commands (try to use the
templates (view --> template explorer) or do the operation by saving it
into a script file instead of executing it)
you can save the command as an XMLA file or schedule it directly etc...

its easy and this works fine!
bye bye security, context and other monothread issues!!!
welcome XMLA commands!

good luck!

Jerome.


"Jesse O" <jesperzz (AT) hotmail (DOT) com> wrote in message
news:%23yOXSUM5FHA.432 (AT) TK2MSFTNGP09 (DOT) phx.gbl...
We currently use DSO to process all of our AS2000 cubes.

I've been given the chance to mess with 2005 for a few weeks which
means I'll need to rewrite the code. What do I have to rewrite it in?
Any tips in rewriting it?

I apologize for the basic question!












Reply With Quote
  #9  
Old   
Denny Lee
 
Posts: n/a

Default Re: Porting DSO code over to AS2005 - 11-10-2005 , 07:25 PM



Actually, you can do quite a few things in both XMLA and in AMO. In
general, I find that I will build the OLAP objects via XMLA while process
and deploy the cubes (reading the XMLA file) using the AMO. There are
multiple ways of doing this so its not like you have to do it this way. But
in general, this is probably the easiest way.

A really good explanation is within Project REAL at:
http://www.microsoft.com/technet/pro.../realpart.mspx

--
HTH!
Denny Lee
<dennyglee_at_hotmail_dot_com>

Blog at:: http://spaces.msn.com/members/denster/



"Jesse O" <jesperzz (AT) hotmail (DOT) com> wrote

Quote:
How does AMO interact with XMLA?

Basically my DSO code does more than create and process cubes. It pulls
data from status tables, inserts, ect.


"Vladimir Chtepa" <vc.nospam (AT) diacom-systemhaus (DOT) nospam.de> wrote in message
news:uCqepfW5FHA.2364 (AT) TK2MSFTNGP12 (DOT) phx.gbl...
Thaks, Denny

It's waht I need.

Vladimir Chtepa

"Denny Lee" <dennyglee (AT) hotmail (DOT) com> schrieb im Newsbeitrag
news:efrElXV5FHA.2364 (AT) TK2MSFTNGP12 (DOT) phx.gbl...
The XMLA reference can be found at:
http://msdn2.microsoft.com/en-us/lib...S,SQL.90).aspx

--
HTH!
Denny Lee
dennyglee_at_hotmail_dot_com

Blog at:: http://spaces.msn.com/members/denster/



"Vladimir Chtepa" <vc.nospam (AT) diacom-systemhaus (DOT) nospam.de> wrote in
message news:OXrobnQ5FHA.1140 (AT) tk2msftngp13 (DOT) phx.gbl...
Hi,

Where can I get full list of the possible XMLA commands?

Thanks,
Vladimir

"Jéjé" <willgart (AT) BBBhotmailAAA (DOT) com> schrieb im Newsbeitrag
news:O1HSwbM5FHA.884 (AT) TK2MSFTNGP14 (DOT) phx.gbl...
you can easely schedule XMLA commands using the new SQL Agent.
(I think there is a command line tool to do the same job)

go to your AS2005 server, create some XMLA commands (try to use the
templates (view --> template explorer) or do the operation by saving
it into a script file instead of executing it)
you can save the command as an XMLA file or schedule it directly
etc...

its easy and this works fine!
bye bye security, context and other monothread issues!!!
welcome XMLA commands!

good luck!

Jerome.


"Jesse O" <jesperzz (AT) hotmail (DOT) com> wrote in message
news:%23yOXSUM5FHA.432 (AT) TK2MSFTNGP09 (DOT) phx.gbl...
We currently use DSO to process all of our AS2000 cubes.

I've been given the chance to mess with 2005 for a few weeks which
means I'll need to rewrite the code. What do I have to rewrite it in?
Any tips in rewriting it?

I apologize for the basic question!














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.