From the course: Designing Database Solutions for SQL Server 2016

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

Verify integrity with console commands

Verify integrity with console commands

- [Instructor] SQL Server supports a wide variety of T-SQL statements that are collectively called database console commands, or DBCC statements. These statements are broken down into categories for informational statements that return valuable information about the state of the database, validation statements, which report back on the validity of databases, tables, indexes, and other objects, maintenance statements perform routine maintenance on databases or indexes, and miscellaneous statements which can perform a variety of other server and database related tasks. For a full listing of all of the available DBCC commands, visit this page at the Microsoft Developer Network Documentation. Clicking on the Informational Statements link on the far right-hand sidebar, we'll scroll down into a series of tables that display each category and the commands within. It also provides easy links to each of these statements in…

Contents