SQL DBA interview questions+ CSC
CSC:
1. What is backup strategy?
2. How to rename SQL Server?
sp_dropserver GOsp_addserver , local GORemote 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 44There 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_nameGO· For a named instance, run the following procedure:
sp_dropremotelogin 'old_name\instancename'GO
No comments:
Post a Comment