- 浏览: 38271 次
- 性别:
- 来自: 南京
最新评论
-
yehuidehao:
...
DBA常用SQL查询 -
likeblood:
我觉得应该有获得这类数据的meta,如同获得数据库类型的一样
在你的应用中判断所在的应用服务器类型
文章列表
第1章 性能调整综述
Oracle数据库是高度可调的数据库产品。本章描述调整的过程和那些人员应与Oracle服务器的调整有关,以及与调整相关联的操作系统硬件和软件。本章包括以下方面:
l 谁来调整系统?
l ...
1.简介
现摘录一段Java5内存管理白皮书中的一段话:
One strength of the Java™ 2 Platform, Standard Edition (J2SE™) is that it performs automatic memory
management, thereby shielding the developer from the complexity of explicit memory management.
由上面我们可 ...
1. 查看表空间的名称及大小
select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size
from dba_tablespaces t, dba_data_files d
where t.tablespace_name = d.tablespace_name
group by t.tablespace_name;
2. 查看表空间物理文件的名称及大小
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_ ...
PropertyConfigurator.configureAndWatch("/WEB-INF/log4j.properties", 1000);
log4j自带有FileWatchdog功能:
PropertyConfigurator.configureAndWatch("c://log4j.properties",60000);//每分钟检测一次文件是否被更改,如果更改,则自动重新读取配置。
DOMConfigurator.configureAndWatch("c://log4j.properties&q ...
在不同的应用服务器中,所用的相对路径有所不同,只有区分开所用的应用服务器,才能正确地应用的你路径。ServerDetector.java很好的解决了这个问题。
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
public class ServerDetector {
public static final String GERONIMO_CLASS =
"/org/apache/geronimo/system/main/D ...