000-734 Free Dumps Study Materials
Question 12: A database administrator needs to update a table named TRANSACT by removing February 2005 data
and replacing it with February 2007 data. What are the proper steps, in the correct order, required to
accomplish this?
A. 1) ALTER TABLE transact DETACH PARTITION feb05 INTO newtable 2) LOAD FROM transact.del
OF DEL REPLACE INTO newtable 3) ALTER TABLE transact ATTACH PARTITION feb07 STARTING
'02/01/2007' ENDING '02/28/2007' FROM new table 4) SET INTEGRITY FOR transact
B. 1) ALTER TABLE transact DETACH PARTITION feb05 INTO newtable 2) LOAD FROM transact.del
OF DEL REPLACE INTO newtable 3) ALTER TABLE transact ATTACH PARTITION feb07 STARTING
'01/01/2007' ENDING '02/28/2007' FROM new table 4) SET INTEGRITY FOR transact
C. 1) ALTER TABLE transact DETACH PARTITION feb05 INTO newtable 2) LOAD FROM transact.del
OF DEL REPLACE INTO newtable 3) ALTER TABLE transact ATTACH PARTITION feb07 STARTING
'02/01/2007' ENDING '02/28/2007' FROM new table 4) RUNSTATS ON TABLE transact
D. 1) ALTER TABLE transact DETACH PARTITION feb05 INTO newtable 2) LOAD FROM transact.del
OF DEL REPLACE INTO newtable 3) ALTER TABLE transact ATTACH PARTITION feb07 STARTING
'02/01/2007' ENDING '02/28/2007' FROM new table 4) REORG TABLE transact
Correct Answer:A