You must unload data from the orders, order_items, and products database tables to four files using the External Tables.CREATE TABLE orders_ext -(order_id, order_date, product_id, product_name,quantity)ORGANIZATION EXTERNAL -(TYPE ORACLE_DATAPUMP -DEFAULT DIRECTORY ext.dir -LOCATION (ordersl.dmp','orders2.dmp,orders3.dmp,lorders4.dmp'))PARALLEL -AS -SELECT o.order_id,o.order_date,p.product_id,p.product_name,i.quantityFROM orders o,productsp,order_itemsiWHERE o.orderjd = i.order_id and i.product_id = p.product_id;You execute the command shown in the Exhibit, but only two files are created. Which parameter must be changed so that four files are created?
Users report this error message when inserting rows into the orders table:ERROR atline1:ORA-01654f:unable to extend index USERS.ORDERS_IND by 8in tablespace INDEXESYou determine that the indexes tablespace is out of space and there is no free space on the filesystem used by the Oracle database.Which two must you do to fix this problem without affecting currently executing queries?
Evaluate these statements:CREATE TABLE purchase_orders -(po_idNUMBER(4),po_dateTIMESTAMP,supplier_idNUM8ER(6),po_totalNUMBER(8,2), CONSTRAINT order_pk PRIMARY KEY(po_id))PARTITIONBYRANGE(po_date)(PARTITIONQ1 VALUESLESSTHAN (TO_DATE('01-apr-2007','dd-mon-yyyy')), PARTITIONQ2VALUESLESSTHAN(TO_DATE('01-jul-2007','dd-mon-yyyy')),PARTITIONQ3VALUESLESSTHAN (TO~DATE('01-oct-2007','dd-non-yyyy')), PARTITIONQ4VALUESLESSTHAN (TO_DATE('Ol-jan-2008','dd-non-yyyy' )));CREATETABLEpurchase_order_items -(po_idNUM3ER(4)NOTNULL,product_idNUMBER(6)NOTNULL,unit_prlceNUMBER(8,2),quantity NUMBER(8),CONSTRAINTpo_items_f k -FOREIGNKEY(po_id)REFERENCESpurchase_orders(po_id) )PARTITIONBYREFERENCE(po_items_fk);Which two statements are true?
Which four actions are possible during an Online Datafile Move operation?
Examine the command used to perform an incremental level-0 backup:RMAN>BACKUPINCREMENTALLEVEL0DATABASE;To enable block change tracking, after the incremental level 0 backup, you issue the command:SQL>ALTERDATABASEENABLEBLOCKCHANGETRACKINGUSINGFILE'/mydir/rman_change_track.f';To perform an incremental level-1 cumulative backup, you issue the command:RMAN>BACKUPINCREMENTALLEVEL1CUMULATIVEDATABASE;Which two statements are true in the preceding situation?
Which two statements are true about scheduling operations in a pluggable database (PDB)?