IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> Oracle 19c OCP 1Z0-082认证考试题库(51-60) -> 正文阅读

[大数据]Oracle 19c OCP 1Z0-082认证考试题库(51-60)

51.View the Exhibit and examine the description of the tables You execute this SQL statement

Which three statements are true?

A.The sales table has five foreign keys
B.The statement will execute successfully and a new row will be inserted into the SALES table
C.A product can have a different unit price at different times
D.A customer can exist in many countries.
E.The statement will fail if a row already exists in the SALES table for product 23
F. The statement will fail because a subquery may not be contained in a VALUES clause
答案: ABD

52.View the Exhibits and examine the structure of the costs and PROMOTIONS tables
You want to display prod_ids whose promotion cost is less than the highest cost prod_id in a promotion time interval
Examine this SQL statement

What will be the result?
A.It executes successfully and gives the required result.
B.It gives an error because the GROUP BY clause is not valid
C.It executes successfully but does not give the required result
D.It gives an error because the ALL keyword is not valid
答案: C
Prom_end_date-promo_begin_date不能保证产品在同一个时间段进行促销。

53.You must create a tablespace of non-standard block size in a new file system and plan to use this command

The standard block size is 8k but other non-standard block sizes will also be used
Which two are requirements for this command to succeed?
A.DB_32K_CACHE_SIZE must be set to a value that can be accommodated in the SGA
B.DB_32K_CACHE_SIZE should be set to a value greater than DB_CACHE_SIZE
C.DB_32K_CACHE_SIZE must be less than DB_CACHE_SIZE
D.The operating system must use a 32k block size
E.DB_CACHE_SIZE must be set to a size that is smaller than DB_32K_CACHE_SIZE
F. The /u02 file system must have at least 100g space for the datafile
答案: AF

54.Which two statements are true about single row functions?
A.FLOOR: retums the smallest integer greater than or equal to a specified number
B.CEIL: can be used for positive and negative numbers
C.CONCAT: can be used to combine any number of values
D.TRUNC: can be used only with NUMBER data types
E.MOD: returns the remainder of a division operation
答案: BE
trunc可以用于日期

55.Examine the description of the PRODUCR STATUS table

The STATUS column contains the values ‘in stock’ or ‘OUT OF STOCK’ for each row
Which two queries will execute successfully?
A.SELECT prod_id || q ’ (‘s not available.’ from product status WHERE status = ‘OUT OF STOCK’
B.SELECT prod_id || q ’ (‘s not available.’ “CURRENT AVAILABILITY"FROM product status WHERE status = 'OUT OF STOCK ’
C.SELECT prod_id “CURRENT AVAILABILITY” || q ’ ('s not availablE.'from product status WHERE status = ‘OUT OF STOCK’
D.SELECT prod_id || q(‘s not availablE.’ 'current AVAILABILITY ’ FROM product status WHERE status = ‘OUT OF STOCK’
E.SELECT prod_id q 's not available” FROM product status WHERE status =“OUT OF STOCK”
F.SELECT prod_id || q" 's not available" FROM product_status WHERE status = ‘OUT OF STOCK’
答案: AB ???

56.Which two statements are true about Enterprise Manager(EM)Express?
A.By default, EM Express is available for a database after database creation using DBCA
B.You can shut down a database instance using EM Express.
C.EM Express uses a separate repository database to store target database metadata
D. You cannot start up a database instance using EM Express
E.You can use a single instance of EM Express to manage multiple databases running on the same server
答案: AD
EM Express 简化版的 em,只要用存储过程设置了端口号就可以访问。

57.In the spfile of a single instance database, LOCAL_LISTENER is set to LISTENER_1.
The TNSNAMES.ORA file in $ORACLE HOME/network/admin in the database home contains: LISTENER_1 =
(ADDRESS= (PROTOCOL= TCP)
(HOST =host1 abc. com) (PORT=1521)
)

Which statement is true?
A.There are two listeners named LISTENER and LISTENER_1 running simultaneously using port 1521on the same host as the database instances
B.The definition for LISTENER_1 requires a CONNECT_DATA section to enable dynamic service registration
C. LISTENER_1 must also be defined in the LISTENER. ORA file to enable dynamic service registration
D.The LREG process registers services dynamically with the LISTENER_1 listener E.Dynamic service registration cannot be used for this database instance
答案: A
?local_listener时需要把定义增加到服务器端的tnsnames.ora中

58.Which two statements are true about UNDO and REDO?
A.The generation of UNDO generates REDO.
B.DML, modifies Oracle database objects and generates UNDO and REDO
C.DML modifies Oracle database objects and only generates UNDO.
D.The generation of REDO generates UNDO.
E.DML modifies Oracle database objects and only generates REDO

答案: AB
59.Examine the description of the CUSTOMERS table:
You need to display last names and credit limits of all customers whose last name starts with A or B in lower or upper case, and whose credit limit is below 1000
Examine this partial query
SELECT cust_last_name, cust_credit_limit FROM customers
Which two WHERE conditions give the required result?
A.WHERE(INITCAP(cust_last_name) LIKE ‘A%’ OR INITCAP(cust_last_name) LIKE ‘B%’) AND cust_credit_limit < 1000
B.WHERE UPPER(cust_1ast_name IN (‘A%’, ‘B%’ ) AND cust_credit_limit < 1000
C.WHERE (UPPER(cust_last_name LIKE INITCAP(‘A’) OR UPPER(cust -Last-namE.LIKE INITCAP(‘B’))
AND ROUND(cust_credit_limit)< ROUND(1000);
D.WHERE( UPPER(cust_1ast_namE.LIKE 'A% OR UPPER(Cust_1ast_namE.LINK ‘B%’
AND ROUND(cust_credit_limit)< 1000
E.WHERE UPPER(cust_last_name) BETWEEN UPPER (‘A%’ AND ‘B%’ )
AND ROUND(cust_credit_limit)< 1000
答案: AD

60.Which two statements are true about the tools used to configure Oracle Net Services?

A.The lsnrctrl utility requires a listener. ora file to exist before it is started
B.The Oracle Net Configuration Assistant is only used when running the Oracle installer. C.Enterprise Manager Cloud Control can be used to centrally configure net service names for any database server target.
D.Oracle Net Manager can be used to centrally configure listeners on any database server target. E.Oracle Net Manager can be used to locally configure naming methods on a database server.
答案: C E

需要OCP考试资料的请加我建立的qq群👇

  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2022-05-11 16:30:44  更:2022-05-11 16:31:40 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 23:27:28-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码