如何使用 Oracle 基本命令执行撤消操作

How to perform undo operation using Oracle Basic Command

我是 Oracle 数据库的新手,我想知道一些与 Oracle 相关的命令。 有没有人帮我解决以下问题:

1. 哪个命令用来显示undo_retention句号?
2. undo表空间名用哪个命令显示?
3.如何disable/enable撤销保留保证?

谢谢,

  1. Which command use to show undo_retention period?
  2. Which command use to show undo tablespace name?

打开SQL*PLUS作为SYSDBA并使用show parameter命令,如下所示。

SQL> show parameter undo
NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
undo_management                      string      AUTO
undo_retention                       integer     2400
undo_tablespace                      string      UNDOTBS1
  1. how to disable/enable undo Retention guarantee?

现在您有了撤消表空间的名称。

使用以下命令切换到撤消保留guarantee

ALTER TABLESPACE UNDOTBS1 RETENTION GUARANTEE; 

切换回 noguarantee

ALTER TABLESPACE UNDOTBS1 RETENTION NOGUARANTEE; 

使用以下查询来检查您的撤消表空间是否有保留保证。

SQL> SELECT tablespace_name, retention FROM dba_tablespaces where tablespace_name = 'UNDOTBS1';

更多详情:Managing Undo