English Русский Contacts Site map Add to favorites
Registration
Login
Master braindump list
New braindumps
Submit a dump
Get latest dump
braindumps.com.ua
flame
3COM (7)
Adobe (1)
BEA (1)
Checkpoint (22)
Cisco (20)
Citrix (17)
CIW (15)
Compaq (0)
CompTIA (51)
CWNA (2)
EMC (2)
Exin (4)
GEJOS (4)
HDI (1)
HP (4)
IBM (13)
Juniper (1)
Linux Prof Institute (LPI) (2)
Lotus (11)
Microsoft (2461)
Network Appliance (2)
Novell (16)
Oracle (412)
PLSQL (1)
PMI (4)
SAS (1)
Sun (87)
Teradata (4)
Login:
Password:
RSS feed

Contacts
Certification links
Links
Authorized user can see question and answers.
Please log in or sign up.

Exam question list:
Show all comments
Oracle 1z0-001: Ineroduction to oracle:sql and pl/sql
#21. Click on the EXHIBIT button and examine the employee table.

You attempt to query the database with this command:
  1. SELECT dept_no, last_name, SUM(salary)
  2. FROM employee
  3. WHERE salary < 50000
  4. GROUP BY dept_no
  5. ORDER BY last_name;
Which clause causes an error?

Show comments for this question (0)
Add comments
Link to this question

#22. Click on the EXHIBIT button and examine the structure of the BOOK_TITLE, COPY, and CHECK_OUT tables.

You need to create the BOOKS_AVAILABLE view. These are the desired results:
1.Include the title of each book.
2.Include the availability of each book.
3.Order the results by the author.
Evaluate this SQL statement
  1. CREATE VIEW books_available
  2. AS
  3. SELECT b.title, c.availability
  4. FROMbook_title b, copy c
  5. WHEREB.id = c.title_id
  6. ORDER BY b.author
What does the statement provide?

Show comments for this question (0)
Add comments
Link to this question

#23. The view EMP_VIEW is created based on the table EMP as follows:
  1. CREATE OR REPLACE VIEW emp_view
  2. AS
  3. SELECT deptno, SUM(sal) TOT_SAL, COUNT(*) NUM_EMP
  4. FROM emp
  5. GROUP BY deptno;
What happens when the following command is issued?
  1. UPDATE emp_view
  2. SET tot_sal = 20000
  3. WHERE deptno = 10;


Show comments for this question (0)
Add comments
Link to this question

#24. Which statement shows the view definition of the view EMP_VIEW that is created based on the table EMP?

Show comments for this question (0)
Add comments
Link to this question

#25. In which section of a PL/SQL block is a user-defined exception raised?

Show comments for this question (0)
Add comments
Link to this question

#26. Examine the table structures:
EMP Table
 Name       Null?          Type 
 EMPNO      NOT NULL       NUMBER(4) 
 NAME                      VARCHAR2(10) 
 JOB                       VARCHAR2(9) 
 MGR                       NUMBER(4) 
 HIREDATE                  DATE 
 SALARY                    NUMBER(7,2) 
 COMM                      NUMBER(7,2) 
 DEPTNO     NOT NULL       NUMBER(2) 

TAX Table
 Name       Null?        Type 
 TAXGRADE                NUMBER 
 LOWSAL                  NUMBER 
 HIGHSAL                 NUMBER
You want to create a report that displays the employee details along with the tax category of each employee. The tax category is determined by comparing the salary of the employee from the EMP table to the lower and upper salary values in the TAX table. Which SELECT statement produces the required results?

Show comments for this question (0)
Add comments
Link to this question

#27. The PLAYER table contains these columns:
 ID            NUMBER(9) 
 NAME          VARCHAR(2) 
 MANAGER_ID    NUMBER(9)
In this instance, managers are players and you need to display a list of players. Evaluate these two SQL statements:
  1. SELECT p.name, m.name
  2. FROMplayer p, player m
  3. WHEREm.id = p.manager_id;
  4. SELECT p.name, m.name
  5. FROMplayer p, player m
  6. WHEREm.manager_id = p.id;
How will the results differ?

Show comments for this question (0)
Add comments
Link to this question

#28. Which operator is NOT appropriate in the join condition of a non-equi join SELECT statement?

Show comments for this question (0)
Add comments
Link to this question

#29. In which situation should you use an outer join query?

Show comments for this question (0)
Add comments
Link to this question

#30. You need to store currency data and you know that the data will always have two digits to the right of the decimal point. However, the number of digits to the left of the decimal place will vary greatly. Which datatype would be most appropriate to store this data?

Show comments for this question (0)
Add comments
Link to this question


 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] ... [18 
Up ^ gen. 0.761 Server date 10:03 22-11-2008 Developed by Zip © 2006 Up ^
Forum
Start online exam simulation
Master braindump
User braindumps