The contents of a SQL* Loader control file and the datafile are as follows:
Control file: load.ctl
LOAD DATA
INTO TABLE myuser.purchase_orders
REPLACE
FIELDS TERMINATED BY ‘;’
(po_id,
po_date date ‘yyyymmdd’,
po_desc char(25),
po_item char(25),
po_item2 char(25))
Datafile: load.dat
1; 20031025; DSL/Wireless Expense Oct; Home DSL; Wireless 2; 20031125; Office Equipment; Optical Mouse; Network Router
3; 20031225; Computer System; Dell Pentium 4 Laptop; Docking Bay
Which two database users can log in to Enterprise Manager and perform the batch load of this data? (Choose two.)
A.
MDSYS
B.
WKSYS
C.
myuser
D.
SYSTEM
E.
DBSNMP