Hexadecimal Hresult | Decimal HResult | Decimal return code | Error message text | Scenario |
---|
0xC11C0006 | -1055129594 | 3239837702 | The current operation was cancelled because another operation in the transaction failed. | Processing can run multiple operations in parallel. When one of these jobs fails, it causes all other active jobs to fail. The additional failures generate this error. Check for the cause of the failure in another error. |
0xC11C0007 | -1055129593 | 3239837703 | Proactive caching was cancelled because newer data became available. | Proactive caching starts to process, but a new notification is received that would cause the MOLAP cache to become stale. Therefore, the server cancels the processing operation and then restarts that operation so that the MOLAP cache reflects the new data. |
0xC11C0008 | -1055129592 | 3239837704 | The session was cancelled because session objects were modified by another transaction. | A session cube or grouping cube is created on the session. However, one of the objects on which the session cube or grouping cube was based is modified by another transaction. The state of the cube cannot be recovered when this happens. Therefore, the server cancels the session and generates this error. |
0xC11C0009 | -1055129591 | 3239837705 | The operation was cancelled because of locking conflicts. | When two concurrent transactions try to take locks that conflict with one another, the lock manager may detect a deadlock. If this occurs, the lock manager cancels one of the transactions. That cancelation causes this error. |
0xC11C000A | -1055129590 | 3239837706 | The operation was cancelled by the user. | The user sends a Cancel request on the session. This causes the active operation to be canceled. |
0xC11C000B | -1055129589 | 3239837707 | The session was cancelled because it exceeded a timeout setting (session orphaned timeout or session idle timeout) or it exceeded the session memory limit. | This error covers the following cases:- The session uses too much memory. This causes the memory manager to run low on memory and cancel this session.
- The session is orphaned from its network connection and cannot be recovered. After the IdleOrphanSessionTimeout is exceeded, the system cancels the session.
- The session remains idle for longer than the MinIdleSessionTimeout value. This causes the system to cancel the session.
|