you might be face this situation in past, you tried to connect the SQL Server but SQL Server is not
Continue readingHow can you start SQL Server database Instance in different modes?
We can start SQL Server in different modes which are follows:- Single User Mode (-m) DAC (-A) Emergency Mode
Continue readingPerformance Tunning :- Find I/O Usage Per Databases in SQL Server
Through Below Script you are able to identify the I/O utilization By per databases in your SQL Server.The information returned
Continue readingPerformance Tunning :- How to find out CPU Uses By each Databases in SQL Server
Through Below Script you are able to identify the CPU utilization By per databases in your SQL Server:– WITH CPU_Uses_Per_Db
Continue readingHow to check status on Database Shrink Task in SQL Server?
Through Below Query we can check the status of database Shrink Operation :- SELECT percent_complete, start_time, status, command, estimated_completion_time, cpu_time,
Continue readingDifference Between Log Shipping and Database Mirroring
Log Shipping:- It automatically sends transaction log backups from one database On another server. T-Logs are backed up and
Continue readingHow to find out Who dropped login from SQL Server?
Through below script we are able to find out who is culprit for this activity:- ============================================================== DECLARE @enable INT SELECT
Continue readingRecover Database from Suspect Mode in SQL Server
Today morning I observed that one of our logshipped secondary database reached into Suspect mode, I just investigated and found that log
Continue readingWhat MAXDOP setting should be used for SQL Server?
You can run the below query and identify the suitable MAXDOP for your SQL Server then you can set the
Continue reading