Merge的语法如下:
MERGE [hint] INTO [schema .] table [t_alias] USING [schema .]
{ table | view | subquery } [t_alias] ON ( condition )
WHEN MATCHED THEN merge_update_clause
WHEN NOT MATCHED THEN merge_i...
分类:
数据库 时间:
2014-06-02 12:35:31
阅读次数:
283
在整理Java LockSupport.park()的东东,看到了个"Spurious wakeup",重新梳理下。
首先来个《UNIX环境高级编程》里的例子:
#include
struct msg {
struct msg *m_next;
/* ... more stuff here ... */
};
struct msg *workq;
pthread_cond_t qread...
分类:
其他好文 时间:
2014-06-02 04:45:19
阅读次数:
267
【题目】
Reverse a linked list from position m to n. Do it in-place and in one-pass.
For example:
Given 1->2->3->4->5->NULL, m = 2 and n = 4,
return 1->4->3->2->5->NULL.
Note:
Given m, n satisfy the following condition:
1 ≤ m ≤ n ≤ length of list.
【题意】
...
分类:
其他好文 时间:
2014-06-01 15:08:34
阅读次数:
237
//从别处拷贝过来的,只作为自己查看方便,原作者不详,请谅解。一:关于joinjoinjoin是三种同步线程的方式之一。另外两种分别是互斥锁(mutex)和条件变量(condition
variable)。调用pthread_join()将阻塞自己,一直到要等待加入的线程运行结束。可以用pthrea...
分类:
其他好文 时间:
2014-05-28 02:13:20
阅读次数:
351
http://baptiste-wicht.com/posts/2012/04/c11-concurrency-tutorial-advanced-locking-and-condition-variables.htmlstruct
BoundedBuffer { int* buffer; ...
分类:
编程语言 时间:
2014-05-27 16:04:22
阅读次数:
303
select * from (select A.*,rownum rd from (select *
from [tablename] where [condition] order by [condition] ) A where
rownum=[startpage*pagesize];1.sel...
分类:
数据库 时间:
2014-05-25 22:29:33
阅读次数:
349
1.触发器:{server_name:item_name.func.operator.condition}一旦condition(条件)触发,则item状态改变触发器之间可以存在依赖关系,即itemA触发,则itemB也触发.2.动作actionaction是触发器触发后,应该采取的动作.其中动作除...
分类:
其他好文 时间:
2014-05-23 12:42:59
阅读次数:
460
String sql="insert into t_testinfo (userId,main_food,vegetable,meat,method,mood,sport_amount,health_ill," +
"body_condition,fubu_condition,fubu_pain_position,fubu_pain_reason,fubu_pain_seriou...
分类:
数据库 时间:
2014-05-22 11:37:03
阅读次数:
525
jstack Dump 日志文件中的线程状态dump
文件里,值得关注的线程状态有:死锁,Deadlock(重点关注)执行中,Runnable 等待资源,Waiting on
condition(重点关注)等待获取监视器,Waiting on monitor entry(重点关注)暂停,Suspen...
分类:
编程语言 时间:
2014-05-21 18:59:45
阅读次数:
502
1、if,else,elseif语法:<#ifcondition>...<#elseifcondition2>...<#elseifcondition3>......<#else>...</#if>备注:condition、condition2···必须为boolean类型,<#elseif··>、<#else>可有0或多个。实例:<#ifx==1>xis1..
分类:
其他好文 时间:
2014-05-15 12:33:22
阅读次数:
385