动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
电脑书籍下载:程序设计书籍 | 数据库教程书籍 | 平面与多媒体书籍 | 网络通讯书籍 | 系统管理书籍 | 网络安全书籍 | 认证考试书籍
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > 数据库学院 > Oracle教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
数据库:数据库教程,数据库技巧,Oracle教程,MySQL教程,Access教程,DB2教程,数据库安全,数据库文摘
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ Oracle教程 ]的信息



本月文章推荐
.Linux上数据自动备份与刻录整合.
.如何让Oracle数据库始终保持优良.
.Oracle 的基础知识.
.SGA内参数设置.
.Statspack使用存在的几个误区.
.ORACLE 用户的规范化管理.
.9i新特性之一连接篇.
.LOG FILE 归档怎样做.
.Oracle安全全接触(完整版)二.
.Oracle 数据表分区的策略.
.Oracle数据库整机移植技术.
.Oracle Database 10 g : 为 DBA .
.在数据字典中直接修改Oracle表列.
.Oracle中捕获问题SQL语句.
.为数据库的表自动生成行号----为.
.简单提高ORACLE数据库的查询统计.
.Oracle 8i 到 9i 升级.
.linux显卡的配置(2).
.递归程序的应用.
.Oracle9iAS成为领先的J2EE应用服.
"ADD_LOGFILE Procedure" Adds a file to the existing or newly created list of archive files to process. "START_LOGMNR Procedure" Initializes the LogMiner utility. "END_LOGMNR Procedure" Finishes a LogMiner session. "MINE_VALUE Function" This function may be called for any row returned from V$LOGMNR_CONTENTS to retrieve the undo or redo column value of the column specified by the column_name input parameter to this function. "COLUMN_PRESENT Function" This function may be called for any row returned from V$LOGMNR_CONTENTS to determine if undo or redo column values exist for the column specified by the column_name input parameter to this function. Table 24-1 DBMS_LOGMNR Package Subprograms

Oracle9i Supplied PL/SQL Packages and Types Refere

发表日期:2008-2-9 |


DBMS_LOGMNRThe DBMS_LOGMNR package contains procedures used to initialize the LogMiner tool and to begin and end a LogMiner session. This chapter contains the following topics:
  • Using DBMS_LOGMNR
    • Security Model
    • Constants
    • Operational Notes
  • Summary of DBMS_LOGMNR Subprograms
DBMS_LOGMNR LogMiner allows you to make queries based on actual data values. For instance, you could issue a query to select all updates to the table scott.emp or all deletions performed by user scott. You could also perform a query to show all updates to scott.emp that increased sal more than a certain amount. SUCh data can be used to analyze system behavior and to perform auditing tasks. The DBMS_LOGMNR package contains procedures used to initialize the LogMiner tool. You use these procedures to list the redo log files to be analyzed and to specify the SCN or time range of interest. After these procedures complete, the server is ready to process SQL SELECT statements against the V$LOGMNR_CONTENTS view. The data in redo log files is especially important for recovery, because you can use it to pinpoint when a database became corrupted.You can then use this information to recover the database to the state just prior to corruption. This chapter discusses the following topics:
  • DBMS_LOGMNR Constants
  • Extracting Data Values From Redo Log Files
  • Example of Using DBMS_LOGMNR
  • Summary of DBMS_LOGMNR Subprograms

DBMS_LOGMNR Constants

The following sections describe the constants for the DBMS_LOGMNR package.

Constants for ADD_LOGFILE Options Flag

Constants for START_LOGMNR Options Flag

Extracting Data Values From Redo Log Files

LogMiner data extraction from redo log files is performed using two mine functions: DBMS_LOGMNR.MINE_VALUE and DBMS_LOGMNR.COLUMN_PRESENT, described later in this chapter.

Example of Using DBMS_LOGMNR

The following example shows how to use the DBMS_LOGMNR procedures to add redo log files to a LogMiner session, how to start LogMiner, how to perform a select operation from V$LOGMNR_CONTENTS, and how to end a LogMiner session. For complete descriptions of the DBMS_LOGMNR procedures, see Summary of DBMS_LOGMNR Subprograms. EXECUTE DBMS_LOGMNR.ADD_LOGFILE(
LogFileName => '/Oracle/logs/log1.f', Options => dbms_logmnr.NEW); EXECUTE DBMS_LOGMNR.ADD_LOGFILE( LogFileName => '/oracle/logs/log2.f', Options => dbms_logmnr.ADDFILE); EXECUTE DBMS_LOGMNR.START_LOGMNR( DictFileName =>'/oracle/dictionary.ora'); SELECT sql_redo FROM V$LOGMNR_CONTENTS EXECUTE DBMS_LOGMNR.END_LOGMNR();

Summary of DBMS_LOGMNR Subprograms

Table 24-1 describes the procedures in the DBMS_LOGMNR supplied package.
Subprogram Description 

上一篇:red hat linux 9 + oracle 8.17 安装成功过程 人气:428
下一篇:Oracle Fail Safe Step-By-Step Installation and Configuration 人气:515
浏览全部Oracle教程的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-7-4 天空网络电影系统SKYUC v2.5.1 B
2008-7-4 PHPDug v2.0 多国语言版
2008-7-4 Drupal v7.x-dev Build 080704
2008-7-4 乐学LBBS无限级目录图片直读系统
2008-7-4 生成静态的美女小偷程序 v1.2
2008-7-4 顶级DJ舞曲网 v1.2 黑色正式版
2008-7-4 生活名片
2008-7-4 轩魂ASP中文验证码
2008-7-4 ip138手机归属地小偷
2008-6-21 PocketTouch简化iPod控制工具 v1
2008-6-21 HidePod万能隐藏 v1.0.9破解版
2008-6-21 TouchPad触摸板破解补丁 v4.42
2008-6-21 iCountDown倒计时工具 v2.0
2008-6-21 tt-Clock语音时钟 v1.0
2008-6-21 PowerManager重启工具
2008-6-21 JasonKit(iLM)离线地图切换软件
2008-6-21 iSlsk P2P下载工具 v0.2.1b
2008-6-21 MCaller来电归属地查询 v0.3破解


  发表评论
姓 名: 验证码:
内 容:
[ 汉字翻译拼音 ] [ 广告代码 ] [ 符号对照表 ] [ 进制转换 ] [ 经典小工具 ] [ 个税计算 ] [ 汉字简繁转换 ] [ 普通单位换算 ] [ 公制单位换算 ]
[ 生辰老黄历 ] [ 国内电话区号 ] [ 国家代码与域名缩写 ] [ 文字加密解密 ] [ 健康查询 ] [ 万年历 ] [ 手机号码查询 ] [ ip搜索 ] [ Google PR查询 ]
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2008 www.knowsky.com All rights reserved | 网络实名:动态网站制作指南 | 沪ICP备05001343号
ホームページ制作 不動産検索システム 求人情報