需求:通过Model类属性动态生成DataGrid表格
1、定义ColumnTitle注解类
package com.mrchu.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;...
分类:
其他好文 时间:
2015-01-13 17:47:09
阅读次数:
151
backup命令中的 keep forever关键字会 屏蔽rman的retention policy...
分类:
其他好文 时间:
2015-01-06 18:00:56
阅读次数:
269
1.设置闪回恢复区闪回恢复区主要通过3个初始化参数来设置和管理db_recovery_file_dest:指定闪回恢复区的位置db_recovery_file_dest_size:指定闪回恢复区的可用空间大小db_flashback_retention_target:指定数据库可以回退的时间,单位为...
分类:
数据库 时间:
2015-01-06 17:22:05
阅读次数:
316
You defined the Recovery Manager (RMAN) retention policy to recovery
window of 7 days by executing the following command:
RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
When a ...
分类:
数据库 时间:
2014-12-29 15:23:32
阅读次数:
186
首先,我们先写出一个自定义的注解
package com.test.aonntion;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.T...
分类:
编程语言 时间:
2014-12-26 16:52:08
阅读次数:
205
An RMAN backup job fails, displaying the following error:
ORA-19809: limit exceeded for recovery files
Your analysis shows that the Flash Recovery area is full. Which two a
ctions could you tak...
分类:
数据库 时间:
2014-12-25 10:02:40
阅读次数:
183
概念 ????????注解@Retention可以用来修饰注解,是注解的注解,称为元注解。 ????????Retention注解有一个属性value,是RetentionPolicy类型的,Enum RetentionPolicy是一个枚举类型, ?????...
分类:
其他好文 时间:
2014-12-24 16:31:24
阅读次数:
212
@Target(value={METHOD,ANNOTATION_TYPE}) @Retention(value=RUNTIME) @Documentedpublic @interface BeanIndicates that a method produces a bean to be manag...
分类:
其他好文 时间:
2014-12-19 15:37:46
阅读次数:
627
1. 基本语法? Java代码? import?java.lang.annotation.ElementType;??
import?java.lang.annotation.Target;??
//?The?@Bind?tag.??
@Target(ElementType.METHOD)??
@Retention(RetentionPolicy.R...
分类:
编程语言 时间:
2014-12-11 12:34:28
阅读次数:
194
跟undo 相关的两个参数:
undo_tablespace
UNDO_MANAGEMENT =auto
在oracle 9i 以后 oracle 推荐我们使用 undo 自动管理;
undo_retention
这个参数用来保证undo 回滚段中的内容不会被覆盖。但是这个参数使用时要和 undo 的大小设置(maxsize ,unlimit )一起考虑。...
分类:
数据库 时间:
2014-11-27 18:31:19
阅读次数:
249