Hi Paulwog0667-0873,
The target principal name is incorrect. Cannot generate SSPI context.
This issue might be related to Kerberos authentication. And the common reason for this error is the SPN problem. If you run the SQL Server service under the LocalSystem account, the SPN is automatically registered and Kerberos authentication interacts successfully with the computer that is running SQL Server. However, if you run the SQL Server service under a domain account or under a local account, the attempt to create the SPN will fail in most cases because the domain account and the local account do not have the right to set their own SPNs. Please check whether SPN's are correctly registered. You can use “SETSPN -L <ServiceAccount>” in cmd to see what SPNs are listed for a particular account. The SPN should look like this: MSSQLSvc/<FQDN>:<port> If the SPN is not configured, you need to manually create an SPN for your computer that is running SQL Server. Please refer to How to troubleshoot the "Cannot generate SSPI context" error message and Register a SPN for Kerberos Connections which might help.
Best Regards,
Amelia