当前位置:1z0-043题库

问题:

[单选]  The IT department is creating a human resources application that will require several new tables. You need to develop a standard alone executable that will defines these tables and their relationships. Which developer/2000 component could you use to create the executable?()

A . Procedure builder. 
B . Query builder. 
C . Schema builder. 
D . Form builder. 
E . Project builder. 
F . Transactional builder.

Examine the data in the EMPLOYEES and EMP_HIST tables: EMPLOYEES NAME DEPT_ID MGR_ID JOB_ID SALARY EMPLOYEE_ID 101 Smith 20 120 SA_REP 4000 102 Martin 10 105 CLERK 2500 103 Chris 20 120 IT_ADMIN 4200 104 John 30 108 HR_CLERK 2500 105 Diana 30 108 IT_ADMIN 5000 106 Smith 40 110 AD_ASST 3000 108 Jennifer 30 110 HR_DIR 6500 110 Bob 40 EX_DIR 8000 120 Ravi 20 110 SA_DIR 6500 EMP HIST EMPLOYEE_ID NAME JOB_ID SALARY 101 Smith SA_CLERK 2000 103 Chris IT_CLERK 2200 104 John HR_CLERK 2000 106 Smith AD_ASST 3000 108 Jennifer HR_MGR 4500 The EMP_HIST table is updated at the end of every year. The employee ID, name, job ID, and salary of each existing employee are modified with the latest data. New employee details are added to the table. Which statement accomplishes this task?() UPDATE emp_hist SET employee_id, name, job_id, salary = (SELECT employee_id, name, job_id, salary FROM employees) WHERE employee_id IN (SELECT employee_id FROM employees);。 MERGE INTO emp_hist eh USING employees e ON (eh.employee_id = e.employee_id) WHEN MATCHED THEN UPDATE SET eh.name = e.name, eh.job_id = e.job_id, eh.salary = e.salary WHEN NOT MATCHED THEN INSERT VALUES (e.employee id, e.name, job id, e.salary);。 MERGE INTO emp_hist eh USING employees e ON (eh.employee_id = e.employee_id) WHEN MATCHED THEN UPDATE emp hist SET eh.name = e.name, eh.job_id = e.job_id, eh.salary = e.salary WHEN NOT MATCHED THEN INSERT INTO emp_hist VALUES (e.employees_id, e.name, e.job_id, e.salary);。 MERGE INTO emp_hist eh USING employees e WHEN MATCHED THEN UPDATE emp_hist SET eh.name = e.name, eh.job_id = e.job_id, eh.salary = e.salary WHEN NOT MATCHED THEN INSERT INTO emp_hist VALUES (e.employees_id, e.name, e.job_id, e.salary)。 张某,男性,40岁,劳动时不慎,左足被刺破,伤口处皮肤出现红线,并向近心端延伸,触及发硬并有压痛,最可能是() 浅静脉炎。 深静脉炎。 淋巴结炎。 浅表淋巴管炎。 深部淋巴管炎。 Which statements are true regarding table compression?()  It saves disk space and reduces memory usage.。  It saves disk space but has no effect on memory usage.。  It incurs extra CPU overhead during DML as well as direct loading operations.。  It incurs extra CPU overhead during DML but not direct loading operations.。  It requires uncompress operation during I/O.。 You executed the following command in the lsnrctl utility to stop the listener: lsnrctl> STOP L1  What is the effect of this command if L1 is the only listener configured for your database?() It terminates all user sessions.。 It prevents users from logging in to the database remotely.。 It halts the server until all user transactions are completed.。 The server hangs, so users will receive an error asking them to login again.。 Connected users would get an error with the message "End of communication channel".。 按照产业发展趋势可把产业划分为() A.朝阳产业 。 B.传统产业 。 C.夕阳产业 。 D.高技术产业 。 E.基础产业。  The IT department is creating a human resources application that will require several new tables. You need to develop a standard alone executable that will defines these tables and their relationships. Which developer/2000 component could you use to create the executable?()
参考答案:

  参考解析

本题暂无解析

在线 客服