OCP-1Z0-053-V13.02-701题

从rman 备份中恢复表 先熟悉下 ” 从rman 备份中恢复表“ 的背景以及要求: 在 RMAN 中提供了表级别恢复( RECOVER TABLE )。在 Oracle 12c 中,在发生 drop 或 truncate 的情况下, 可以从 RMAN 备份种将一个特定的表或分区恢复到某个时间点、 SCN 或归档序列号,并且可以有下面的选择: l 使用REMAP选项将表恢复为一个新表或者分区中,也可以恢复到其他用户中。 l 只生成一个需要被恢复表的expdp格式的dump文件,选择后期再进行恢复。 Oracle 1... 阅读详情

701. A user receives the following error while performing a large volume of inserts into a table:

 

The issue is resolved by increasing the space quota on the USERS tablespace for the user. But the user

may perform such transaction in the future. You w ant to ensure that the command waits rather than

produce an error when such an event occurs the next time.  

What can you do to achieve this before running the command in the future?

A.Set RESUMABLE_TIMEOUT for the instance.

B.Set the RESOURCE_LIMIT Parameter to TRUE.

C.Enable the database instance to use asynchronous commit.

D.Set the LOG_CHECKPOINT_TIMEOUT parameter  to a nonzero value for the database instance.

Answer: C 

答案解析:

参考:http://docs.oracle.com/cd/E11882_01/server.112/e25494/schema.htm#ADMIN11584

根据官方文档,此题选A

[oracle@rtest ~]$ oerr ora 1536

01536, 00000, "space quota exceeded for tablespace '%s'"

// *Cause:  The space quota for the segment owner in the tablespace has

//          been exhausted and the operation attempted the creation of a

//          new segment extent in the tablespace.

// *Action: Either drop unnecessary objects in the tablespace to reclaim

//          space or have a privileged user increase the quota on this

//          tablespace for the segment owner.


How Resumable Space Allocation Works

The following is an overview of how resumable space allocation works. Details are contained in later sections.

  1. A statement executes in resumable mode only if its session has been enabled for resumable space allocation by one of the following actions:

    • The ALTER SESSION ENABLE RESUMABLE statement is issued in the session before the statement executes when the RESUMABLE_TIMEOUT initialization parameter is set to a nonzero value.

    • The ALTER SESSION ENABLE RESUMABLE TIMEOUT timeout_value statement is issued in the session before the statement executes, and thetimeout_value is a nonzero value.

  2. A resumable statement is suspended when one of the following conditions occur (these conditions result in corresponding errors being signalled for non-resumable statements):

    • Out of space condition

    • Maximum extents reached condition

    • Space quota exceeded condition.

  3. When the execution of a resumable statement is suspended, there are mechanisms to perform user supplied operations, log errors, and query the status of the statement execution. When a resumable statement is suspended the following actions are taken:

    • The error is reported in the alert log.

    • The system issues the Resumable Session Suspended alert.

    • If the user registered a trigger on the AFTER SUSPEND system event, the user trigger is executed. A user supplied PL/SQL procedure can access the error message data using the DBMS_RESUMABLE package and the DBA_ or USER_RESUMABLE view.

  4. Suspending a statement automatically results in suspending the transaction. Thus all transactional resources are held through a statement suspend and resume.

  5. When the error condition is resolved (for example, as a result of user intervention or perhaps sort space released by other queries), the suspended statement automatically resumes execution and the Resumable Session Suspended alert is cleared.

  6. A suspended statement can be forced to throw the exception using the DBMS_RESUMABLE.ABORT() procedure. This procedure can be called by a DBA, or by the user who issued the statement.

  7. A suspension time out interval, specified by the RESUMABLE_TIMEOUT initialization parameter or by the timeout value in the ALTER SESSION ENABLE RESUMABLETIMEOUT statement, is associated with resumable statements. A resumable statement that is suspended for the timeout interval wakes up and returns the exception to the user if the error condition is not resolved within the timeout interval.

  8. A resumable statement can be suspended and resumed multiple times during execution.


记一次 数据泵的表逻辑备份、迁移 记一次 数据泵的表逻辑备份、迁移。 阅读详情

相关推荐

oracle ora39171,expdp导出报错 ORA-39171 、ORA-01654,求大神支招~~

oracle环境 12.1.0.2.0用expdp做备份导出的。之前测试都是好用,但最近发现expdp导出报错了 ,报错部分信息如下,求各位大神支招,这是什么原因?(显示的错误是空间不足? 但是expdp 导出, 需要大量的导出用户的表空间(这里是system表空间)容量么? )xxx# more 2016-04-12.expdp.log;;;Export: Release 12.1.0....

weixin_42396932的博客 880

Oracle的Resumable特性

当我们在建立一个大表,或往表里面插入大量数据时,如果中途因为表空间剩余空间不足并且没有开启自动扩展的话,会报 OUT-OF-SPACE错误,这是非常痛苦的事情,重头再来又耗时间又要挨骂。 这种情况往往出现在我们还无法预估将要插入的数据量时,除了个一个极大的表空间或自动扩展来解决之外。 Oracle还为我们提供了一个很好的功能:resumableresumable开启的情况下,

