码迷,mamicode.com
首页 >  
搜索关键字:transaction    ( 2262个结果
Asp.net设计模式笔记之三:业务逻辑层的组织
本章内容要点:1.Transaction Script模式组织业务逻辑2.Active Record模式和Castle Windsor来组织业务逻辑3.Domain Model模式来组织业务逻辑4.Anemic Model模式和Domain Model 来组织业务逻辑的差异5.理解领域驱动设计DDD...
分类:Web程序   时间:2014-09-10 09:25:50    阅读次数:308
Entity Framework - Using Transactions or SaveChanges(false) and AcceptAllChanges()?
LINK With the Entity Framework most of the time SaveChanges() is sufficient. This creates a transaction, or enlists in any ambient transaction, and do...
分类:其他好文   时间:2014-09-09 11:59:48    阅读次数:160
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!