- 浏览: 307373 次
- 性别:
- 来自: 杭州
最新评论
-
wst0350:
点赞,有空深入讲解下原理
Servlet、Filter 和 Listener 调用顺序、生命周期的实验分析 -
tuspark:
Eclipse中高亮设置内容还有很多细节选项可以设置的,可以看 ...
Eclipse 设置匹配代码高亮 -
xichao1929:
这个时候,怎么启动发布的项目呢?????
JBoss设置为Windows服务 -
xiaozi7:
非常感谢,楼主的英语水平不一般那
WebSphere MQ Version 7 发布订阅相关配置 -
qtlkw:
slave没玩过
Hudson: java.lang.OutOfMemoryError: Java heap space error
文章列表
参照http://www.ibm.com/developerworks/cn/websphere/library/techarticles/loulijun/MQperformance.html
和http://www.ibm.com/developerworks/cn/websphere/library/techarticles/0712_dunn/0712_dunn.html
1. It is better when the MQ and WAS set up in the same machine.
2. You should change the "Max qu ...
参照http://blog.csdn.net/russle/archive/2010/06/30/5704354.aspx
正在用的数据库出现这个错误,现在按照已知的调整方面对数据库参数做了修改后可以正常使用,现在记录下这些修改。
COM.ibm.db2.jdbc.DB2Exception: [IBM][CLI Driver][DB2/LINUXX8664] SQL0964C The transaction log for the database is full.
这个错误还是第一次遇到,于是记录了解决方法:
解决步骤:
先将事务显式终止:使用commit或rollback命令
d ...
D:\oracle\product\10.2.0\db_1\install 目录上。打开:portlist.ini 文件进行查看
可参照文档http://publib.boulder.ibm.com/infocenter/wmqv7/v7r0/index.jsp?topic=/com.ibm.mq.amq1ac.doc/lq10120_.htm
和http://blog.csdn.net/lang_ysh/archive/2010/03/18/5391971.aspx
1. Download WebSphere MQ7 tar.gz
2. run tar -zxvf CZ4VDML.tar.gz
3(optional). 创建WebSphere MQ 必需的文件系统,命令如下:
# for produc ...
1. Download statsvn.jar from http://www.statsvn.org/
2. Create a bat file, like this:
svn co https://svn仓库路径/geh-gal/trunk/GEH_GAL_DEV/APP/GEH_GAL/Source_Files
cd Source_Files
svn log -v --xml > ../logfile.log
cd ..
java -mx896m -jar statsvn.jar logfile.log ./Source_Files -output-dir . ...
配置MQ的QueueManager时要填写Dead-letter queue: SYSTEM.DEAD.LETTER.QUEUE
public class Node {
private Object data;
private Node next;
public Node(Object data, Node next) {
super();
this.data = data;
this.next = next;
}
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
}
public Node getNext ...
--=======================================
-- DB2 migrations version: GAL 5.0.0
--=======================================
--**********************************************clear procedure*********************************
--clear procedures that have exist
create procedure clear_proc(IN v_procedure ...
--==============================================================
-- migrate data define and body
--==============================================================
--**************************************************************migrate data begin**************************************
--open screen ...
改变用户在某表空间的配额不足
- 博客分类:
- ORACLE
(1)查看用户的表空间的限额:
select * from user_ts_quotas;
max_bytes字段就是了,-1是代表没有限制
(2)不对用户做表空间限额控制:
GRANT UNLIMITED TABLESPACE TO GAL_425_DATA;
这种方式是全局性的.
或者
alter user GAL_425_DATA quota unlimited on USERS(表示用户表空间);
这种方式是针对特定的表空间的.
(3)可以分配自然也可以回收了:
revoke unlimited tablespace from GAL_425_DATA;
或者
alter user ...
(转载)http://akdora.wordpress.com/2008/01/24/ora-01652-unable-to-extend-temp-segment-by-128-in-tablespace/
That error occurs when failed to allocate an extent of the required number of blocks for a temporary segment in the tablespace indicated.
So we can check this in two ways.
1. Check the datafiles ...
转载自: http://community.jboss.org/wiki/CanJBossTellMeWhenIDontCloseAConnection
Can JBoss AS tell me when I don't close connections, statements or resultsets?
Yes.
Connections
For connections the configuration is in deploy/transaction-service.xml
<attribute name="Debug">true</attrib ...
转载自: http://www.devx.com/Java/Article/41921/1954
Message-oriented middleware (MOM) decouples applications by allowing them to communicate using one of two messaging models: point-to-point messaging and publish/subscribe messaging. The models differ in fundamental ways, but neither requires applicati ...
本文是在SOLARIS小兵的文章基础上总结修改而成的:
一、设置Connector
修改server/default/deploy/jboss-web.deployer/server.xml
Xml代码
<Connector port="80" address="0.0.0.0"
maxThreads="250" maxHttpHeaderSize="8192"
emptySessionPath="true" protocol="HTTP/1.1"
...
JBoss安装成功后,一般可以通过http://localhost:port来访问,Jmx Console和Jboss Web Console 里面可以修改和删除应用的参数,如果不加强安全设置,将会带来严重安全后果。
关闭管理端口和相关统计信息:
step1: 关闭jmx-console, web-console
删除jboss-4.2.2.GA\server\default\deploy下jmx-console.war, management目录
step2: 关闭status统计信息
删除jboss-4.2.2.GA\server\default\deploy\jboss-web ...