Second Problem we usually face that when we start AOS service, it take too much time change status from Starting to started. One of many reason for this phenomena that AX try to query and located any Active session in SysClientSessions. To reduce the time is to remove all session inactive from SysClientSessions table or possible remove the inactive and block session form Database.
In "SysClientSessions" Status with status 0 (Inactive), Status 2 (Ending Waiting for AOS), 3 (Ending –Block).
Perform following steps.
Perform following steps.
- Stop AOS service.
- Open SQL Server Management Studio
- Open any new query on Dynamics Ax Database.
- Run the following Query where sessions with status 0 (Inactive), Status 2 (Ending Waiting for AOS), 3 (Ending –Block).
delete from SysClientSessions where status in(0,2,3); - Restart AOS.
댓글 없음:
댓글 쓰기