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
#91. You need to remove all the data from the employee table while leaving the table definition intact. You want to be able to undo this operation. How would you accomplish this task?

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

#92. You need to change the job title ‘Clerk’ to ‘Administrative Clerk’ for all clerks, Which statement does this?

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

#93. 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

#94. 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

#95. Click on the EXHIBIT button and examine the structure of the PRODUCT and PART tables.

You issue this SQL statement
  1. SELECT pr.name
  2. FROMpart pt, product pr
  3. WHEREpt.product_id(+) = pr.id;
What is the result?

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

#96. 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 TM table. Which SELECT statement produces the required results?

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

#97. Which statement would you use to add a primary key constraint to the patient table using the id_number column, immediately enabling the constraint?

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

#98. Examine the structure of the STUDENT table:
 Name          Null           Type 
 STUD ID       NOT NULL       NUMBER(3) 
 NAME                         VARCHAR2(25) 
 ADDRESS                      VARCHAR2(5O) 
 GRADUATION                   DATE
Currently, the table is empty. You have decided that NULL values should not be allowed for NAME column. Which statement restricts NULL values from being entered into the column?

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

#99. The structure of the DEPT table is as follows:
 Name         Null            Type 
 DEPTNO       NOT NULL        NUMBER(2) 
 DNAME                        VARCHAR2(14) 
 LOC                          VARCHAR2(13)
Examine the declaration section:
  1. DECLARE
  2. TYPE dept_record_type IS RECORD
  3. (dno NUMBER.
  4. name VARCHAR2(20));
  5. dept_rec dept_record_type;
How do you retrieve an entire row of the DEPT table using the DEPT_REC variable?

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

#100. Examine the code:
  1. DECLARE
  2. CURSOR emp_cursor IS
  3. SELECT ename, deptno
  4. FROM emp;
  5. emp_rec emp_cursor%ROWTYPE;
  6. BEGIN
  7. OPEN emp_cursor;
  8. LOOP
  9. FETCH emp_cursor
  10. INTO emp_rec;
  11. EXIT WHEN emp_cursor%NOTFOUND;
  12. INSERT INTO temp_emp(name, dno) VALUES (emp_recename, emp_rec.deptno);
  13. END LOOP;
  14. CLOSE emp_cursor;
  15. END;
Using a cursor FOP loop, which PLJSQL block is equivalent to the above code?

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.272 Server date 10:10 22-11-2008 Developed by Zip © 2006 Up ^
Forum
Start online exam simulation
Master braindump
User braindumps