![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
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???? |
#3
| |||
| |||
|
|
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???? |
![]() |
| Thread Tools | |
| Display Modes | |
| |