2012年3月7日
摘要: Oracle调度是指定时的启动程序,执行相应的操作,Oracle10G中dbms_job包(位于SYS用户下),Oracle已经提供了DBMS_SCHEDULER用来替代它。逐步的摒弃dbms_job包。This package is deprecated and has been supplanted by DBMS_SCHEDULER.dbms_job包下使用的参数: -- JOB is the number of the job being executed. -- WHAT is the PL/SQL procedure to execute. -- The job must... 阅读全文
posted @ 2012-03-07 20:46 Coldest Winter 阅读(1245) 评论(0) 推荐(0)
摘要: Tablespaces and the Structure of the Database People who have worked with computers for any period of time are familiar with the concept of afile; it’s a place on disk where information is stored, and it has a name. Its size is usually not fixed: Ifyou add information to the file, it can grow larg.. 阅读全文
posted @ 2012-03-07 07:07 Coldest Winter 阅读(389) 评论(0) 推荐(1)
  2012年3月6日
摘要: java反射的使用: 1 package com.test.struts2; 2 3 import java.lang.reflect.Constructor; 4 import java.lang.reflect.Field; 5 import java.lang.reflect.Method; 6 7 import com.opensymphony.module.sitemesh.util.ClassLoaderUtil; 8 9 public class TestReflect { 10 11 private String userName; 12 1... 阅读全文
posted @ 2012-03-06 20:26 Coldest Winter 阅读(277) 评论(0) 推荐(0)
  2012年3月5日
摘要: 几种常见的Oracle备份方法:The backup methods provided by Oracle can be categorized as follows:■ Logical backups using Data Pump Export and Import■ Logical backups using Export (and its companion utility, Import)■ Physical file system backups: offline backups and online backups■ Incremental physical file syste 阅读全文
posted @ 2012-03-05 22:39 Coldest Winter 阅读(344) 评论(0) 推荐(0)
  2012年2月12日
摘要: 在实际的工作中,可能会用到反编译工具,尤其对于定制的myeclipse开发平台,很多的公共方法都进行二次分装,无法直接查看,通过本插件的安装,可以直接点击查看分装在jar包中的class文件,这对学习SSH的源码包提供了一定的方便。注意:本人安装了该插件,导致myeclipse的SVN版本工具无法使用,特此声明,需要提前进行备份myeclipse。安装环境为myeclipse8.5,请注意首先下载反编译工具的安装包:http://java.decompiler.free.fr/jd-eclipse/update/jdeclipse_update_site.zip将下载的压缩包拷贝到myecli 阅读全文
posted @ 2012-02-12 22:59 Coldest Winter 阅读(3363) 评论(3) 推荐(0)
摘要: 官方网址:http://notepad-plus-plus.org/下载后,直接点击安装,就可以使用了,下面介绍该软件很有用的一个插件:Explorer plugin,大家也可以根据自己的需求定制安装插件:点击:插件---plugin manager---showplugin manager:在available中查出Explorer,点击install,安装。安装成功后,需要点击插件,Explorer--Explorer启用他。点击小红三角形,可以查看当前文件夹下面的所有文件,并可以快速的访问; 阅读全文
posted @ 2012-02-12 22:58 Coldest Winter 阅读(1472) 评论(0) 推荐(0)
  2012年2月11日
摘要: Three different types of joins(三种不同方式的连接)inner joins - Return a row only when the columns in the join containvalues that satisfy the join condition.This means that if a row has a null value in one of the columns in thejoin condition, that row isn't returned.Outer joins - Can return a row even wh 阅读全文
posted @ 2012-02-11 17:56 Coldest Winter 阅读(428) 评论(0) 推荐(0)
  2012年2月10日
摘要: user login 阅读全文
posted @ 2012-02-10 20:52 Coldest Winter 阅读(377) 评论(0) 推荐(0)
  2012年2月7日
摘要: 包头: 1 CREATE OR REPLACE PACKAGE EMP_SIMPLE_DEMO IS 2 3 --定义一个游标 4 TYPE EMP_REF_CURSOR IS REF CURSOR; 5 6 /** 7 *分页存储过程 8 *要求可以输入表名,每页显示记录数、当前页。返回总记录数,总页数,和返回的结果集。 9 */10 PROCEDURE FENYE(I_TABLENAME IN VARCHAR2, --表名11 I_PAGESIZE IN PLS_INTEGER, --页大小12 ... 阅读全文
posted @ 2012-02-07 22:50 Coldest Winter 阅读(282) 评论(0) 推荐(0)
  2012年1月14日
摘要: 建立错误信息表:1 CREATE TABLE error_logs ( 2 id NUMBER(10) NOT NULL, 3 log_timestamp TIMESTAMP NOT NULL, 4 error_message VARCHAR2(4000)... 阅读全文
posted @ 2012-01-14 22:17 Coldest Winter 阅读(259) 评论(0) 推荐(0)