Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

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:

Exhibit 1.

Exhibit 2.

What will be the result?

A.

It gives an error because the ALL keyword is not valid

B.

It gives an error because the GROUP BY clause is not valid

C.

It executes successfully but does not give the required result

D.

It executes successfully and gives the required result

Which three statements are true about views in an Oracle database? (Choose three.)

A.

Views can be updated without the need to re-grant privileges on the view

B.

Tables in the defining query of a view must always exist in order to create the view

C.

The WITH CHECK clause prevents certain rows from being displayed when querying the view

D.

Data Manipulation Language (DML) can always be used on views

E.

Inserting one or more rows using a view whose defining query contains a GROUP BY clause will cause an error

F.

Deleting one or more rows using a view whose defining query contains a GROUP BY clause will cause an error

G.

The WITH CHECK clause prevents certain rows from being updated or inserted

Examine the description of the CUSTOMERS table:

For customers whose income level has a value, you want to display the first name and due amount as 5% of their credit limit. Customers whose due amount is null should not be displayed.

Which query should be used?

A.

SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNTFROM customersWHERE cust_income_level IS NOT NULLAND due_amount IS NOT NULL;

B.

SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNTFROM customersWHERE cust_income_level != NULLAND cust_credit_level !=NULL;

C.

SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNTFROM customersWHERE cust_income_level <> NULLAND due_amount <> NULL;

D.

SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNTFROM customersWHERE cust_income_level != NULLAND due_amount != NULL;

E.

SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNTFROM customersWHERE cust_income_level IS NOT NULLAND cust_credit_limit IS NOT NULL;

Which two tasks can you perform using DBCA for databases? (Choose two.)

A.

Configure a nonstandard block size for a new database

B.

Register a new database with an available Enterprise Manager Management server

C.

Change the standard block size of an existing database

D.

Configure incremental backups for a new database

E.

Enable flashback database for an existing database

Which two statements are true about Enterprise Manager Database Express? (Choose two.)

A.

It is available only when the database is open

B.

It can be used to perform database recovery

C.

The same port number can be used for Database Express configurations for databases on different hosts

D.

It can be used to switch a database into ARCHIVELOGMODE

E.

The same port number can be used for multiple Database Express configurations for multiple databases on the same host

Which two statements are true?

A.

SALES1 has not NULL constraints on any selected columns which had those constraints in the sales table.

B.

SALES1 has primary key and unique constraints on any selected columns which had those constraints in the sales table.

C.

SALES1 is created with 55,000 rows.

D.

SALES1 is created with no rows.

E.

SALES1 is created with 1 row.

Which three statements are true about Deferred Segment Creation in Oracle databases?

A.

It Is supported for Index Organized Tables (IOTs) contained in locally managed tablespaces.

B.

Sessions may dynamically switch back and forth from deferred to immediate segment creation.

C.

It Is the default behavior for tables and indexes.

D.

It is supported for SYS-owned tables contained in locally managed tablespaces.

E.

Indexes inherit the deferred or immediate segment creation attribute from their parent table

Which statement is true about database links?

A.

Private database link creation requires the same user to exist in both the local and the remote databases.

B.

A public database link can be created only by sys.

C.

A database link can be created only between two Oracle databases.

D.

A public database link can be used by a user connected to the local database instance to connect to any schema in the remote database instance.

E.

A database link created in a database allows a connection from that database's instance to the target database's Instance, but not vice versa.

Which three statements are true about table data storage in an Oracle Database? (Choose three.)

A.

Data block headers contain their own Data Block Address (DBA)

B.

A table row piece can be chained across several database blocks

C.

Multiple row pieces from the same row may be stored in different database blocks

D.

Multiple row pieces from the same row may be stored in the same block

E.

Data block free space is always contiguous in the middle of the block

F.

Index block free space is always contiguous in the middle of the block

A database is configured to use automatic undo management with temporary undo enabled.

An UPDATE is executed on a temporary table.

Where is the UNDO stored?

A.

in the undo tablespace

B.

in the SYSAUX tablespace

C.

in the SGA

D.

in the PGA

E.

in the temporary tablespace