page 291 to page 311.txt
来自「Sql statement it is very cute」· 文本 代码 · 共 38 行
TXT
38 行
EXEC sp_configure 'c2 audit mode', 1
RECONFIGURE
USE Sample
SELECT * FROM Employees
USE Northwind
SELECT * FROM Customers
EXEC sp_configure 'c2 audit mode', 0
RECONFIGURE
DBCC CHECKDB ('Sample')
DBCC CHECKDB ('Sample', REPAIR_REBUILD)
USE Northwind
EXEC sp_helpindex 'Suppliers'
DBCC SHOWCONTIG ('Suppliers','PK_Suppliers')
EXEC sp_detach_db 'Northwind'
USE Northwind
EXEC sp_attach_db 'Northwind', 'C:\northwnd.mdf', 'C:\northwnd.ldf'
USE Northwind
SELECT * FROM Suppliers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?