环境:RAC 4节点、oracle 11.2.0.4、redhat 5.9 64bit 问题描述: 1.alert.log每隔一段时间就会报如下错误: Transaction recovery: lock conflict caught and ignored Transaction recover...
分类:
其他好文 时间:
2014-10-31 21:53:11
阅读次数:
1255
AOP(AspectOrient Programming),也就是面向切面编程。AOP将应用系统分为两部分,核心业务逻辑(Core business concerns)及横向的通用逻辑,也就是所谓的方面Crosscuttingenterprise concerns,例如,所有大中型应用都要涉及到的持久化管理(Persistent)、事务管理(Transaction Management)、安全管理...
分类:
编程语言 时间:
2014-10-31 19:08:32
阅读次数:
222
1、报错如下:Invalid Operation the connection is closed,无效操作,连接被关闭。这个错误是并不是每次都报,只有在复杂操作、大事务的情况下才偶然报出来。stackOverflow上有很多关于这个问题的讨论,例如这个:《System.Data.OracleCli...
分类:
其他好文 时间:
2014-10-31 18:52:42
阅读次数:
664
In this Document
Goal
Solution
References
APPLIES TO:
Oracle Inventory Management - Version: 10.7 to 12.1.3 - Release: 10.7 to 12.1
Information in this document applies to any pl...
分类:
其他好文 时间:
2014-10-30 19:16:45
阅读次数:
183
In this Document
Goal
Solution
References
APPLIES TO:
Oracle Inventory Management - Version 10.7 to 12.1.3 [Release 10.7 to 12.1]
Information...
分类:
其他好文 时间:
2014-10-30 19:15:23
阅读次数:
231
今天遇到了一个应用程序死锁了,由于是在测试人员的环境中,所以生成了一个dump文件,生成dump文件的方法可以用任务管理器,在任务管理器的进程列表中点击右键,选择“Create Dump File”,就会为该进程生成一个mini dump文件。
由于是自己的程序,所以一般进程对应的pdb文件和源代码文件都有。下面以visual studio 2010和windbg分别说明如何定位到死锁代码。
...
分类:
其他好文 时间:
2014-10-30 00:22:03
阅读次数:
148
数据处理大致可以分成两大类: 联机事务处理OLTP (on-line?transaction?processing)、 联机分析处理OLAP (On-Line?Analytical?Processing)。 OLTP是传统的关系型数据库的主要应用 ,主要是基本的、日...
分类:
数据库 时间:
2014-10-29 13:14:31
阅读次数:
266
今天在本地机直接在触发器里更新还有一台服务器数据时出现: MSDTC不可用解决的方法:在windows控制面版-->管理工具-->服务-->Distributed Transaction Coordinator-->属性-->启动 1.A.不用事务,关用SELECT 语句.能否够分布式查询? B.L...
分类:
数据库 时间:
2014-10-29 12:17:08
阅读次数:
208
这篇文章我们来学习下所有可用的垃圾收集器类型。java目前有四种类型的垃圾收集器:
1.串行垃圾收集器(Serial Garbage Collector);
2.并行垃圾收集器(Parallel Garbage Collector);
3.CMS垃圾收集器(CMS Garbage Collector);
4.G1垃圾收集器(G1 Garbage Collector);
...
分类:
其他好文 时间:
2014-10-29 00:18:10
阅读次数:
287
AtomicLong can make sure at one time only one thread can use itlock can lock a section of a procedure to ensure that only one thread to run the sectio...
分类:
编程语言 时间:
2014-10-29 00:01:35
阅读次数:
474