返回顶部
首页 > 资讯 > 数据库 >rman的list命令用法
  • 742
分享到

rman的list命令用法

2024-04-02 19:04:59 742人浏览 薄情痞子
摘要

这篇文章主要介绍“rman的list命令用法”,在日常操作中,相信很多人在rman的list命令用法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”rman的list命令用法”

这篇文章主要介绍“rman的list命令用法”,在日常操作中,相信很多人在rman的list命令用法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”rman的list命令用法”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

list可以列举备份集,copy,归档等信息

Contents of List

Command

Description

Backup sets and proxy copies

LIST BACKUP

You can list all backup sets, copies, and proxy copies of a database, tablespace, data file, arcHived redo log, control file, or server parameter file.

Image copies

LIST COPY

You can list data file copies and archived redo log files. By default, LIST COPY displays copies of all database files and archived redo logs. Both usable and unusable image copies are included in the output, even those that cannot be restored or are expired or unavailable.

Archived redo log files

LIST ARCHIVELOG

You can list archive redo log files. You can list all archive log redo log files or specify individual archive log files through SCN, time, or sequence number ranges. If you specify a range you can further restrict the list returned by specifying an incarnation number.

Database incarnations

LIST INCARNATION

You can list all incarnations of a database. A new database incarnation is created when you open with the RESETLOGS option.

Databases in a Data Guard environment

LIST DB_UNIQUE_NAME

A database in a Data Guard environment is distinguished by its DB_UNIQUE_NAME initialization parameter setting. You can list all databases that have the same DBID.

Backups and copies for a primary or dgdb database in a Data Guard environment

LIST ... FOR DB_UNIQUE_NAME

You can list all backups and copies for a specified database in a Data Guard environment or for all databases in the environment.

RMAN restricts the output to files or objects associated exclusively with the database with the specified DB_UNIQUE_NAME. For example, you can use LIST with FOR DB_UNIQUE_NAME to display the list of archived redo log files associated with a particular dgdb or primary database. Objects that are not owned by any database (SITE_KEY column in the recovery catalog view is null) are not listed.

Restore points

LIST RESTORE POINT

You can list restore points known to the RMAN repository.

Names of stored scripts

LIST SCRIPT NAMES

You can list the names of recovery catalog scripts created with the CREATE SCRIPT or REPLACE SCRIPT command. A recovery catalog is required.

Failures for use with Data Recovery Advisor

LIST FAILURE

A failure is a persistent data corruption mapped to a repair option. Chapter 15, "Diagnosing and Repairing Failures with Data Recovery Advisor" explains how to use LIST FAILURE with the ADVISE and REPAIR commands.

LIST Option

Description

LIST EXPIRED

Lists backups or copies that are recorded in the RMAN repository but that were not present at the expected location on disk or tape during the most recent crosscheck. Such backups may have been deleted outside of RMAN.

LIST ... BY FILE

Lists backups of each data file, archived redo log file, control file, and server parameter file. Each row describes a backup of a file.

LIST ... SUMMARY

Provides a one-line summary of each backup.

例如:

列举所有归档

RMAN> list archivelog all;

List of Archived Log Copies for database with db_unique_name TEST

=====================================================================

Key     Thrd Seq     S Low Time           

------- ---- ------- - -------------------

5       1    62      X 2017-07-23 22:09:22

        Name: /home/oracle/1_62_947085344.dbf

6       1    63      X 2017-07-25 14:19:26

        Name: /home/oracle/1_63_947085344.dbf

列举所有过期归档

RMAN> list expired archivelog all;

List of Archived Log Copies for database with db_unique_name TEST

=====================================================================

Key     Thrd Seq     S Low Time           

------- ---- ------- - -------------------

5       1    62      X 2017-07-23 22:09:22

        Name: /home/oracle/1_62_947085344.dbf

6       1    63      X 2017-07-25 14:19:26

到此,关于“rman的list命令用法”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

您可能感兴趣的文档:

--结束END--

本文标题: rman的list命令用法

