文章分类 -  SQLSERVER

1 2 3 4 5 ··· 30 下一页
摘要:数据库数据损坏修复脚本 sp_config 'allow updates',1reconfigure with overridegoupdate sysdatabases set status=32768where name ='AdventureWorks ' USE [master]GOCREA 阅读全文
posted @ 2016-11-17 11:12 桦仔 阅读(590) 评论(0) 推荐(0) 编辑
摘要:BlkBy 为-1是block的源头进程 sp_who3结果 阅读全文
posted @ 2015-10-19 13:00 桦仔 阅读(52) 评论(0) 推荐(0) 编辑
摘要:复制加镜像 在线重建索引导致堵塞住复制 的logreader,如果搭建了镜像,那么logreader会读取mirror端的日志而不是primary端的日志复制加镜像 在线重建索引导致堵塞住复制 的logreader,如果搭建了镜像,那么logreader会读取mirror端的日志而不是primary... 阅读全文
posted @ 2015-01-15 09:35 桦仔 阅读(378) 评论(0) 推荐(0) 编辑
摘要:SQLSERVER补丁类型http://blogs.msdn.com/b/sqlreleaseservices/archive/2008/04/27/a-changed-approach-to-service-packs.aspxA changed approach to Service Packs... 阅读全文
posted @ 2015-01-04 12:29 桦仔 阅读(326) 评论(0) 推荐(0) 编辑
摘要:sqlserver生成dump文件的方法汇总http://www.yiiyee.cn/Blog/windbg/http://www.cnblogs.com/Clingingboy/archive/2013/03/26/2983166.htmlhttp://troubleshootingsql.com... 阅读全文
posted @ 2014-12-24 16:28 桦仔 阅读(2028) 评论(0) 推荐(0) 编辑
摘要:数据库置疑没有办法做数据库备份使用DBCC writepage的方法USE masterIF DB_ID('TestDB') IS NOT NULL DROP DATABASE TestDBGOCREATE DATABASE TestDB GOUSE TestDBGOCREATE TABLE ... 阅读全文
posted @ 2014-12-23 17:01 桦仔 阅读(546) 评论(0) 推荐(0) 编辑
摘要:Microsoft® SQL Server® 2008 R2/2012 Best Practices Analyzer 最佳实践分析器安装包下载:http://files.cnblogs.com/lyhabc/SQL2012BPA_SetupandMBCA_Setup64_Win8.rarhttp:... 阅读全文
posted @ 2014-12-05 16:28 桦仔 阅读(319) 评论(0) 推荐(0) 编辑
摘要:数据库插入性能测试脚本use master gocreate database testgouse [test] --只有聚集索引CREATE TABLE Department( DepartmentID int IDENTITY(1,1) NOT NULL PRIMARY KEY, Name NV... 阅读全文
posted @ 2014-11-21 22:11 桦仔 阅读(1659) 评论(0) 推荐(0) 编辑
摘要:环形缓冲区概念图 2014-11-18 画RING_BUFFER_EXCEPTIONRING_BUFFER_SCHEDULERRING_BUFFER_MEMORY_BROKER_CLERKSRING_BUFFER_RESOURCE_MONITORRING_BUFFER_CONNECTIVITY改 阅读全文
posted @ 2014-11-18 20:51 桦仔 阅读(220) 评论(0) 推荐(0) 编辑
摘要:Paul S. Randal的扩展事件系列 30日学扩展事件地址:http://www.sqlskills.com/blogs/jonathan/an-xevent-a-day-31-days-of-extended-events/查询扩展时间相关DMVQuerying the Extended E... 阅读全文
posted @ 2014-11-17 11:35 桦仔 阅读(875) 评论(0) 推荐(0) 编辑
摘要:SQLServer跟踪标志trace flag合集 --以下示例以全局方式打开跟踪标记 3205 和 260。 DBCC TRACEON (1118 ,-1) GO DBCC TRACESTATUS (1118,-1) GO SELECT * FROM [dbo].[CommandLog] OPTI 阅读全文
posted @ 2014-11-12 16:00 桦仔 阅读(2736) 评论(5) 推荐(4) 编辑
摘要:SQLSERVER官方团队博客集合 SQL 管理博客 http://blogs.msdn.com/b/managingsql/ SQL CE团队博客 http://blogs.msdn.com/b/sqlservercompact/ SQL CAT团队博客 http://blogs.msdn.com 阅读全文
posted @ 2014-11-10 20:25 桦仔 阅读(342) 评论(0) 推荐(0) 编辑
摘要:解决checkdb时候的数据纯度错误http://www.sqlnotes.info/2013/04/30/sql-server-0-and-0/This is a very interesting error happened in one of my clients’ databases. Th... 阅读全文
posted @ 2014-10-25 16:30 桦仔 阅读(341) 评论(0) 推荐(0) 编辑
摘要:使用文件替换法和文件组离线的方式来使数据库上线抛弃ndf文件http://www.sqlnotes.info/2013/05/07/attach-database-with-missing-ndf-file/没有数据库备份,直接分离附加的方式I wonder if you’ve had the si... 阅读全文
posted @ 2014-10-25 16:13 桦仔 阅读(295) 评论(0) 推荐(0) 编辑
摘要:修改页面checksum值来避开824错误http://www.sqlnotes.info/2013/05/02/fix-page-checksum/A checksum value is tagged with every data page in SQL Server. This is used... 阅读全文
posted @ 2014-10-25 15:41 桦仔 阅读(762) 评论(0) 推荐(0) 编辑
摘要:DBCC WritePage的具体用法http://www.sqlnotes.info/2011/11/23/dbcc-writepage/.DBCC WritePage is a dangerous undocumented DBCC command. It’s useful in your sa... 阅读全文
posted @ 2014-10-25 13:38 桦仔 阅读(414) 评论(0) 推荐(0) 编辑
摘要:如何使用 DBCC WritePage 才不会破坏你的数据http://www.sqlnotes.info/2013/05/14/protect-yourself-from-using-dbcc-writepage/I blogged DBCC WritePage a year ago here h... 阅读全文
posted @ 2014-10-25 13:34 桦仔 阅读(224) 评论(0) 推荐(0) 编辑
摘要:Len()函数和 DataLength()函数的区别http://www.sqlnotes.info/2013/05/16/len-and-datalength/Both system functions, Len() and DataLength(), in SQL Server are used... 阅读全文
posted @ 2014-10-25 13:12 桦仔 阅读(680) 评论(0) 推荐(0) 编辑
摘要:修改系统元数据让文件组在线http://www.sqlnotes.info/2013/05/09/bring-offline-file-online-modify-sql-server-metadata/In my last post, I demonstrated how to mount a d... 阅读全文
posted @ 2014-10-24 23:22 桦仔 阅读(357) 评论(0) 推荐(0) 编辑
摘要:How It Works: XEvent Output and Visualizationhttp://blogs.msdn.com/b/psssql/archive/2014/07/25/how-it-works-xevent-output-and-visualization.aspxEach a... 阅读全文
posted @ 2014-10-23 16:33 桦仔 阅读(179) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 30 下一页