操作:更新完成跳转至另一个查询的actionstruts配置文件正确配置方式:<resultname="succ"type="redirect">/query.action?state=${state}</result>struts配置文件错误配置方式:<resultname="succ">/query.action?state=${state}</result>错误原因:少..
分类:
其他好文 时间:
2015-04-08 19:57:48
阅读次数:
117
Say you have an array for which the ith element is the price of a given stock on day i.If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), desi...
分类:
其他好文 时间:
2015-04-08 18:16:49
阅读次数:
131
检查数据库日志,有如下报错信息:Error: 9002, Severity: 17, State: 4.
The transaction log for database 'SharedServices1_Search_DB' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc...
分类:
数据库 时间:
2015-04-08 16:33:30
阅读次数:
206
本文转自:http://ifeve.com/how-to-calculate-threadpool-size/如何合理地估算线程池大小?这个问题虽然看起来很小,却并不那么容易回答。大家如果有更好的方法欢迎赐教,先来一个天真的估算方法:假设要求一个系统的 TPS(Transaction Per Sec...
分类:
编程语言 时间:
2015-04-08 01:04:08
阅读次数:
217
AUTONOMOUS TRANSACTION(自治事务)的介绍 在基于低版本的ORACLE做一些项目的过程中,有时会遇到一些头疼的问题,比如想在执行当前一个由多个DML组成的transaction(事务)时,为每一步DML记录一些信息到跟踪表中,由于事务的原子性,这些跟踪信息的提交将决定于主事务的....
分类:
数据库 时间:
2015-04-07 17:02:54
阅读次数:
172
事务(Transaction)是并发控制的基本单位。所谓的事务,它是一个操作序列,这些操作要么都执行,要么都不执行,它是一个不可分割的工作单位。例如,银行转账工作:从一个账号扣款并使另一个账号增款,这两个操作要么都执行,要么都不执行。所以,应该把它们看成一个事务。事务是数据库维护数据一致性的单位,在...
分类:
数据库 时间:
2015-04-06 16:54:25
阅读次数:
149
题目:
Say you have an array for which the ith element is the price of a given stock on day i.If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock),...
分类:
其他好文 时间:
2015-04-05 23:37:03
阅读次数:
153
OLTP,也叫联机事务处理(Online Transaction Processing),表示事务性非常高的系统,一般都是高可用的在线系统,以小的事务以及小的查询为主,评估其系统的时候,一般看其每秒执行的Transaction以及Execute SQL的数量。在这样的系统中,单个数据库每秒处理的Transaction往往超过几百个,或者是几千个,Select 语句的执行量每秒几千甚至几万个。典型的O...
分类:
其他好文 时间:
2015-04-05 16:06:14
阅读次数:
137
演示不同隔离级别下的并发问题1.当把事务的隔离级别设置为read uncommitted时,会引发脏读、不可重复读和虚读A窗口set transaction isolation level read uncommitted;start transaction;select * from accou....
分类:
其他好文 时间:
2015-04-05 11:52:51
阅读次数:
128