Questions on SQL Part2

Part 2 – Questions on SQL and SQL *Plus

 

1. A user is setting up a join operation between tables EMP and DEPT. There are some employees in the EMP table that the user wants returned by the query, but the employees are not assigned to departments yet. Which SELECT statement is most appropriate for this user?

 

A.      select e.empid, d.head from emp e, dept d;

B.      select e.empid, d.head from emp e, dept d where e.dept# = d.dept#;

C.      select e.empid, d.head from emp e, dept d where e.dept# = d.dept# (+);

D.     select e.empid, d.head from emp e, dept d where e.dept# (+) = d.dept#;

 

2. Developer ANJU executes the following statement: CREATE TABLE animals AS SELECT * from MASTER.ANIMALS; What is the effect of this statement?

 

A.      A table named ANIMALS will be created in the MASTER schema with the same data as the ANIMALS table owned by ANJU.

B.      A table named ANJU will be created in the ANIMALS schema with the same data as the ANIMALS table owned by MASTER.

C.      A table named ANIMALS will be created in the ANJU schema with the same data as the ANIMALS table owned by MASTER.

D.     A table named MASTER will be created in the ANIMALS schema with the same data as the ANJU table owned by ANIMALS.

 

3. User JANKO would like to insert a row into the EMPLOYEE table. The table has three columns: EMPID, LASTNAME, and SALARY. The user would like to enter data for EMPID 59694, LASTNAME Harris, but no salary. Which statement would work best?

 

A.      INSERT INTO employee VALUES (59694,'HARRIS', NULL);

B.      INSERT INTO employee VALUES (59694,'HARRIS');

C.      INSERT INTO employee (EMPID, LASTNAME, SALARY) VALUES (59694,'HARRIS');

D.     INSERT INTO employee (SELECT 59694 FROM 'HARRIS');

 

4. Which three of the following are valid database datatypes in Oracle? (Choose three.)

 

A.      CHAR

B.      VARCHAR2

C.      BOOLEAN

D.     NUMBER

 

5. Omitting the WHERE clause from a DELETE statement has which of the following effects?

 

A.      The delete statement will fail because there are no records to delete.

B.      The delete statement will prompt the user to enter criteria for the deletion

C.      The delete statement will fail because of syntax error.

D.     The delete statement will remove all records from the table.

 

6. Dropping a table has which of the following effects on a nonunique index created for the table?

 

A.      No effect.

B.      The index will be dropped.

C.      The index will be rendered invalid.

D.     The index will contain NULL values.

 

7. To increase the number of null-able columns for a table,

 

A.      Use the alter table statement.

B.      Ensure that all column values are NULL for all rows.

C.      First increase the size of adjacent column datatypes, then add the column.

D.    Add the column, populate the column, then add the NOT NULL constraint.

 

8. Which line of the following statement will produce an error?

 

A.      CREATE TABLE goods

B.      (good_no NUMBER,

C.      good_name VARCHAR2 check(good_name in (SELECT name FROM avail_goods)),

D.     CONSTRAINT pk_goods_01

E.      PRIMARY KEY (goodno));

F.      There are no errors in this statement.

 

9. MAXVALUE is a valid parameter for sequence creation.

 

A.      A. TRUE

B.      B. FALSE

 

10. Which function below can best be categorized as similar in function to an IF-THEN-ELSE statement?

 

A.      SQRT

B.      DECODE

C.      NEW_TIME

D.     ROWIDTOCHAR

 

 

 

Answers:

  1. Option D
  2. Option C
  3. Option A
  4. Option A, B and D
  5. Option D
  6. Option B
  7. Option A
  8. Option C
  9. Option A
  10. Option B

 

End of Part 2

Questions on SQL Part1

Part 1 – Questions on SQL and SQL *Plus

 

1. Which of the following statements contains an error?

 

A. SELECT * FROM emp WHERE empid = 493945;

B. SELECT empid FROM emp WHERE empid= 493945;

C. SELECT empid FROM emp;

D. SELECT empid WHERE empid = 56949 AND lastname = 'SMITH';

 

2. Which of the following correctly describes how to specify a column alias?

 

A. Place the alias at the beginning of the statement to describe the table.

B. Place the alias after each column, separated by white space, to describe the column.

C. Place the alias after each column, separated by a comma, to describe the column.

D. Place the alias at the end of the statement to describe the table.

 

3. The NVL function

A. Assists in the distribution of output across multiple columns.

B. Allows the user to specify alternate output for non-null column values.

C. Allows the user to specify alternate output for null column values.

D. Nullifies the value of the column output.

 

4. Output from a table called PLAYS with two columns, PLAY_NAME and AUTHOR, is shown below.

Which of the following SQL statements produced it?

 

PLAY_TABLE
-------------------------------------
"Midsummer Night's Dream", SHAKESPEARE
"Waiting For Godot", BECKETT
"The Glass Menagerie", WILLIAMS

 

A. SELECT play_name || author FROM plays;

B. SELECT play_name, author FROM plays;

C. SELECT play_name||', ' || author FROM plays;

D. SELECT play_name||', ' || author PLAY_TABLE FROM plays;

 

5. Issuing the DEFINE_EDITOR="emacs" will produce which outcome?

 

A. The emacs editor will become the SQL*Plus default text editor.

B. The emacs editor will start running immediately.

C. The emacs editor will no longer be used by SQL*Plus as the default text editor.

D. The emacs editor will be deleted from the system.

 

6. The user issues the following statement. What will be displayed if the EMPID selected is 60494?

 

SELECT DECODE(empid,38475, ‘Terminated’,60494, ‘LOA’, ‘ACTIVE’)

FROM  emp;

 

A. 60494

B. LOA

C. Terminated

D. ACTIVE

 

7. SELECT (TO_CHAR(NVL(SQRT(59483), ‘INVALID’)) FROM DUAL is a valid SQL statement.

 

A. TRUE

B. FALSE

 

8. The appropriate table to use when performing arithmetic calculations on values defined within the SELECT statement (not pulled from a table column) is

 

A. EMP

B. The table containing the column values

C. DUAL

D. An Oracle-defined table

 

9. Which of the following is not a group function?

 

A. avg( )

B. sqrt( )

C. sum( )

D. max( )

 

10. The default character for specifying runtime variables in SELECT statements is

 

A. Ampersand

B. Ellipses

C. Quotation marks

D. Asterisk

 

Answers:

  1. Option D
  2. Option B
  3. Option C
  4. Option D
  5. Option A
  6. Option B
  7. Option B
  8. Option C
  9. Option B
  10. Option A

 

 

To view explanations for the answers of questions go here.

 

Don’t miss the explanations for the answers.

 

End of Part 1

Script to know which tablespace are full

This script lists the tablespace which cannot extent causing tablespace full.

select a.owner||'.'||a.segment_name "Segment Name",
a.segment_type "Segment Type",
a.bytes/1024/1024 "Size(MB)",
a.next_extent/1024/1024 "Next Extent",
a.tablespace_name "Tablespace Name"
from sys.dba_segments a
where a.tablespace_name not like 'T%MP%' -- Exclude TEMP tablespaces
and next_extent * 1 > ( -- Cannot extend 1x, can change to 2x...
select max(b.bytes)
from dba_free_space b
where a.tablespace_name = b.tablespace_name)
order by 3 desc;