zoukankan      html  css  js  c++  java
  • OCP-1Z0-051-V9.02-45题

    45. Which two statements are true about sequences created in a single instance database? (Choose
    two.)
    A. The numbers generated by a sequence can be used only for one table. 
    B. DELETE <sequencename> would remove a sequence from the database. 
    C. CURRVAL is used to refer to the last sequence number that has been generated.
    D. When the MAXVALUE limit for a sequence is reached, you can increase the MAXVALUE limit by using
    the ALTER SEQUENCE statement.
    E. When a database instance shuts down abnormally, the sequence numbers that have been cached but
    not used would be available once again when the database instance is restarted.
    Answer: CD
    答案解析:

    A不正确,因为一个序列生成的值可以用于多个表

    B不正确,因为删除序列的语句为DROP SEQUENCE sequencename

    C正确,对,CURRVAL是最后的那个值

    D正确,对当最大值达到极限时,可以通过ALTER SEQUENCE修改序列来增加最大值

    E不正确,因为如果内存非正常关闭,缓存的数会丢失。

    如果建立序列时不指定CACHENOCACHE,默认值为20

    即一次性从序列里取20个数放入内存,如果内存崩溃,则这20个数就会丢失,再取值时从第21个数开始取值,CACHE设置的最小值为2

  • 相关阅读:
    Noe4j启动警告
    SpringBoot
    MySQL数据库 java SQL语句区分大小写分析
    day24 模块的语法
    day23 re模块
    day22 常用模块02 序列化
    day21 常用模块01
    day20 面向对象06 MRO和C3算法
    day19 面向对象05 约束
    day18 面向对象04 反射
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316936.html
Copyright © 2011-2022 走看看