rudy gao 2057

ocp 19c考,科目082考试(34)

34、In your database, you want to ensure that idle sessions that are blocking active are automatically terminated after a specified period of time. How would you accomplish this? A. Setting a metric threshold B. Implementing Database Resource Manager C.

m0_65303136的博客 181

OCP-043 When the execution of a resumable statement is suspended

41. In which two conditions are resumable statements suspended? (Choose two.) A.when a user session is terminated B.when a user exceeds the space quota C.when a user manually suspends the statement

有梦就别怕痛 1112

resumable特性以及系统触发器中的SUSPEND event测试!

之前一直没有搞清楚系统触发器中的suspend事件什么时候触发,正好看到一位puber问此问,搜索一下doc,做了一个简单的测试。[@more@]参考doc:http://download.oracle.com/docs/cd...

clt3617的博客 174

一起学OCP:oracle-082库及解析(21-40)持续更新

最好的学习方式就是创作和分享,希望大家都能顺利拿到OCP证书

技术螃蟹的博客 1312

Oracle Resumable Space Allocation 特性 说明

.Resumable Space Allocation 说明 从9i开始,Oracle提供了一种避免因为space Error而导致事务异常的操作: resumable spaceallocation. 在Oracle 10g的OCP 考试中有考resumable session 的这个知识点。官网对Resumable的解释: Advantage is forDBAs who are runni

David Dai -- Focus on Oracle 1万+

resumable oracle,Oracle的Resumable特性

当我们在建立一个大表,或往表里面插入大量数据时,如果中途因为表空间剩余空间不足并且没有开启自动扩展的话,会报 OUT-OF-SPACE错误,这是非常痛苦的事情,重头再来又耗时间又要挨骂。这种情况往往出现在我们还无法预估将要插入的数据量时,除了个一个极大的表空间或自动扩展来解决之外。Oracle还为我们提供了一个很好的功能:resumableresumable开启的情况下,如果Oracle执行某一...

weixin_30582953的博客 453

RESTRICT、QUIESCE和SUSPEND

数据库的这三种状态有相似之处,这里简单总结一下。 RESTRICT状态 在Oracle中,有时候要执行一些管理性的操作,而这些操作运行的时候不能有其他用户同时访问数据库。对于这种情况可以设置系统进入RESTRICTED SESSION状态禁止普通用户登陆数据库。 数据库可以在启动的时候以RESTRICT方式来启动数据库: SQL> conn / as sysdba已连接。 S

Laughing 881

import导入很慢,出现等待事件statement suspended, wait error to be cleared

客户反应一个库上的import操作很慢,生成了当时时间段的awr报告,发现top事件中出现:statement suspended, wait error to be cleared 这个等待事件倒是第一次看到,单从语句方面进行理解:语句站厅,等待错误被处理。 于是让客户查看alert日志,查看是否有报错信息, 果然alert日志里面出现如下信息: ORA-01652: unabl

killvoon的专栏 2224

dba_resumable impdp 超时7200

especially if there is other DML occurring on the database. 这句话值得推敲,为什么Rollback期间产生的UNDO变多了,因为index块要额外去维护undo。

jnrjian的博客 1221

oracle数据库插件库的迁移,Oracle 数据库迁移

1.1 linux 下导出sqlplus >连接到dbaSQL> create directory data_dir as '/opt/oracle_dump';SQL> grant read,write on directory DMPDIR to TAX;SQL> expdp user/passwd@sid dumpfile=full.dmp DMPDIR =data...

weixin_29127653的博客 409

OCP-V13-700

QUESTION 700 701. A user receives the following error while performing a large volume of inserts into a table:The issue is resolved by increasing the space quota on the USERS tablespace for the user

jiayue's BLOG 1303

Oracle OCP 1z0-053 2018年9月最新考过的库分享-1

1.you configured the fast recovery area for one of your database but it is now running out of space. which two could make space available in the flash recover area? A.change the RMAN archived log dele...

技术=勤奋+思考 6813

Oracle OCP 1z0-053 2018年9月最新考过的库分享-2

3.One of your databases has resumable space allocation enabled. Which two conditions will suspend a session performing DML in that database instance? A) A deadlock is detected. B) A transaction rea...

技术=勤奋+思考 5338

12C_ORACLE_1Z0-063 PREP DEMO

1.Which two statements are true about recovering logically corrupted tables or table partitions from an RMANbackup?A. Tables or table partitions can be recovered by using an auxiliary instance only.B....

u012887743的博客 2538

1z0-062 库解析6

You want execution of large database operations to suspend, and then resume, in the event of space allocation failures. You set the value of the initialization parameter RESUMABLE_TIMEOUT to 3600. Whi...

weixin_45694422的博客 624

OCP-1Z0-053-V12.02-422

422.To enable resumable space allocation for the instance, which of the following initialization parameters should you set to a nonzero value? A. RESUMABLE_SPACE_TIME B. RESUMABLE_SPACE C. RESUMABL

一抹曦阳-Oracle 4603
上一篇: OCP-1Z0-053-V13.02-685题
下一篇: OCP-1Z0-053-V13.02-703题
Riveore
博客等级 码龄19年 1801粉丝 1432原创
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值