Skip to main content

Processing Olap Cubes in axapta

Processing Olap Cubes Manually
Go to ..All Programs > Microsoft SQL Server 2005 > Click on SQL Server Management studio
Connect with Analysis Services

1. Process Full Database
Databases > Right click on OLAP Database > Click on Process

2. Process Single cube
Databases > Olap database > Cubes > Right click on single cube > Process

After click on process, “Process database” window will appear. Set Process Options as Process Full.
Click on OK, processing will start.

processing Olap Cubes Automatically
To process OLAP cube automatically ensure that SQL server agent is started.
Go to ..All Programs > Microsoft SQL Server 2005 > Configuration Tools > Click on SQL Server Configuration Manager


SQL Server Configuration Manager > SQL Server 2005 Services > Ensure that SQL Server Agent is in Automatic start mode and in Running state.
If it is not then right click on service and start it.

SQL Server agent will start.

Create XMLA query for Olap Processing
Connect with Analysis Services

Databases > Right click on OLAP database > Click on process

On the Process database window, click on dropdown arrow near Script label.
Select Script Action to New Query window.


XMLA query will generate.
Save XMLA query to file. You can create query for single cube in same manner.


Automatic processing using Sql Server agent
Connect with Database engine.


In SQL Server Agent, create new job.

Set Job name.

Set number of steps.

Click on create new step.
Set type as SQL Server Analysis Services Command.
Open *.xmla file that you saved in above step, or copy the query generated of the script.

Query will display in command window.
Set Action as per preferences.
Set path for Output file. Click the option to append output to existing file, then output after every occurrence will get append. You can view log created for job.

Set Schedule for JOB.
To create schedule, click on new button.

Set schedule properties.

You can set Alerts, notification for job.
To test job which is running or not, Right click job > click on Start Job at step.


Job will start executing.


After successful execution, window with success status will appear.


To view job status, open JOB activity Monitor.

By default, job is in idle state. It will in stage of executing at of execution.

To view last processed date and time of OLAP database, Right click on olap database > Properties.

Popular posts from this blog

strScan and Find a first occurrence of a string in a string using x++

strScan (Find a first occurrence of a string in a string) info("int strScan(str _text1,str _text2,int _position,int _number)"); info("Searches a text string for the occurrence of another string."); info("_text1 - The text string to search."); info("_text2 - The string to find."); info("_position - The position at which the search should start."); info("_number - The number of characters that should be searched."); info(int2str(strScan("ABCDEFGHIJ","DE",1,10)));

Get record from table on the basis of field id in Microsoft dynamics axapta x++

How to Get record from table on the basis of field id in dynamics axapta x++. just try following code in job to understand better way. emplTable emplTable; FieldId fieldId; ; fieldId = fieldNum(emplTable, Emplid); select emplTable; info(emplTable.(fieldId)); select emplTable where emplTable.(fieldId) == '1101'; info(emplTable.Name);

Code to get customer Primary Address in Ax 2012

Below Code to get customer Primary Address in Ax 2012. CustTable custTable_P; DirPartyTable dirPartyTable_P; DirPartyLocation dirPartyLocation_P; DirPartyLocationRole dirPartyLocationRole_P; LogisticsLocation logisticsLocation_P; LogisticsLocationRole logisticsLocationRole_P; LogisticsPostalAddress logisticsPostalAddress_P; LogisticsPostalAddress primaryAddress_P; while select custTable_P where custTable_P.AccountNum =='ED_01029' join dirPartyTable_P where dirPartyTable_P.RecId == custTable_P.Party join dirPartyLocation_P where dirPartyLocation_P.Party == custTable_P.Party && dirPartyLocation_P.IsPrimary==NoYes::Yes join dirPartyLocationRole_P where dirPartyLocationRole_P.PartyLocation == dirPartyLocation_P.RecId join logisticsLocationRole_P where logisticsLocationRole_P.RecId == dirPartyLocationRole