码迷,mamicode.com
首页 >  
搜索关键字:row lock contention    ( 25929个结果
原创:如何实现在Excel通过循环语句设置指定行的格式
原创:如何实现在Excel通过循环语句设置指定行的格式一、需求:想让excel的某些行(比如3的倍数的行)字体变成5号字 如何整;二、实现:Sub code()For i = 1 To Range("A65536").End(xlUp).Row Rows(3 * i & ":" & 3 * i...
分类:其他好文   时间:2014-07-24 17:15:05    阅读次数:247
Java多线程面试题归纳
1、线程的基本概念、线程的基本状态以及状态之间的关系...
分类:编程语言   时间:2014-07-24 10:39:04    阅读次数:346
mssql Row_Number() 分页 DISTINCT 问题
转载原文地址http://www.cnblogs.com/pumaboyd/archive/2008/04/20/1162376.html这周碰到了很多奇怪的问题,有些是莫名的低级错误,有些这是一直以来未发现的错误。其中这个RowNumber()这个问题就是这样。敬德兄写的底层负责自动生成T-SQL...
分类:数据库   时间:2014-07-24 10:14:33    阅读次数:187
mysql metadata lock
想必玩过mysql的人对Waiting for table metadata lock肯定不会陌生,一般都是进行alter操作时被堵住了,导致了我们在show processlist 时,看到线程的状态是在等metadata lock。本文会对mysql 的metadata lock做一个小小的总结...
分类:数据库   时间:2014-07-23 14:46:26    阅读次数:211
Qt同步与异步处理
1.互斥量(QMutex)         头文件声明:    #include         互斥量声明:    QMutex m_Mutex;         互斥量加锁:    m_Mutex.lock();         互斥量解锁:    m_Mutex.unlock();   2.等待条件(QWaitCondition)         头文件声明:    #inc...
分类:其他好文   时间:2014-07-23 13:20:44    阅读次数:489
Quartz contention when running in load balanced environment--reference
1.8.3 appears to have addressed this issue with a single application server. However, we're seeing the issues when load-balancing our application (mul...
分类:其他好文   时间:2014-07-22 22:45:34    阅读次数:311
【leetcode刷题笔记】Triangle
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他好文   时间:2014-07-22 22:40:36    阅读次数:238
TortoiseSVN无法显示lock图标的解决
官网FAQ里查到以下说明:“You may find that not all of these icons are used on your system. This is because the number of overlays allowed by Windows is limited.....
分类:其他好文   时间:2014-07-22 22:35:16    阅读次数:600
多线程——生产者与消费者(多)1.5新锁,问题解决
package多线程; importjava.util.concurrent.locks.Condition; importjava.util.concurrent.locks.Lock; importjava.util.concurrent.locks.ReentrantLock; publicclassPandCnewLock{ publicstaticvoidmain(String[]args){ // Producerp=newProducer2(); // Consumerc=..
分类:编程语言   时间:2014-07-22 18:21:02    阅读次数:288
mysql大量锁表,不重启的情况下处理办法
mysql-uroot-e"showprocesslist"|grep-i"Locked">>locklist.txt; forlineinawk‘{print$1}‘locklist.txt do echo"kill$line;">>lock_kill.sql done查看mysql数据库表大小#!/bin/bash database=cms user=root password=‘123456‘ mysql-u${user}-p${password}-e"use$d..
分类:数据库   时间:2014-07-22 18:15:42    阅读次数:334
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!