Sunteți pe pagina 1din 1

Procedimento para alterao do nome do servidor SQL do SAP

-- Steps to be followed

-- Give you the Existing server Name present in the metadata. it will be the
old server name.
SELECT @@SERVERNAME
go

-- Remove server
sp_dropserver 'Old_Server_Name'
go

-- Add the renamed server name


sp_addserver 'New_server_Name' , 'Local'

-- Restart the SQL Services.

-- Will give you the modified Server Name


SELECT @@SERVERNAME

-- Note : This Solution is Only for the Stand-Alone Machine

S-ar putea să vă placă și