dbTalk Databases Forums  

processFull

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


Discuss processFull in the microsoft.public.sqlserver.olap forum.



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

Default processFull - 03-09-2006 , 12:19 PM






I have a .vbs script that uses DSO object to process the cube:

Set dsoDB = CreateObject("DSO.MDStore")
Set dsoServer = CreateObject("DSO.Server")
dsoServer.Connect "olap_server"
Set dsoDB = dsoServer.MDStores("olap db name")
dsoDB.Process processFull

Error: Variable is undefined: 'processFull'
Code: 800A01F4
Source: Microsoft VBScript runtime error

What am I missing here? If I don't use the "processFull", the vbs seems to
be working????

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

Default Re: processFull - 03-09-2006 , 12:38 PM






replace processFull by 1
which is the equivalent value
processFull is an "alias" not available directly in VBS

or you can add in top of the script:

Const processFull = 1

Look in the BOL to find all the values for each process type.


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

Quote:
I have a .vbs script that uses DSO object to process the cube:

Set dsoDB = CreateObject("DSO.MDStore")
Set dsoServer = CreateObject("DSO.Server")
dsoServer.Connect "olap_server"
Set dsoDB = dsoServer.MDStores("olap db name")
dsoDB.Process processFull

Error: Variable is undefined: 'processFull'
Code: 800A01F4
Source: Microsoft VBScript runtime error

What am I missing here? If I don't use the "processFull", the vbs seems to
be working????



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

Default Re: processFull - 03-09-2006 , 01:00 PM



Thank you.

"Jéjé" wrote:

Quote:
replace processFull by 1
which is the equivalent value
processFull is an "alias" not available directly in VBS

or you can add in top of the script:

Const processFull = 1

Look in the BOL to find all the values for each process type.


"christy" <christy (AT) discussions (DOT) microsoft.com> wrote in message
news:04D8CF48-1BC2-47CB-B3D4-C7B259BB663E (AT) microsoft (DOT) com...
I have a .vbs script that uses DSO object to process the cube:

Set dsoDB = CreateObject("DSO.MDStore")
Set dsoServer = CreateObject("DSO.Server")
dsoServer.Connect "olap_server"
Set dsoDB = dsoServer.MDStores("olap db name")
dsoDB.Process processFull

Error: Variable is undefined: 'processFull'
Code: 800A01F4
Source: Microsoft VBScript runtime error

What am I missing here? If I don't use the "processFull", the vbs seems to
be working????




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.