Quantcast
Channel: VMware Communities: Message List
Viewing all articles
Browse latest Browse all 252940

Re: How can I fix RDP and SQL problems after cloning a vApp?

$
0
0

Btw, I also did this to the SQL Server instance to fix the machine name.

 

 

sp_dropserver '<MyOldMachineName>';
GO
sp_addserver '<MyNewMachineName>', local;
GO
SELECT @@SERVERNAME As [@@SERVERNAME],
CAST(SERVERPROPERTY('MACHINENAME') AS VARCHAR(128)) + COALESCE('' +
CAST(SERVERPROPERTY('INSTANCENAME') AS VARCHAR(128)), '') As RealInstanceName

Viewing all articles
Browse latest Browse all 252940

Trending Articles