Dimension.Process(processRefreshData) give a dump in OLAP Database -
04-21-2005
, 07:06 AM
We're trying to do the IncrementalUpdate of Analysis Services by code using
the DSO object (ADOMD components not ADOMD.NET).
The problem is that occasionally this causes an internal error of the
Database.
The code is like that:
DSODatabase.BeginTrans()
DSODimension.Process(DSO.ProcessTypes.processRefre shData)
For Each dsocube As DSO.MDStore In DSODatabase.MDStores
If dsocube.Dimensions.Find(.Name) Then
dsocube.Process(DSO.ProcessTypes.processFullReaggr egate)
End If
Next
DSODatabase.CommitTrans()
DSODimension.Update()
DSODatabase.Update()
It seems to me ut is conformant with what micorsoft says in
http://support.microsoft.com/default.aspx/kb/325289
Some one can give me some help and example?
Thank You All
Andrea |