Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


can you any body tell me suppose database is suspect mode.
how can take to normal?

Answers were Sorted based on User's Feedback



can you any body tell me suppose database is suspect mode. how can take to normal?..

Answer / praveen.g

1. Firstly look in the SQL Server Logs in Enterprise Manager
(EM). To get there, start EM and drill down from the
Database Server … Management … SQL Server Logs. There
should be multiple logs starting with Current and then
followed by 6 or more archived logs.

2. Review all recent Error Log(s). There WILL be an
indication here as to why the database has been marked
suspect. You need to fix whatever the problem is first
(i.e. missing file, permissions problem, hardware error
etc.)

3. Then, when the problem has been fixed and you're either
sure that the data is going to be ok, or you have no backup
anyway, so you've nothing to lose, then change the database
status to normal and restart SQL Server.

4. To change the database status we will us the following
store procedure: sp_resetstatus.
The steps are as follows:

a. USE master
GO
sp_configure 'allow updates', 1
GO
RECONFIGURE WITH OVERRIDE
GO
b.
sp_resetstatus
GO
-- Example: sp_resetstatus ‘Washington’

5. After the procedure is run, immediately disable updates
to the system tables:

a. sp_configure 'allow updates', 0
GO
RECONFIGURE WITH OVERRIDE
GO

6. Stop and Restart ALL SQL Server Services

Is This Answer Correct ?    0 Yes 0 No

can you any body tell me suppose database is suspect mode. how can take to normal?..

Answer / kumar.t

EXEC sp_resetstatus 'database name'

By
Kumar.T

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More SQL Server Interview Questions

How to create prepared statements using odbc_prepare()?

0 Answers  


Is it possible in sql table to have more than one foreign key?

0 Answers  


What is nonclustered index with included columns ?

0 Answers  


What is the data type of time?

0 Answers  


Explain about link server in sql server?

0 Answers  


How many jobs will create for Mirroring, Log Shipping, and Transactional Replication?

4 Answers   IBM,


What is difference between rollback immediate and with no_wait during alter database?

0 Answers  


What is the difference between set and select?

0 Answers  


Every night you run a full backup after every 3 three hours you make a differential backup every hour you make an incremental backup in a worst-case scenario, how much work you can lose?

0 Answers  


What should be the fill factor for indexes created on tables? : sql server database administration

0 Answers  


How do you find the error, how can you know the number of rows effected by last SQL statement?

2 Answers  


What command would you use to create an index?

0 Answers  


Categories