CSC:
1. What is backup strategy?
2. How to rename SQL Server?
sp_dropserver
GO
sp_addserver , local
GO
Remote Logins - If the computer has any remote logins, running sp_dropserver might generate an error similar to the following:
Server: Msg 15190, Level 16, State 1, Procedure sp_dropserver, Line 44
There are still remote logins for the server 'SERVER1'.
To resolve the error, you must drop remote logins for this server.
To drop remote logins
· For a default instance, run the following procedure:
sp_dropremotelogin old_name
GO
· For a named instance, run the following procedure:
sp_dropremotelogin 'old_name\instancename'
GO
No comments:
Post a Comment