Tuesday 21 October 2014

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 (5/2). Use a newer Microsoft Dynamics AX kernel."

Some times AOS  will not start and shows the below error in the Event Viewer.

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 (5/2). Use a newer Microsoft Dynamics AX kernel."


Reasons :
->  when you restore axapta database.
-> when you install more than one AOS in the same server
-> when running more than two axapta environments in the same server

Solution :

->Open  Sql Management Studio

->Go to MicrosoftDynamicsAx(Axapta Database) database and dbo.SQLSystemVariables table and edit records. In that go to SYSTIMEZONESVERSION  record and update value (5/2) in the place of 5 to 2.



@Rahul Talasila

No comments:

Post a Comment

Adding a newline into a string in C# and X++

Below is the sample code we can use for  adding a newline after every occurrence of "@" symbol in the string in C#   using System...