我正在使用以下代码检查我的数据库是否有任何问题/需要故障排除:
Dim cmd As New SqlCommand("DBCC CHECKDB (offpoDb) WITH TABLERESULTS", con)
Dim reader As SqlDataReader = cmd.ExecuteReader
executing.Content = "Checking datatabse for errors"
executing.Margin = New Thickness(243, 111, 0, 0)
While reader.Read
strBuilder.AppendLine(CStr(reader("MessageText")))
End While
reader.Close()
MessageBox.Show(strBuilder.ToString)
现在,该DBCC CHECKDB
命令可能会产生如下结果:
CHECKDB found 0 allocation errors and 15 consistency errors in database 'mydb
可以修复以下 SQL 查询:
ALTER DATABASE AdventureWorks2008R2 SET SINGLE_USER WITH ROLLBACK
IMMEDIATE;
BEGIN TRANSACTION;
DBCC CHECKDB ('AdventureWorks2008R2', REPAIR_ALLOW_DATA_LOSS);
ALTER DATABASE AdventureWorks2008R2 SET MULTI_USER;
但是在通过我的应用程序执行以下查询之前,有没有办法知道是否DBCC CHECKDB
真的返回了任何错误?因为没有任何错误,修复数据库将毫无用处……
有什么帮助吗?
我脑海中闪过的一个想法
我正在考虑将字符串从strBuilder
文本框中获取。将检查文本框是否有以下行的可用性CHECKDB found 0 allocation errors and 15 consistency errors in database
..
但这仍然是不可能的,因为那条线有时会有所不同。例如
CHECKDB found 0 allocation errors and 15 consistency errors
CHECKDB found 1 allocation errors and 14 consistency errors
有更好的主意吗?