Sunday, February 28, 2016

Dynamics Ax service failed to start "by the kernel (8/7)"

Dynamics Ax service failed to start due to below error:

Error:
Object Server 01:  Fatal SQL condition during login. Error message: "The internal time zone version number stored in the database is higher than the version supported by the kernel (8/7). Use a newer Microsoft Dynamics AX kernel."

Solution: 
select SYSTIMEZONESVERSION from SQLSystemVariables

update SQLSystemVariables

set SYSTIMEZONESVERSION = 7

This solution can be valid for any similar error like by the kernel (6/5),  by the kernel (5/4) ....

5 comments:

  1. select * from SQLSystemVariables
    WHERE PARM = 'SYSTIMEZONESVERSION'

    UPDATE SQLSystemVariables
    SET VALUE = 7
    WHERE PARM = 'SYSTIMEZONESVERSION'

    ReplyDelete
  2. If you get this error after doing a Kernel update. Make sure that all the AOS instances on that server are updated to the new Kernel.

    ReplyDelete
  3. Object Server 01: Fatal SQL condition during login. Error message: "The internal time zone version number stored in the database is higher than the version supported by the kernel (8/7). Use a newer Microsoft Dynamics AX kernel."


    dear i am getting same error
    please give step by step solution

    ReplyDelete
  4. this one also helped with error code 120 on ax2012 r3 --> thanks to Dave that found this!!!

    ReplyDelete