多选
43 The ORCL database has RESUMABTE_TIMEOUT=7200 and DEFERRED SEGMENT CREATION=FALSEUser U1 has a 1 MB quota in tablespace DATA. U1 executes this command:SQL> CREATE TABLE t1 AS- (SELECT object_name, sharing, created FROM dba_objects);U1 complains that the command is taking too long to executeIn the alert log, the database administrator (DBA) finds this2017-03-06T12:15:17.183438+05:30statement in resumable session 'User U1(136), session 1, Instance 1 ' was suspended due to ORA-01536: space quota exceeded for tablespace 'DATA'Which are three actions any one of which the DBA could take take to resume the session?
多选
51 View the Exhibit and examine the description1 of the tables You execute this SQL statementINSERT INTO sales VALUES ( 23, 2300, SYSDATE, (SELECT channel_id FROM channels WHERE channel_desc ='Direct Sales'), 12, 1, 500);Which three statements are true? (Choose three.)
多选
70 Examine these commands[oracle@host01 ~]$ sqlplus u1/oracleSQL> SELECT* FROM emp;ENO ENAME DN--------- ----------- -----------1 Alan 22 Ben 2SQL> exit[oracle@host01 ~]$ cat emp.dat1,Alan,23,Cur1,44,Bob,4[oracle@host01 ~]$ sqlldr u1/oracle TABLE=empWhich two statements are true about the sqlldr execution?
多选
77 Examine the description of the SALES tableName Nu1l? Type--------------------- --------------------- --------------------PRODUCT ID NOT NULL NUMBER(10)CUSTOMER_ID NOT NULL NUMBER (10)TIME_ID NOT NULL DATECHANNEL_ID NOT NULL NUMBER (5)PROMO_ID NOT NULL NUMBER(5)QUANTITY_SOLD NOT NULL NUMBER (10,2)PRICE NUMBER(10,2)AMOUNT_SOLD NOT NULL CNUMBER(10,2)The sALEs table has 55,000 rows.Examine this statement:SQL>CREATE TABLE sales1 (prod_id,cust_id,quantity_soud,price) AS SELECT product_id,customer_id,quantity_sold,price FROM sales WHERE 1=1;Which two statements are true? (Choose two.)