码迷,mamicode.com
首页 >  
搜索关键字:transaction not succ    ( 2323个结果
SQL Server——事务嵌套
http://www.cnblogs.com/Kymo/archive/2008/05/14/1194161.html先看一下SQL Server Online Help相关的说明Begin Transaction:标记一个显式本地事务的起始点。BEGIN TRANSACTION 使 @@TRANC...
分类:数据库   时间:2014-09-09 11:23:18    阅读次数:279
leetcode 之 Best Time to Buy and Sell Stock
Best Time to Buy and Sell Stock  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,...
分类:其他好文   时间:2014-09-08 09:39:06    阅读次数:312
Best Time to Buy and Sell Stock <leetcode>
Say you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transaction (ie...
分类:其他好文   时间:2014-09-07 13:24:55    阅读次数:229
SqlServer——事务一编程进阶(SqlServer技术内幕 T-SQL程序设计 第九章
一般不要修改SQLServer事务的默认级别。不推荐强行加锁 1 执行 EXEC SP_LOCK 报告有关锁的信息 1 如何锁一个表的某一行 SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED SELECT * FROM table ROWLOCK .....
分类:数据库   时间:2014-09-05 19:55:51    阅读次数:229
Hibernate脏数据检查
脏数据检查:    什么是脏数据?脏数据并不是废弃和无用的数据,而是状态前后发生变化的数据。我们看下面的代码:  Transaction tx=session.beginTransaction();  User user=(User)session.load(User.class,”1”);//从数据库中加载符合条件的数据  user.setName(“zx”);//改变了...
分类:系统相关   时间:2014-09-04 19:09:20    阅读次数:285
UNDO三大作用与一致性读机制浅析
UNDO三大作用1.一致性读(consistent read)2.事务回滚(Rollback Transaction)3.实例恢复(Instance Recovery)一致性读当会话发出一条SQL查询,将当前时间的SCN号记录下来,当进程扫描到表T的数据块,再与该块头部的ITL槽(事务槽)的SCN号...
分类:其他好文   时间:2014-09-04 16:43:09    阅读次数:293
(转)Oracle 临时表用法
本文转载自:http://www.iteye.com/topic/371390ORACLE的临时表在应用系统中有很大的作用,它可以让用户只能够操作各自的数据中而互不干扰,不用担心会破坏或影响其他SESSION/TRANSACTION的数据,这也是数据安全的一种解决方法。 临时表分为SESSION、T...
分类:数据库   时间:2014-09-02 15:43:44    阅读次数:231
how to trace the error log
Executed as user: WTC\Ebw.Admin. Transaction (Process ID 95) was deadlocked on lock resources with another process and has been chosen as the deadlock...
分类:其他好文   时间:2014-09-02 12:19:24    阅读次数:200
设置Hibernate的二级Cache
设置Hibernate的二级Cache需要分两步进行:首先确认使用什么数据并发策略,然后配置缓存过期时间并设置Cache提供器。 有4种内置的Hibernate数据并发冲突策略,代表数据库隔离级别,如下: 1:事务(Transaction)仅在受管理的环境中可用。它保证可重读的事务隔离级别,可以对读/写比例高,很少更新的数据采用该策略。 2:读写(read-write)使用时间戳机制维护读写...
分类:系统相关   时间:2014-09-01 14:06:23    阅读次数:219
eclipse中的maven web项目报错:org/codehaus/plexus/archiver/jar/JarArchiver
Errors occurred during thebuild. Errors running builder 'Maven Project Builder' on project'ebus.transaction'. org/codehaus/plexus/archiver/jar/JarArchiver 两种方式参考: 第一种:在pom.xml文件里的maven-compiler-...
分类:Web程序   时间:2014-08-31 21:30:11    阅读次数:710
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!