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) ....
select * from SQLSystemVariables
ReplyDeleteWHERE PARM = 'SYSTIMEZONESVERSION'
UPDATE SQLSystemVariables
SET VALUE = 7
WHERE PARM = 'SYSTIMEZONESVERSION'
cool!
DeleteIf 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.
ReplyDeleteObject 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."
ReplyDeletedear i am getting same error
please give step by step solution
this one also helped with error code 120 on ax2012 r3 --> thanks to Dave that found this!!!
ReplyDelete