Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 DB's Performance

Author  Topic 

ksr39
Posting Yak Master

193 Posts

Posted - 2011-02-09 : 01:22:17
Hi all,
i need a small help, how to find the performance of all(multi database) the databases which i have,is there any command to retrieve information.as i know that by using dbcc command(dbcc checkdb(database_name)) we can get for a single db.

Thanks in advance

ksr39
Posting Yak Master

193 Posts

Posted - 2011-02-09 : 03:01:00
performance means any errors that came across the jobs n the behavior of the database.
Go to Top of Page

GilaMonster
Master Smack Fu Yak Hacker

4507 Posts

Posted - 2011-02-09 : 03:40:33
CheckDB has nothing to do with performance. It does integrity checks, it checks the physical and logical structure of the database files for errors.

Performance and errors are very different thngs. What exactly are you looking for?

--
Gail Shaw
SQL Server MVP
Go to Top of Page

ksr39
Posting Yak Master

193 Posts

Posted - 2011-02-09 : 03:57:22
S exactly i need to check the physical and logical structure of the db files for errors.so, which command we need to use.
Go to Top of Page

GilaMonster
Master Smack Fu Yak Hacker

4507 Posts

Posted - 2011-02-09 : 04:34:04
DBCC CheckDB.

Run it with the NO_INFOMSGS option, so that it doesn't print all the useless info.

--
Gail Shaw
SQL Server MVP
Go to Top of Page
   

- Advertisement -