??
ORACLE 11G 如何修改 awr 的保留期限小于8天
Oracle Database 11g 默认具备一个系统定义的Moving Window Baseline,该基线对应于 AWR 保留期中的所有 AWR 数据。
仅可存在一个Moving Window Baseline。
系统定义的Moving Window Baseline认大小为当前的AWR保留期,即默认为八天。
如果...
分类:
数据库 时间:
2014-07-22 23:05:33
阅读次数:
358
首先以管理员密码登录
如果发现仍然登录不进去了,可以将Oracle安装的Linux的系统时间提前,修改方法是:
date -s 04/29/2014
date -s 17:52:00
clock -w
1. 查看用户的profile设置:
SELECT username,profile FROM dba_users;
SELECT username,profil...
分类:
其他好文 时间:
2014-07-22 23:03:54
阅读次数:
423
oracle@ywdb ~]$ sqlplus "/as sysdba"
SQL*Plus: Release 11.1.0.7.0 - Production on Tue Apr 29 15:40:38 2014
Copyright (c) 1982, 2008, Oracle. All rights reserved.
Connected to:
Oracle Data...
分类:
数据库 时间:
2014-07-22 23:01:54
阅读次数:
435
[ 问题: ]
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were
inserted in order. You may assume no duplicates in th...
分类:
其他好文 时间:
2014-07-22 23:01:15
阅读次数:
270
输入:表名、每页显示的记录数、当前页输出:总记录数、总页数、结果集--首先,创建一个包,定义游标类型CREATE OR REPLACE PACKAGE
fenye_package ISTYPE fenye_cursor IS REF CURSOR;END fenye_package; --输入:表名...
分类:
数据库 时间:
2014-05-02 22:02:04
阅读次数:
411
Java8已经推出,让我们看看他的魅力。让我们看看他改变较大的部分。 一、java8概述
Java8是由Oracle(甲骨文)公司与2014年3月27日正式推出的。Java8同时推出有3套语言系统,分别是Java SE8、Java SE
Emebbled 8、Java ME8。 Java ...
分类:
编程语言 时间:
2014-05-02 00:21:23
阅读次数:
286
??
xml publisher根据条件显示或隐藏列
if@column:condition?>
……
例子:
根据PROJECT_FLAG标签显示或隐藏项目号的列
IF 项目号 EI
IF PROJECT_NUMBER EI
IF:
EI:
注意:对应的PROJECT_FLAG需要同时在头和行上有...
分类:
其他好文 时间:
2014-04-30 22:43:40
阅读次数:
258
public function index(){
header('Content-Type:text/html;charset=utf-8 ');
$M = M("Constant");
$count = $M->where($where)->count();
import("ORG.Util.Page"); // 导入分页类
...
分类:
Web程序 时间:
2014-04-30 22:27:39
阅读次数:
343
在PL/SQL程序中,对于处理多行记录的事务经常使用游标来实现。...
分类:
数据库 时间:
2014-04-30 22:16:38
阅读次数:
332