I am hopeful that someone has an answer for this...
I am in the process of deploying SQLServer 2014 and have been running in parallel with my production environment for 2 weeks with no issues. Yesterday morning, my primary data load job failed while executing a process dimension script. The script
does a process update on multiple dimensions, but fails on the product dimension. This is the script:
<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>WestLakeSales</DatabaseID><DimensionID>Dim Product</DimensionID></Object><Type>ProcessUpdate</Type><WriteBackTableCreation>UseExisting</WriteBackTableCreation></Process></Parallel></Batch>
It processes the attributes and starts processing the associated measure groups, then fails with a return code that I cannot find any information on:
<return xmlns="urn:schemas-microsoft-com:xml-analysis"><results xmlns="http://schemas.microsoft.com/analysisservices/2003/xmla-multipleresults"><root xmlns="urn:schemas-microsoft-com:xml-analysis:empty"><Exception xmlns="urn:schemas-microsoft-com:xml-analysis:exception" /><Messages xmlns="urn:schemas-microsoft-com:xml-analysis:exception"><Error ErrorCode="3238133769" Description="" Source="Microsoft SQL Server 2014 Analysis Services" HelpFile="" /></Messages></root></results></return>
At the end of the job log it just shows this:
*****
Finished processing the 'Inventory Weekly 2009 08' partition.
Processing of the 'Inventory Weekly 2009 06' partition has started.
Finished processing the 'Inventory Weekly 2009 06' partition.
Processing of the 'Inventory Weekly 2010 02' partition has started.
The job completed with failure.
The job completed with failure.
The job completed with failure.
Execution complete
********
When I run process update from Studio it processes all of the attributes and measure group partitions, then throws a single 'error' result with no description or message. It appears that all partitions process successfully. See the screen shot:
![]()
This script ran fine up until yesterday. There were no system changes. The same script is currently running fine on the production SQLServer 2008 instance.
Anyone see anything like this happening in SSAS 2014? Any tips on further trouble shooting?