很多朋友想知道的oca认证考试科目是什么,下面就让我们来看看吧。
oca认证已经合并入ocp认证中,所以OCP的考试现在共有三门,其中就包含两门OCA的考试,oca考试第一门主要考察SQL语句,考试代码为062,共67道题,考试时间为120分钟,正确率达64%通过,
第二门主要考察Oracle管理,考试代码为071,共73道题,考试时间为100分钟,正确率达63%通过 ,
ocp考试就一门,主要考察数据库的管理,考试代码为063,共80道题,考试时间为120分钟,正确率达60%通过。
oca认证有什么用
Oca认证是Oracle认证中的初级认证,含金量不高,市场需求量不大,现如今oca认证已经合并入ocp认证,oca证书也不再进行颁发,可以说考过了ocp认证就只获得一个证书,而ocp证书的含金量高,持有这个证书可以拥有更好的就业前景、更高的薪资报酬、更多的升职加薪的机会。
Oracle Database 12c SQL OCA/OCP 1Z0-071题库(26-30题)
QUESTION 26
Which normal form is a table in if it has no multi-valued attributes and no partial dependencies?
A. second normal form
B. first normal form
C. third normal form
D. fourth normal form
答案:A
解析:范式normal form:
QUESTION 27
Sales data of a company is stored in two tables, SALES1 and SALES2, with some data being uplicated across the tables. You want to display the results from the SALES1 table, which are not present in the SALES2 table.
Which set operator generates the required output?
A. INTERSECT
B. UNION
C. PLUS
D. MINUS
E. SUBTRACT
答案:D
解析:集合操作符:
QUESTION 28
Evaluate the following ALTER TABLE statement:
ALTER TABLE ordersSET UNUSED (order_date);
Which statement is true?
A. After executing the ALTER TABLE command, you can add a new column called ORDER_DATE to the ORDERS table.
B. The ORDER_DATE column must be empty for the ALTER TABLE command to execute successfully.
C. ROLLBACK can be used to get back the ORDER_DATE column in the ORDERS table.
D. The DESCRIBE command would still display the ORDER_DATE column.
答案:A
解析:SET UNUSED:
QUESTION 29
Evaluate the following SQL statements that are issued in the given order:
CREATE TABLE emp(emp_no NUMBER(2) CONSTRAINT emp_emp_no_pk PRIMARY KEY,ename VARCHAR2(15),salary NUMBER (8,2),mgr_no NUMBER(2) CONSTRAINT emp_mgr_fk REFERENCES emp(emp_no));ALTER TABLE empDISABLE CONSTRAINT emp_emp_no_pk CASCADE;ALTER TABLE empENABLE CONSTRAINT emp_emp_no_pk;
What would be the status of the foreign key EMP_MGR_PK?
A. It would remain disabled and can be enabled only by dropping the foreign key constraint and recreating it.
B. It would remain disabled and has to be enabled manually using the ALTER TABLE command.
C. It would be automatically enabled and immediate.
D. It would be automatically enabled and deferred.
答案:B
解析:自关联,表的外键关联同一张表的主键;第二条语句执行后,主键失效,外键也失效;第三条语句执行后,主键生效,外键仍然失效
QUESTION 30
Which three statements are true regarding the data types? (Choose three.)
A. The minimum column width that can be specified for a VARCHAR2 data type column is one.
B. Only one LONG column can be used per table.
C. A TIMESTAMP data type column stores only time values with fractional seconds.
D. The BLOB data type column is used to store binary data in an operating system file.
E. The value for a CHAR data type column is blank-padded to the maximum defined column width.
答案:ABE
解析:数据类型:
后续陆续更新,转载请注明出处。
本人水平有限,欢迎指正。