RE: Moving Navision DB to Azure
Is this error thrown by the RTC client?
By default the database where the RTC tries to connect is stored in a config file called ClientUserSettings.Config.
The path for the ClientUserSettings.Config file is:
C:\Users\<username>\AppData\Local\Microsoft\Microsoft Dynamics NAV
Check the below 3 keys and point them to the right db:
<add key="Server" value="localhost" />
<add key="ServerInstance" value="DynamicsNAV" />
<add key="ServerPort" value="7076" />
If this doesn't work, you can remove all user's personalization by executing the following sql queries:
USE [Database Name]
GO
delete from [dbo].[User]
delete from [dbo].[Access Control]
delete from [dbo].[User Property]
delete from [dbo].[Page Data Personalization]
delete from [dbo].[User Default Style Sheet]
delete from [dbo].[User Metadata]
delete from [dbo].[User Personalization]
then access the database again.