4.Which four are true about creating and running a remote database scheduler jobs? A) A credential is optional for a remote database job. B) A database destination group must exist or be created for a job to run on multiple remote databases. C) A des…
7.daily_ords_lst is created in locally managed tablespace ORDERS_TBS which uses automatic segment space management. CREATE TABLE daily_ords_list (ordno NUMBER, ord_date DATE) PCTFREE 20; Which two are true ? A) 80% of every data block in daily_ords_l…
8. Which are two ways for a database service to be recognized by a listener in Oracle Database 12c? A) Static registration in the listener.ora file using the service_name parameter B) Dynamic Registration by the smon process C) Static registration in…
choose three Which three statements are true about Oracle checkpoint processing? A) Incremental checkpoints write some dirty buffers to the datafiles and unwritten redo to the online redo logs. B) Frequent thread checkpoints can degrade database perf…
choose three Your database is configured for ARCHIVELOG mode, and a daily full database backup is taken. RMAN is configured to perform control file autobackup. In which three scenarios do you need media recovery? A) loss of data files that belong to…
choose three Which three statements are true about Oracle Data Pump? A) Oracle Data Pump export and import operations can be performed only by users with the SYSDBA privilege. B) IMPDP can be used to change target data file names, schemas, and tables…
choose two Your database is running in ARCHIVELOG mode. You want to take a consistent whole database backup. Which two statements are true in this scenario? A) RMAN backups contain only data files. B) The database must be in MOUNT state to take consi…
choose two Examine this command executed on a client that is remote from the database server. SQL> CONNECT hr/hr@orcl Which two are required for this command to connect the SQLPLUS client to a database instance? A) A service name must be defined to t…
6.Which four statements are true about database instance behavior? A) Redo log files can be renamed in mount state. B) Datafiles can be renamed in mount state. C) All dynamic performance views (v$ views) return data when queried from a session connec…
25.Which is true about logical and physical database structures? (Choose the best answer) A. An undo tablespace has a temp file instead of a data file. B. A segment can consist of extents of different sizes. C. A permanent tablespace can only contain…
5.One of your databases supports an OLTP workload. The default undo tablespace is fixed size with: 1. RETENTION NOGUARANTEE 2. undo_retention is 12 minutes User scott get this error after a query on the sales table has run for more than 15 minutes: O…
10.Which two statements are true about SQL*Loader Express Mode in an Oracle 12c database? A) It can load data in parallel. B) No data file needs to be specified. C) It loads data faster than conventional SQL*Loader. D) lt loads data more efficiently…
11.Your database is in archivelog mode. You want to disable archiving for the database. Examine these steps: 1. Execute the alter database noarchivelog command. 2. Execute shutdown immediate. 3. Execute startup mount. 4. Set the db_recovery_file_dest…
9.You ran this command on a source database: $> expdp hr/hr DIRECTORY=dumpdir DUMPFILE=empl.dmp VIEWS_AS_TABLES=emp_dept On the target database, you run this command: impdp hr/hr DIRECTORY=dumpdir DUMPFILE=empl.dmp VIEWS_AS_TABLES=emp_dept Which two…
choose one In your Oracle 12c database, you plan to execute the command: SQL> CREATE TABLESPACE tbsl DATAFILE '/u02/oracle/data/tbs0l.dbf' SIZE 50M; The u02 file system has 1 GB of free space available. What is the outcome? A) It raises an error beca…
choose two You plan to upgrade your Oracle Database 9i to Oracle Database 12c. Which two methods can you use? A) Perform a direct upgrade by manually running the catctl.pl and catupgrd.sql scripts before issuing the STARTUPUPGRADE command. B) Upgrade…
65.(22-16) choose the best answer: The CUSTOMERS table has the following structure: You need to write a query that does the following tasks: 1. Display the first name and tax amount of the customers. Tax is 5% of their credit limit. 2. Only those cus…
choose one Which users are created and can be used for database and host management of your DBaaS database servers? A) cloud and oracle users B) root, oracle and cloud users C) root and oracle users D) opc and oracle users E) root, opc and oracle use…
68.(29-13)choose two: Which two statements are true? (Choose two.) A) DICTIONARY is a view that contains the names of all the data dictionary views that the user can access. B) The user SYSTEM owns all the base tables and user-accessible views of the…
67.(25-8)choose the best answer: View the Exhibit and examine the structure of CUSTOMERS table. Evaluate the following query: SQL>SELECT cust_id, cust_city FROM customers WHERE cust_first_name NOT LIKE 'A_%g_%' AND cust_credit_limit BETWEEN 5000 AND…
66.(22-19)choose two Examine the structure proposed for the TRANSACTIONS table: Which two statements are true regarding the creation and storage of data in the above table structure? A) The TRANS_DATE column would be able to store day, month, century…
28.choose the best answer Evaluate the following SQL statement: SQL> SELECT promo_id, promo_category FROM promotions WHERE promo_category = 'Internet' ORDER BY 2 DESC UNION SELECT promo_id, promo_category FROM promotions WHERE promo_category = 'TV' U…
27.choose two The SQL statements executed in a user session are as follows: SQL> CREATE TABLE product (pcode NUMBER(2), pname VARCHAR2(10)); SQL> INSERT INTO product VALUES (1, 'pen'); SQL> INSERT INTO product VALUES (2,'pencil'); SQL> SAVEPOI…
26.choose two Examine the structure of the PRODUCTS table. Which two statements are true? A) EXPIRY_DATE always stores date and time in character format B) PRICE can store a maximum of eight digits and two decimals. C) PRODUCT_PIC can store only vide…
25. choose the best answer Evaluate the following SQL statement: ALTER TABLE hr.emp SET UNUSED (mgr_id); Which statement is true regarding the effect of the above SQL statement? A) Any views created on the EMP table that include the MGR_ID column wou…
31.Which two events always request the LGWR to write? A) when LGWR is notified by a server process that performs a Commit or ROLLBACK B) When PMON restarts a server process C) when DBWn writes dirty buffers D) when a log switch occurs E) when a check…