- 博客(138)
- 收藏
- 关注
原创 PL/SQL三种集合类型的比较
PL/SQL三种集合类型的比较 集合是指在一个程序变量中包含多个值。PL/SQL提供的集合类型如下: Associative Array:TYPE t IS TABLE OF something INDEX BY PLS_INTEGER;Nested Table:TYPE t IS TABLE OF something;...
2009-07-12 13:19:47 125
一直在linux下运行服务器,今天尝试了一下windows下的websphere,也很不错
1. 默认的websphere试用版安装作为一个windows服务,启动的时候会出错,所以,安装后要删除, wasservice -remove robertNode01, robertNode01 is the windows service name. 2. Start the websphere, startServer.bat server1...
2009-06-26 20:45:05 98
Replace text in file
Windows @echo offif %1%.==. ( echo Usage: %0% FILE_FULL_PATH SOURCE_STRING DESTINATION_STRING echo Where: FILE_FULL_PATH is the full path of the file to be replaced in echo ...
2009-06-09 21:53:21 112
View object source
Oracle select text from user_source DB2 select text from syscat.tables select text from syscat.procedureswhere procschema= and procname=
2009-06-08 20:41:37 109
cpio
Extract cpio -i </home/robert/abc.cpio Package find . -print | cpio -ocv >/home/robert/abc.cpio
2009-06-08 15:31:48 121
原创 nohup
nohup 命令用途不挂断地运行命令。 语法nohup { -p pid | Command [ Arg ... ] [ & ] } 描述nohup 命令运行由 Command 参数和任何相关的 Arg 参数指定的命令,同时忽略所有的挂起(SIGHUP)信号,或者修改用 -p 选项指...
2009-06-04 00:25:56 100
原创 Jave VM memory Arg/Java 虚拟机内存参数
http://winywan.com/index.php/reviews/java-foundation/2009/01/05/94/JVM参数详解以及配置调优基本概念:PermGen space:全称是Permanent Generation space。就是说是永久保存的区域,用于存放Class和Meta信息,Class在被L...
2009-05-22 16:05:21 262
Weblogic/ADF/Fussion Middleware
http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/deployment_topics.htm#CIHHFCFFhttp://e-docs.bea.com/wls/docs81/deployment/tools.html#1000477http://otnbeta.oracle.com/fmw11g/582tj3...
2009-05-22 00:35:44 92
BufferredOutputStream
BufferredOutputStream is not implemented consistently between Windows and Linux. Take this for an example, BufferredOutputStream bos = new BufferredOutputStream (new FileOutputSteam); ...
2009-05-16 20:08:21 146
Change the sequence
CREATE SEQUENCE DEMO.S_CUST_ID START WITH 2 MAXVALUE 10000000 MINVALUE 1 CYCLE NOCACHE NOORDER;ALTER SEQUENCE DEMO.S_CUST_ID INCREMENT BY 1 MINVALUE 1 ...
2009-05-08 13:43:14 114
原创 How to configure OID Authentication in Weblogic
Oracle WebLogic Server provides a plugable security architecture in which authentication providers handle user identification. One of the native authentication providers in WebLogic server is for a ...
2009-04-28 23:22:39 135
oid/oim/ldap/jndi API
Reference http://download.oracle.com/docs/cd/B15904_01/manage.1012/b14087/toc.htm OID/OIM is an implementation of JNDI by LDAP.(Actually, it has C API to access it as well.) 1. Put th...
2009-04-28 22:45:02 140
impdp
impdb loads the dmp file from ORACLE_HOME/admin/ORACLE_SID/dpdump/test.dump, so before we run impdb, we put it into this folder. oracle@laptop-ubuntu:/opt/oracle/admin/orcl/dpdump$ impdp system/ma...
2009-04-27 19:29:38 138
EAR/WAR/JAR(EJB) structure
http://www.oracle.com/technology/global/cn/pub/articles/dev2arch/2008/01/packaging-best-practices.html
2009-04-16 01:38:33 83
Start to use svn
http://artis.imag.fr/~Xavier.Decoret/resources/svn/index.htmlhttp://www.logos.ic.i.u-tokyo.ac.jp/~kenny/pukiwiki/index.php?Linux%2FSVNhttp://svn.collab.net/repos/svn/trunk/doc/user/svn-best-practi...
2009-04-14 15:18:29 89
原创 羊蝎子
http://luxd518.blog.163.com/blog/static/22851862200731611658599/ 羊蝎子一般有两种做法,一种是红汤,一种是白汤的,我觉得白汤羊蝎子比红汤的羊蝎子的味道更鲜美。首先,要准备十斤羊的脊骨,二斤羊的腿骨,将羊的脊骨按着骨头节剁成块,再把羊腿骨剁折,然后一起放到锅里用热水烫一下,把羊的腥膻味和血污去掉。将用水烫完的羊腿骨摆在锅底,再将羊...
2009-04-03 22:22:44 147
Oracle Appserver remote deployment
java -jar admin_client.jar deployer:oc4j:opmn://localhost:6003/default_group oc4jadmin manager -validateURI
2009-04-03 11:02:07 104
浏览器Plugin总结(ActiveX vs. Gecko SDK)
Java Applet Java Applet runs inside a Java plugin in the explorer. In IE, the plugin is a kind of ActiveX. Please see the diagram. Hoever, in firefox, it is a plugin implemented by Gecko SDK(...
2009-03-12 22:22:32 186
原创 Firefox Plugin - Gecko SDK/npapi
原文: 1. http://mqjing.blogspot.com/2008/09/plugin-firefox-plugin.html2. http://mqjing.blogspot.com/2008/10/firefox-firefox-xpi-50.html 如何写Firefox Plugin 如果想讓你的 binary 軟体元件在瀏覽器上能夠執行, 你需要實做一...
2009-03-12 21:40:25 388
原创 javascript与applet之间相互通讯
javascript与applet之间能够相互通讯给我们带来了很多方便,Java与JavaScript互相补充,以开发功能更完美的Web应用程序。B/S下能够充分利用java的优势,给我们带来更多的网络体验, 方便用户。我用的比较多的是利用Swing组件开发的应用程序利用applet实现B/S下架构, 这样能够充分显示Swing组件的优势,便于系统升级,便于维护;还有就是在WEB下,有时客户端要使...
2009-03-11 21:08:08 147
原创 Linux 查看磁盘分区、文件系统、使用情况的命令和相关工具介绍
原文 http://www.linuxsir.org/main/node/188?q=node/41Linux 查看磁盘分区、文件系统、使用情况的命令和相关工具介绍 作者:北南南北来自:LinuxSir.Org提要:Linux磁盘分区表、文件系统的查看、统计的工具很多,有些工具是多功能的,不仅仅是查看磁盘的分区表,而且也能进行磁盘分区的操作;但在本文,我们只讲磁盘分区...
2009-03-11 00:46:09 132
Solaris Compiz Desktop Effect doesn't work.
When I enable the Solaris Desktop Effect to Normal, then the System is dead. After I force to restart it, it is still dead when the Gnome is launched. Solution: 1. In $HOME/.gconf/desktop/gnome/a...
2009-03-01 23:34:10 96
原创 exp/imp
exp 将数据库内的各对象以二进制方式下载成dmp文件,方便数据迁移。 buffer:下载数据缓冲区,以字节为单位,缺省依赖操作系统 consistent:下载期间所涉及的数据保持read only,缺省为n direct:使用直通方式 ,缺省为n feeback:显示处理记录条数,缺省为0,即不显示 file:输出文件,缺省为expdat.dmp filesiz...
2009-02-25 00:17:03 564
Oracle Appserver - Common Logging - Log4j
In Oracle Appserver, when an EAR file is deployed, which contains common loggin and log4j, it says No Suitable Log Constructor when you try to get a log from log factory.After investigation, it is cau...
2009-02-24 11:42:36 117
Common Logging
1. Specify the log implementation. commons-logging.properties 2. Guess which log implementation should be used. There are two base abstractions used by JCL: Log (the basic logger) and Lo...
2009-02-24 00:27:00 108
Log4j
1. Default property file. CLASSPATH/log4j.configuration 2. Overrided property file. log4j.configuration=log4j.configuration 3. Default initialization algorithmSetting the log4j.defaultInit...
2009-02-24 00:16:44 85
JDK 1.4 Logging
1. Default property file. By default, JDK 1.4's logging package looks in the JAVA_HOME/lib/logging.properties file for logging configuration. 2. Overrided property file. java -Djava.util.log...
2009-02-23 23:26:05 90
Map net drive in Windows
net use R: \\host\folder password /USER:user /PERSISTENT:YES
2009-02-22 19:28:24 149
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人