本文链接: https://lsjlt.com/news/59075.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • rman的list命令用法
    这篇文章主要介绍“rman的list命令用法”,在日常操作中,相信很多人在rman的list命令用法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”rman的list命令用法”...
    99+
    2024-04-02
  • RMAN命令configure,report,list,crosscheck,delete的使用方法
    1.configure CONFIGURE RETENTION POLICY TO REDUNDANCY 3; 保留三份备份 CONFIGURE BACKUP OPTIMIZATION OFF; # def...
    99+
    2024-04-02
  • RMAN的list和report命令详解
    一.List命令 RMAN的list命令是一种在数据库控制文件或恢复目录中查询备份的历史信息的方法。 1.列出对应物 命令:list incarnation 作用:为...
    99+
    2024-04-02
  • rman的crosscheck命令
    在操作系统上手动删除备份或归档,rman不会立即知晓此变更,所以需要crosscheck更新备份的状态。 手动rm归档日志 检查归档 RMAN> crosscheck archivelog all; ...
    99+
    2024-04-02
  • RMAN常用命令汇总
    这篇文章主要讲解了“RMAN常用命令汇总”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“RMAN常用命令汇总”吧!1.    ...
    99+
    2024-04-02
  • RMAN命令简解
    RMAN命令简解 1 列出场景号  RMAN>list incarnation;  2 列出备份   2.1概述可用的备份    RMAN>list backup summa...
    99+
    2024-04-02
  • Rman--基础命令
    RMAN基础命令(1)启动关闭数据库RMAN> shutdown immediateRMAN> startup(2)执行操作系统命令RMAN> host;//退出exit(3)执行SQL语...
    99+
    2024-04-02
  • rman中report命令
    report需要备份的文件 RMAN> report need backup; RMAN retention policy will be applied to the command RMAN ...
    99+
    2024-04-02
  • RMAN命令详解
    这篇文章主要讲解了“RMAN命令详解”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“RMAN命令详解”吧! 1 列出对应物  R...
    99+
    2024-04-02
  • RMAN中switch命令怎么用
    这篇文章给大家分享的是有关RMAN中switch命令怎么用的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。 SWITCH命令详解Purpose:目的,即...
    99+
    2024-04-02
  • RMAN的备份维护命令
    1.validate backupset 指令       使用VALIDATE BACKUPSET指令验证备份集的...
    99+
    2024-04-02
  • Rman的基本命令介绍
    本篇内容主要讲解“Rman的基本命令介绍”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Rman的基本命令介绍”吧!可以用RMAN环境来打开和关闭数据库: [or...
    99+
    2024-04-02
  • RMAN中如何使用set命令
    小编给大家分享一下RMAN中如何使用set命令,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!一、s...
    99+
    2024-04-02
  • RMAN命令详解和常用汇总
    RMAN命令详解和常用汇总转摘汇集,日后使用本文链接:https://blog.csdn.net/EVISWANG/article/details/50448370http://blog.itpub.net/25904686/viewspa...
    99+
    2014-12-02
    RMAN命令详解和常用汇总
  • RMAN中debug调式命令怎么用
    这篇文章主要介绍RMAN中debug调式命令怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!一、Rman中DEBUG命令是做什么的?RMAN中使用debug参数的目的有两个:1....
    99+
    2024-04-02
  • Redis中的list命令怎么使用
    这篇文章主要介绍“Redis中的list命令怎么使用”,在日常操作中,相信很多人在Redis中的list命令怎么使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Redis中...
    99+
    2024-04-02
  • Oracle数据库中如何使用rman命令
    这期内容当中小编将会给大家带来有关Oracle数据库中如何使用rman命令,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。Oracle数据库rman常用命令怎么使用  连接...
    99+
    2024-04-02
  • redis列表list常用命令大全
    在自己去操作列表的时候发现很多命令自己都不知道,想法很多,但是脑子内存货很少,就找时间仔细的去总结了一些 超级超级详细: 1.string(字符串操作) 1.set:设置键  $reids->set('mykey',111);2.get:获...
    99+
    2023-09-14
    redis 缓存 php
  • linux命令中的tar命令的用法
    这篇文章主要讲解了“linux命令中的tar命令的用法”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“linux命令中的tar命令的用法”吧!通过SSH访问服务器,难免会要用到压缩,解压缩,打...
    99+
    2023-06-09
  • Redis常用命令之操作List类型
    场景 Centos中Redis的下载编译与安装(超详细): https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103967334 Redis的启动和关闭(前台启动和...
    99+
    2021-09-07
    Redis常用命令之操作List类型
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作