Posts Tagged 'SSMS'

3 Quick Ways to Recover a Suspect MSDB database in SQL Server

Learn the solutions for recovering a suspect MSDB database in SQL Server SQL Server agent makes use of msdb database for the purpose of scheduling jobs and alerts by making use of other features like SSMS, database mail, and service broker. There can be situations where your msdb database is rendered suspect and is in need of recovery. Here you might think that a simple recovery action would be enough to bring the database back in health, but that is not true. Here you need to do ensure more...

Read more »

How to Deal with Database Context Error 208 in SQL Server

In this article we explain about ERROR 208, why it occurs and how to deal with it. We often come across situations which seem to be very complicated and challenging but are actually very easy to get out of; provided we think logically. One such situation a lot of SQL Server DBA’s come across is the SSMS error 208, i.e. the ‘Invalid Object Name’ error. This is a very commonly occurring error which ends up confusing a lot of DBAs. So today, we will not only provide you with a solution to this...

Read more »

2 Workarounds to Update a Read-only Database in SQL Server

If a database is read-only, you can easily identify the status from the sys.databases or from the SSMS. A well-known fact is that you cannot update data in a read-only database. In this article, we will learn how to troubleshoot and fix this. Two options We can either use SQL Server Management Studio i.e., SSMS or T-SQL script to convert a read-only database into a read-write database. To understand these options better, let us Create a database Create tables within it Add records...

Read more »