CRM Import Organization reported instance name must be the same as the name of the computer problem

  No match "instance name must be the same computer name", Google under: used today P2V copy of a CRM database to the virtual machine, due to the added field must have the computer name changed, and when re-introduced into the tissue being given the answer to the question, but from a post where to get inspiration, the obvious problem is caused by changes in the computer name, see the local instance name as defined by the following code

select @@serverName,serverproperty('serverName')

 Obviously the name or names displayed before modification of the computer, and then use the following code that is modified, wherein the old computer name XX, YY computer name is modified

EXEC sp_dropserver 'XX';
GO
EXEC sp_addserver 'YY', 'local';

 Then restart your SQL Services, and then click Next Import Wizard interface on OK.

This post link reference of the following methods: http://www.3v.org.cn/article/332.htm

Reproduced in: https: //www.cnblogs.com/VicTang/p/3410545.html

Guess you like

Origin blog.csdn.net/weixin_33795833/article/details/93417008