M-Hol
SSC Eights!
Points: 923
More actions
December 17, 2018 at 2:35 pm
#409387
I have a Virtaul Server with SQL Server and Reporting Services Installed, how can i change the server name of this server ?
December 17, 2018 at 3:12 pm
#2016600
Solution
EXEC
sp_DROPSERVER
'oldservername'
sp_ADDSERVER
'newservername'
,
'local'
SELECT
@@SERVERNAME
*
FROM
sys.servers
WHERE
server_id = 0
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply