https://gennadny.wordpress.com/2014/11/ Since SQL Server 7.0, SQL Server has its own scheduling mechanism, In SQL 7.0 and 2000 it was called UMS (User Mode Scheduling) and later was renamed to SOS (SQL OS Scheduler). UMS\SOS is non-preemptive\coopera…
https://blogs.msdn.microsoft.com/askjay/2009/12/29/basic-debugging-concepts-and-setup/ You can create a memory dump of the SQL Server process space in several ways.  There are many external tools that can help you accomplish this such as userdump.exe…
https://blogs.msdn.microsoft.com/sql_pfe_blog/2013/04/23/identifying-the-cause-of-sql-server-io-bottlenecks-using-xperf/ https://blogs.msdn.microsoft.com/sql_pfe_blog/2013/03/19/troubleshooting-sql-server-high-cpu-usage-using-xperf/ https://blogs.msd…
https://blogs.msdn.microsoft.com/karthick_pk/2010/06/22/how-to-analyze-deadlocked-schedulers-dumps/ How to Analyze "Deadlocked Schedulers" Dumps? Newer version of this post is available in http://mssqlwiki.com/2010/06/15/how-to-analyze-deadlocke…
从SQL SERVER 2008 开始,我们已经不能再用以前 DUMP TRAN 数据库名 WITH NO_LOG 的这种方式来收缩数据库,但是,可以用另外一种替代的方法,SQL语句如下: ALTER DATABASE 数据库名 SET RECOVERY SIMPLE ALTER DATABASE 数据库名 SET RECOVERY FULL DBCC SHRINKDATABASE(数据库名, 0) 这种方式来进行 原文链接:http://www.lukiya.com/Blogs/2010/06…
1.先来看原备份数据库语句: mysqldump -h 127.0.0.1 -uroot -ppassword database > /usr/microStorage/dbbackup/capsule_prod$(date +%Y%m%d_%H%M%S).sql 警告信息1: Warning: Using a password on the command line interface can be insecure. 意思是说:在命令行界面上使用密码可能是不安全的,不能直接把密码写在脚本中.…
[root@NB ok]# mysqldump -uemove -h xx.xx.xx.xx -P9906 DBname t_name -p >2t_tname.sqlWarning: A partial dump from a server that has GTIDs will by default include the GTIDs of all transactions, even those that changed suppressed parts of the database.…
Opera mini for S60 custom server 在线改服 http://yourshell.info/mo/mini/ 本人贫穷一族,一直在用S60V2,这种手机启动JAVA很占内存,mini4.2自定义SERVER的那个JAVA软件,开不到十个网页就报系统内存不足,但是好象没有太多解决方法,所以,最近修改了个网页代理程序,终于能在UC上用HTTP看推,其实手机上用HTTPS网页代理还是能用的,只是HTTPS毕竟不多,它的安全程度在UC服务器上就得明文一下子,或许存在安全的威胁…
 https://blogs.msdn.microsoft.com/askjay/2010/10/03/how-do-i-find-what-queries-were-executing-in-a-sql-memory-dump/ jamesaskOctober 3, 20108 NOTE:  This post has been updated in a new post due to an issue found with the steps in this post.  The proce…
  up vote15down votefavorite 5 I'm researching into intercepting queries that arrive at the SQL Server 2008 process. SQLOS architecture is divided in the following system DLLs: sqlmin.dll: Storage, replication, security features,etc. sqllang.dll: Tra…