Can I run DBCC CHECKDB from .NET? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:15:27Z http://stackoverflow.com/feeds/question/896876 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/896876/can-i-run-dbcc-checkdb-from-net 3 Can I run DBCC CHECKDB from .NET? Philip Fourie 2009-05-22T08:29:50Z 2009-05-22T15:19:48Z <p>I am writing a scheduled job to mimic a SQL Server maintenance plan for SQL Express. (I have to do this because SQL Agent and related tools don't exist for SQL Express)</p> <p>One of the steps is to do a database integrity check. The TSQL for this is:</p> <pre><code>DBCC CHECKDB(N'Northwind') WITH NO_INFOMSGS </code></pre> <p>How do I know if an error occurred during execution of this command, will it throw an <strong><em>Exception</em></strong> when using ADO.NET or would I have to parse the <strong><em>text output</em></strong> of the command (if so what do I look for in the output)</p> <p>This is difficult to test because I don't have a corrupt database on hand.</p> http://stackoverflow.com/questions/896876/can-i-run-dbcc-checkdb-from-net/896902#896902 3 Answer by John Sansom for Can I run DBCC CHECKDB from .NET? John Sansom 2009-05-22T08:38:06Z 2009-05-22T08:38:06Z <p>Yes I believe you would need to process the text output returned from DBCC CHECKDB.</p> <p>To assist with your testing, the following reference details how to deliberately corrupt a SQL Server Database.</p> <p><a href="http://sqlblogcasts.com/blogs/tonyrogerson/archive/2007/03/10/how-to-create-a-corrupt-database-using-bulk-insert-update-and-bcp-sql-server-as-a-hex-editor.aspx" rel="nofollow">http://sqlblogcasts.com/blogs/tonyrogerson/archive/2007/03/10/how-to-create-a-corrupt-database-using-bulk-insert-update-and-bcp-sql-server-as-a-hex-editor.aspx</a></p>