2012-02-13 28 views

回答

1

肯定的是,只要創建一個作業步驟,並在「類型」中選擇「SQL Server Analysis Services的命令」,然後鍵入您的刷新命令

僅供參考,這是一個例子:

<Batch xmlns="http://schemas.microsoft.com/analysisservices/2003/engine"> 
    <Parallel> 
    <Process xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ddl2="http://schemas.microsoft.com/analysisservices/2003/engine/2" xmlns:ddl2_2="http://schemas.microsoft.com/analysisservices/2003/engine/2/2"> 
     <Object> 
     <DatabaseID>DATABASE_NAME</DatabaseID> 
     <CubeID>CUBE</CubeID> 
     </Object> 
     <Type>ProcessFull</Type> 
     <WriteBackTableCreation>UseExisting</WriteBackTableCreation> 
    </Process> 
    </Parallel> 
</Batch> 

或偶數更簡單的方法,如果每24小時只需要刷新一次,則可以將主動緩存配置爲「計劃的Molap」

相關問題