1.
In which scenario would TOP N analysis be the best solution?
2.
Which constraint can be defines only at the column level?
3.
What is true about the WITH GRANT OPTION clause?
4.
Which substitution variable would you use if you want to reuse the variable without prompting the user each
time?
5.
The EMPLOYEES table has these columns:
LAST NAME VARCHAR2(35)
SALARY NUMBER(8,2)
HIRE_DATE DATE
Management wants to add a default value to the SALARY column. You plan to alter the table by using this SQL
statement:
ALTER TABLE EMPLOYEES
MODIFY ( SALARY DEFAULT 5000);
What is true about your ALTER statement?
6.
The DBA issues this SQL command:
CREATE USER scott
IDENTIFIES by tiger;
What privileges does the user Scott have at this point?
7.
You need to produce a report for mailing labels for all customers. The mailing label must have only the
customer name and address. The CUSTOMERS table has these columns:
CUST_ID NUMBER(4) NOT NULL
CUST_NAME VARCHAR2(100) NOT NULL
CUST_ADDRESS VARCHAR2(150)
CUST_PHONE VARCHAR2(20)
Which SELECT statement accomplishes this task?
8.
Which statement describes the ROWID data type?
9.
Evaluate the SQL statement DROP TABLE DEPT: Which four statements are true of the SQL statement? (Choose four)
10.
You are granted the CREATE VIEW privilege. What does this allow you to do?