40) If T3 is a table with three columns C1, C2 and C3, where C1 is integer data, C2 is character
data, and C3 is date data, which of the following would be the proper statement to have Oracle
Database enter the date 02/10/14 into a row in table T3 while making sure that it is formatted
correctly as shown?
A) SET INTO T3 VALUES (101, ‘Smith’, ’02/10/14′);
B) SET INTO T3 VALUES (101, ‘Smith’, TO_DATE (’02/10/14′, ‘DD/MM/YY’));
C) INSERT INTO T3 VALUES (101, ‘Smith’, ’02/10/2014′);
D) INSERT INTO T3 VALUES (101, ‘Smith’, TO_DATE (’02/10/14′, ‘DD/MM/YY’));
E) INSERT INTO T3 VALUES (‘Smith’, TO_DATE (’02/10/14′, ‘DD/MM/YY’), 101);
41) To run an SQL script, click the ________ button.
42) Oracle Database Express Edition 11g Release 2 uses ________ to generate surrogate keys.
43) To run an SQL script in Oracle Database XE ________.
A) click the Execute button
B) click the Execute Script button
C) click the Run Script button
D) click the Ready button
E) click the Results button