温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

我的数据库OCP

发布时间:2020-07-29 03:17:17 来源:网络 阅读:233 作者:阿珂姑娘 栏目:数据库

 监听的作用就是给客户端电脑和中心数据库电脑建立数据的连接。一旦建立连接就不对两者造成任何影响,连接上的客户端上的用户可以做任何操作和查询,哪怕监听已经关闭或者被破坏,只是在停止后新的远程连接不能再连接到数据库。



UNDO表空间的用途:

    1.  Rolling back a transaction explicitly with a ROLLBACK statement
    2.  Rolling back a transaction implicitly (for example, through recovery of a failed transaction)
    3.  Reconstructing a read-consistent p_w_picpath of data
    4.  Recovering from logical corruptions . 

1)回滚事务: rollback
2)读一致性:正在做 DML 操作的数据块,事务结束前,其他用户读 undo 里面的数据前
镜像
3)实例的恢复: instance recover(undo -------->rollback)
4)闪回技术 : flashback query、 flashback table 等


因为数据库异常停止,则在数据库发出最后一个检查点到数据库异常停止这段时间内的改变只是记录到了重做日志文件中,还未被写到数文件中,所以,在进行数据库实例恢复的过程中,需要最后一个检查点后所有的重做日志文件,将相应的改变写到数据文件中去。



增加非空约束是使用modify而不是ADD CONSTRAINT



确定下面那两种情况你可以使用Data Recovery Advisor来恢复?

the one when you cannot start up the database (because required database files are missing, inconsistent, or corrupted) and the one when file corruptions are discovered during run time.  

A.  The database files are corrupted when the database is open 

D.  The database is not opening because the required database files are missing


 延迟完整性约束。

http://bbs.cqsztech.com/forum.php?mod=viewthread&tid=516



角色:

http://bbs.cqsztech.com/forum.php?mod=viewthread&tid=509



SQL调优。

http://bbs.cqsztech.com/forum.php?mod=viewthread&tid=518


 数据库里那两种文件在RMAN里可以通过自动备份功能配置为自动备份?

 The automatic backup of the control file occurs independently of any backup of the current control file explicitly requested as part of your backup command. If you enable control file autobackups, then RMAN automatically backs up the control file and the current server parameter file。



SQL*LOADER

http://bbs.cqsztech.com/forum.php?mod=viewthread&tid=521



在下面那种情况下即使参数UNDO_RETENTION指定了值也可能被忽略?

For fixed-size undo tablespaces, the system automatically tunes for the best possible undo retention period on the basis of undo tablespace size and usage history; it ignores UNDO_RETENTION unless retention guarantee is enabled.




你想要使包含在平面文件中的员工信息作为EMPLOYEES的一部分去访问,因此你打算为EMPLOYEES表增加一个列来实现;
      这个新的列你将使用那种数据类型?

      CLOB使用CHAR来保存数据。 
  BLOB就是使用二进制保存数据。 
      BFILE 的数据是存储在操作系统文件中的,而不是在数据库中。 
      LING RAW此数据类型用于存储不是由 Oracle 解释的二进制数据.








向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

ocp
AI