单选题 In the ORCL database, UNDOTBS1 is the active undo tablespace with these properties:
A size of 100 MB
AUTOEXTEND is off
UNDO_RETENTION is set to 15 minutes
It has RETENTION GUARANTEE
UNDOTBS1 fills with uncommitted undo 10 minutes after the database opens. What will happen when the next update is attempted by any transaction?
相关试题
单选题 In one of your databases, the user HR has the password HRMGR.
You want to connect to a database instance whose listener listens on port 1531 by using this statement:
CONNECT HR/HRMGR@orcl No name server is used.
Which statement is true about ORCL?
单选题 In one of your databases, user KING is:
Not a DBA user
An operating system (OS) user Examine this command and its output:
SHOW PARAMETER OS_AUTHENT_PREFIX
NAME TYPE VALUE
---------------------------------------------------------------
Os_authen_prefix string
What must you do so that KING is authenticated by the OS when connecting to the database instance?
多选题 The INVOICE table has a QTY_SOLD column of data type NUMBER and an INVOICE_DATE column of data type DATE. NLS_DATE_FORMAT is set to DD-MON-RR.
Which two are true about data type conversions involving these columns in query expressions? (Choose two.)
单选题 View the Exhibits and examine the structure of the COSTS and PROMOTIONS tables. You want to display PROD_IDS whose promotion cost is less than the highest cost PROD_ID in a promotion time interval.
Examine this SQL statement:
SELECT prod_id
FROM costs
WHERE prom_id in
(SELECT promo_id
FROM promotions
WHERE promo<ALL(SELECT MAX(promo_Cost)
FROM promotions
GROUP BY (promo_end_date-promo_begin_date)));
Exhibit 1
TABLE COSTS
Name Null Type
--------------------------------------------------------------
PROD_ID NOT NULL NUMBER
TIME_ID NOT NULL DATE
PROMO_ID NOT NULL NUMBER
CHANNE;_ID NOT NULL NUMBER
UNIT_COST NOT NULL NUMBER(10,2)
UNIT_PRICE NOT NULL NUMBER(10,2)
Exhibit 2
TABLE PROMOTIONS
Name Null Type
--------------------------------------------------------------
PROMO_ID NOT NULL NUMBER
PROMO_NAME NOT NULL VARCHAR2(30)
PROMO_SUBCATEGORY NOT NULL VARCHAR2(30)
PROMO_SUBCAEGORY_ID NOT NULL NUMBER
PROMO_CATEGORY NOT NULL VARCHAR2(30)
PROMO_CATEGORY_ID NOT NULL NUMBER
PROMO_COST NOT NULL NUMBER(10,2)
PROMO_BEGIN_DATE NOT NULL DATE
PROMO_END_DATE NOT NULL DATE
What will be the result?
单选题 Examine the description of the EMPLOYEES table:
Name null Type
---------------------------------------------------------------------
EMP_ID NOT NULL NUMBER
EMP_NAME VARCHAR2(40)
DEPT_ID NUMBER(2)
SALARY NUMBER(8,2)
JOIN_DATE DATE
Which query is valid?
单选题 Which statement is true regarding the INTERSECT operator?
多选题 Which three are types of segments in an Oracle Database? (Choose three.)
单选题 Examine the description of the PROMOTIONS table:
Name null Type
---------------------------------------------------------------------------
PROMO_ID NOT NULL NUMBER(6)
PROMO_NAME NOT NULL VARCHAR2(30)
PROMO_CATEGORY NOT NULL VARCHAR2(30)
PROMO_COST NOT NULL NUMBER(10,2)
Management requires a report of unique promotion costs in each promotion category. Which query would satisfy this requirement?