IT인증,IT자격증,IT자격증시험,IT인증시험

http://www.pass4test.net/

Oracle 1Z0-047 (Oracle Database SQL Expert) 덤프공부

Pass4Test의 Oracle 1Z0-047 (Oracle Database SQL Expert)  시험덤프는 실제시험의 기출문제와 예상문제를 묶어둔 공부자료로서 시험문제커버율이 상당히 높습니다.IT업계에 계속 종사하려는 IT인사들은 부단히 유력한 자격증을 취득하고 자신의 자리를 보존해야 합니다. Pass4Test의 Oracle 1Z0-047 (Oracle Database SQL Expert) 시험덤프로 어려운 Oracle 1Z0-047 (Oracle Database SQL Expert) 시험을 쉽게 패스해보세요. IT자격증 취득이 여느때보다 여느일보다 쉬워져 자격증을 많이 따는 꿈을 실현해드립니다.

 

 

NO.1 EMPDET is an external table containing the columns EMPNO and ENAME. Which command would
work in relation to the EMPDET table?
A.UPDATE empdet SET ename = 'Amit' WHERE empno = 1234;
B.DELETE FROM empdet WHERE ename LIKE 'J%';
C.CREATE VIEW empvu AS SELECT * FROM empdept;
D.CREATE INDEX empdet_idx ON empdet(empno);
Answer:C

NO.2 Evaluate the following SQL statement: ALTER TABLE hr.emp SET UNUSED (mgr_id); Which
statement is true regarding the effect of the above SQL statement?
A.Any synonym existing on the EMP table would have to be re-created.
B.Any constraints defined on the MGR_ID column would be removed by the above command.
C.Any views created on the EMP table that include the MGR_ID column would have to be dropped and
re-created.
D.Any index created on the MGR_ID column would continue to exist until the DROP UNUSED
COLUMNS command is executed.
Answer:B

NO.3 View the Exhibit and examine the description of the ORDERS table. Which two WHERE clause
conditions demonstrate the correct usage of conversion functions? (Choose two.)
A.WHERE order_date > TO_DATE('JUL 10 2006','MON DD YYYY')
B.WHERE TO_CHAR(order_date,'MON DD YYYY') = 'JAN 20 2003'
C.WHERE order_date > TO_CHAR(ADD_MONTHS(SYSDATE,6),'MON DD YYYY')
D.WHERE order_date IN ( TO_DATE('Oct 21 2003','Mon DD YYYY'), TO_CHAR('NOV 21 2003','Mon DD
YYYY') )
Answer:A B

NO.4 View the Exhibit and examine PRODUCTS and ORDER_ITEMS tables. You executed the following
query to display PRODUCT_NAME and the number of times the product has been ordered: SELECT
p.product_name, i.item_cnt FROM (SELECT product_id, COUNT (*) item_cnt FROM order_items
GROUP BY product_id) i RIGHT OUTER JOIN products p ON i.product_id = p.product_id; What would
happen when the above statement is executed?
A.The statement would execute successfully to produce the required output.
B.The statement would not execute because inline views and outer joins cannot be used together.
C.The statement would not execute because the ITEM_CNT alias cannot be displayed in the outer query.
D.The statement would not execute because the GROUP BY clause cannot be used in the inline view.
Answer:A

NO.5 You need to load information about new customers from the NEW_CUST table into the tables CUST
and CUST_SPECIAL. If a new customer has a credit limit greater than 10,000, then the details have to be
inserted into CUST_SPECIAL. All new customer details have to be inserted into the CUST table. Which
technique should be used to load the data most efficiently?
A.external table
B.the MERGE command
C.the multitable INSERT command
D.INSERT using WITH CHECK OPTION
Answer:C

NO.6 Evaluate the following CREATE SEQUENCE statement: CREATE SEQUENCE seq1 START WITH 100
INCREMENT BY 10 MAXVALUE 200 CYCLE NOCACHE; The sequence SEQ1 has generated numbers
up to the maximum limit of 200. You issue the following SQL statement: SELECT seq1.nextval FROM
dual; What is displayed by the SELECT statement?
A.1
B.10
C.100
D.an error
Answer:A


 
Posted 2013/7/29 7:26:09  |  Category: 미분류  |  Tag: