Thursday, January 27, 2011

SQL DBA interview questions+ CSC


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
 

3.     How to trouble shoot temp db?

4.     How to solve connection issue?

5.     How to solve recovery status issue, if my db box has 100 databases, In that only one db has go to suspect mode? How to solve?

6.     IS Full text search service comes as default service?

7.     How to find fragmentation level by using command prompt?

8.     What are maintenance plans that you executed?

9.     What type of alerting system that you configured for your sql server box?

10.  What is your database size?

11.  How to solve Log file growing issue?

12.  Is it possible to take back up from primary server what was participated in log shipping?

13.  What is end point in mirroring?

14.  What are the security concerns that you execute while we configure mirroring?

No comments:

Post a Comment