Hello,
I just installed the latest version of Business central Wave 2 (My first installation of a Business central version)
After installation I tried to open the web client (RTC does not exist anymore), and I had this message The Following SQl error was unexpected: Invalid object name 'master.dbo.$ndo$srvproperty'.
See attached picture.
Sources like something went wrong during installation since you do have have the $ndo$srvproperty table on your Master database.
Try Creating the table:
USE [master]
GO
CREATE TABLE [dbo].[$ndo$srvproperty](
[license] [image] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
For help, do not use PM, but use forum instead, perhaps other people have the same question, or better answers.
Sources like something went wrong during installation since you do have have the $ndo$srvproperty table on your Master database.
Try Creating the table:
USE [master]
GO
CREATE TABLE [dbo].[$ndo$srvproperty](
[license] [image] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
For help, do not use PM, but use forum instead, perhaps other people have the same question, or better answers.
Answers
Try Creating the table:
In the new install I found the table $ndo$srvproperty in Laster Database.