Saturday 2 May 2015

Microsoft Dynamics Axapta Database In Recover Mode

Hello Guys,...!

Issue :

Some time Axapta database will go into recovery mode if database restoring is not properly done.

Solution :

-> Open SQLmanagement studio

-> Open new query and paste the below code and change the database name and execute.


ALTER DATABASE MicrosoftDynamicsAX SET MULTI_USER;
GO

// Note : Here my database name is  MicrosoftDynamicsAX

-> After this refresh the database area


@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...