We followings step to create a new tenant database in a multitenant deployment.
1) In SQL Server, create a new database. (Empty Database same collation to the same as the application database)
2) Give the Business Central Server service account privileges to the database
New-NAVCompany -ServerInstance BC170 -Tenant XYZ -CompanyName 'XYZ Ltd'
We are getting error The tenant 'XYZ' is not mounted or does not exist.
3) Mount the database as a tenant to the application.
Mount-NAVTenant –ServerInstance BC170 -Id XYZ –DatabaseServer XXXXXX -DatabaseName 'XXXXXX' -OverwriteTenantIdInDatabase -DatabaseCredentials (Get-Credential)
We are getting error The XXXXXXX database has version 0 which is not supported by this version of
Microsoft Dynamics 365 Business Central Server. Please contact your administrator.
Can you advice please