很多朋友想知道oca认证考试要求是什么,下面就让我们来看看吧。
因为oca认证考试已经合并入ocp考试,所以不能单独考且不会再颁发证书,报考ocp考试不限制考生的文凭,任何文凭的人都可以报考并获得ocp证书,但前提是在oracle官方认证的培训机构进行了培训的人才能报名考试,除此之外还需了解基本的数据库概念,具备高中英语语法基础。
oca 是什么认证
oca全称是Oracle Certified Associate,为数据库认证专员的进阶认证,是Oracle认证中含金量最低的初级证书。oca已经合并入OCP的考试,ocp考试由原来的一门变成三门,且oca证书不再进行颁发,通过了OCP认证,就只能获得OCP一个认证。
oca认证费用
OCA认证考试和OCP认证考试进行了合并,oca证书不再进行颁发,OCP的考试现在共有三门,其中就包含两门OCA的考试,OCP认证考试费用在6800元左右,具体的费用可以去考试中心进行询问。
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
解析:数据类型:
后续陆续更新,转载请注明出处。
本人水平有限,欢迎指正。