自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Christiano.W的博客

----顺其自然

  • 博客(6)
  • 资源 (12)
  • 收藏
  • 关注

转载 Oracle listener静态注册和动态注册总结

<br />曾经遇到一个问题,oracle10g里通过netca命令得到的listener.ora默认就是动态监听,但是默认没有设置instance_name和service_names参数。我一般是先启动db,然后启动监听,当时怎么启动监听,通过lsnrctl status都看不到数据库实例,负责Veritas配置HA的工程师都等不下去了,最后我们只好手工修改listener.ora文件增加了实例信息才配置HA成功。现在看看下面文章就明白了! <br /><br />一、什么是注册?<br /><br /

2010-06-28 17:16:00 729

转载 oracle 表空间管理

<br />表空间是ORACLE数据库最高层次的逻辑存储结构,保存段、区、块,由一个或多个数据文件组成。<br />块的存储管理<br />块是ORACLE存储结构的最小单位。块大小分为标准数据块和非标准数据块<br />标准数据块由DB_BLOCK_SIZE设定,创建数据库时设定的,创建完数据库后不能修改。<br />非标准块可以有4种,由初始化参数DB_nk_CACHE_SIZE设置,可在数据库创建后使用。<br />数据块的管理方法分为:<br />1、自动管理方式  如创建表空间时设置为本地管理方式

2010-06-18 11:24:00 8335

转载 Sun Java HotSpot™ Virtual Machine内存模型与垃圾回收

<br />分代收集(Generational Collecting)<br />基于对对象生命周期分析后得出的垃圾回收算法,把对象分为年轻代、年老代、持久代,对不同生命周期的对象使用不同的算法进行回收。现在的垃圾回收器(从J2SE1.2开始)都是使用此算法。<br /><br />Sun JVM内存区域分布图<br /><br />1)Young(年轻代)<br />Young被划分为三个区间,Eden区和两个大小严格相同的Survivor区,其中Survivor区,在某一时刻只有其中一个是被使用的,另外

2010-06-12 08:28:00 1305

转载 详细讲解Oracle数据库管理员认证方法

<br />Oracle管理员认证方法 <br /><br />  1.管理员的权限: <br /><br />  SYSDBA: 默认schema 为SYS <br /><br />  SYSOPER: 默认schema 为 PUBLIC <br /><br />  这两种权限允许用户在数据库没有打开的时候就可以登陆数据库,所以这种权限的控制权在数据库之外。通常这种权限也可以被看做一种允许你对数据库进行某种操作的连接,比如CONNECT / AS SYSDBA <br /><br />  2.两种管理员权

2010-06-10 09:55:00 688

转载 Java的内存泄漏

        Java的一个重要优点就是通过垃圾收集器(Garbage Collection,GC)自动管理内存的回收,程序员不需要通过调用函数来释放内存。因此,很多程序员认为Java不存在内存泄漏问题,或者认为即使有内存泄漏也不是程序的责任,而是GC或JVM的问题。其实,这种想法是不正确的,因为Java也存在内存泄露,但它的表现与C++不同。问题的提出        Java的一个重要优点就是通过垃圾收集器(Garbage Collection,GC)自动管理内存的回收,程序员不需要通过调用函数来释放内

2010-06-07 11:37:00 345

原创 Java类的初始化顺序

Java类中的函数初始化顺序1、  静态成员变量2、  静态语句块3、  非静态成员变量4、  非静态语句块5、  构造函数测试代码如下:package test;public class InitSquence { public static void main(String[] args){  System.out.println("Inside main()");  Cups c = new Cups();  c.cup1.f(99); }}class Cup{ Cup(int marker){  S

2010-06-07 11:02:00 346

rabbitmq-server-generic-unix-3.8.2.tar.xz

rabbitmq server. RabbitMQ是实现了高级消息队列协议(AMQP)的开源消息代理软件

2020-02-22

Akka实战:快速构建高可用分布式应用

在大力提倡互联网+的今天,人们在PC、手机、Pad上安装了各式各样的软件服务或APP,享受着互联网技术带来的高效和便捷。同时,随着这些产品的高速发展,用户规模急剧扩大,系统承载能力会逐渐达到瓶颈,一些早期不常出现的问题也会慢慢浮出水面。实际上,系统开发者们也越来越重视软件的稳定性、高可用性、可扩展性对用户体验的影响,大家纷纷使出浑身解数,实践出多个构建大型应用所需要的技术架构。在这些架构方案中,有几个词始终不绝于耳,那就是:“高并发”“分布式”“高可用”。

2018-11-28

《ActiveMQ in Action》2010版

这是最新版的《ActiveMQ in Action》包括第7、9、11、13等章节

2009-12-03

Linux Device Drivers 3rd

This is, on the surface, a book about writing device drivers for the Linux system. That is a worthy goal, of course; the flow of new hardware products is not likely to slow down anytime soon, and somebody is going to have to make all those new gadgets work with Linux. But this book is also about how the Linux kernel works and how to adapt its workings to your needs or interests. Linux is an open system; with this book, we hope, it is more open and accessible to a larger community of developers.

2009-10-15

Linux Kernel Development Second Edition

The Linux kernel is one of the most interesting yet least understood open-source projects. It is also a basis for developing new kernel code. That is why Sams is excited to bring you the latest Linux kernel development information from a Novell insider in the second edition of Linux Kernel Development. This authoritative, practical guide will help you better understand the Linux kernel through updated coverage of all the major subsystems, new features associated with Linux 2.6 kernel and insider information on not-yet-released developments. You'll be able to take an in-depth look at Linux kernel from both a theoretical and an applied perspective as you cover a wide range of topics, including algorithms, system call interface, paging strategies and kernel synchronization. Get the top information right from the source in Linux Kernel Development.

2009-10-15

Oracle+9i&amp;10g编程艺术

在本书中,我不仅会尽力阐明各个特性如何工作,还会指出什么情况下要考虑使用某个特性或实现, 并解释为什么。我认为,理解“怎么做”固然很重要,但理解“什么时候做”和“为什么这样做”(以及“什 么时候不做”和“为什么不做”)也同样重要!

2009-07-21

AspectJCookBook 源码

是AspectJCookBook这本书的电子版及其源码

2009-07-16

Foundations of AOP for J2EE Development

This book presents aspect-oriented programming (AOP), which defines a new programming paradigm. By the word paradigm, we mean a set of principles that structure the modeling of programs and, as a consequence, the development of programs.

2009-07-10

Ant权威指南-介绍ant的书籍

I have to confess that I had absolutely no idea that Ant, the little build tool that could, would go as far as it did and make such a mark on the Java developer community. When I wrote the first version of Ant, it was a simple hack to help me solve a cross-platform build problem that I was having. Now it's grown up and being used by thousands of developers all over the planet. What's the magic behind this? How did this little program end up being used by so many people? Maybe the story of how Ant came to be holds some clues.

2009-06-05

hibernate search in action

Hibernate Search is a library providing full-text search capabilities to Hibernate. It opens doors to more human friendly and efficient search engines while still following the Hibernate and Java Persistence development paradigm. This library relieves you of the burdens of keeping indexes up to date with the database, converts Lucene results into managed objects of your domain model, and eases the transition from a HQL-based query to a full-text query. Hibernate Search also helps you scale Lucene in a clustered environment.

2009-06-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除