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 (21)
CIW (15)
Compaq (0)
CompTIA (51)
CWNA (2)
EMC (2)
Exin (4)
GEJOS (4)
HDI (1)
HP (4)
IBM (13)
Juniper (5)
Linux Prof Institute (LPI) (2)
Lotus (11)
Microsoft (2462)
Network Appliance (2)
Novell (16)
Oracle (422)
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-007: Introduction to Oracle9i: SQL
#171. The PRODUCT table contains these columns:
 PRODUCT_ID         NUMBER           NOT NULL 
 PRODUCT_NAME       VARCHAR2(25) 
 SUPPLIER_ID        NUMBER 
 LIST_PRICE         NUMBER(7,2) 
 COST               NUMBER(7,2)
You need to increase the list price and cost of all products supplied by Global Imports, Inc. by 5.5 percent. The SUPPLIER_ID for Global Imports, Inc. is 105. Which statement should you use?

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

#172. Which two statements would cause an implicit COMMIT to occur? (Choose two.)

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

#173. Examine the structures of the EVENT and NEW_EVENT tables.

You execute this MERGE statement:
  1. MERGE INTO EVENT e
  2. USING (SELECT *
  3. FROM new_event
  4. WHERE event_type_id = 4) n
  5. ON (e.event_id = n.event_id)
  6. WHEN MATCHED THEN
  7. UPDATE SET
  8. e.event_type_id = n.event_type_id,
  9. e.start_dt = n.start_dt
  10. WHEN NOT MATCHED THEN
  11. INSERT (event_id, event_name, event_type_id)
  12. VALUES(n.event_id, n.event_name, n.event_type_id);
This MERGE statement generates an error. Which statement describes the cause of the error?

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

#174. Which statement regarding DML statement functionality is true?

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

#175. The STUDENT table contains these columns:
 STU_ID          NUMBER(9)          NOT NULL 
 LAST_NAME       VARCHAR2(30)       NOT NULL 
 FIRST_NAME      VARCHAR2(25)       NOT NULL 
 DOB             DATE 
 STU_TYPE_ID     VARCHAR2(1)        NOT NULL 
 ENROLL_DATE     DATE
You create another table, named PT_STUDENT, with an identical structure. You want to insert all part-time students, who have a STU_TYPE_ID value of "P", into the new table. You execute this INSERT statement:
  1. INSERT INTO pt_student
  2. (SELECT stu_id, last_name, first_name, dob, SYSDATE
  3. FROM student
  4. WHERE UPPER(stu_type_id) = 'P');
What is the result of executing this INSERT statement?

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

#176. Examine the structures of the AR_TRX and AR_TRX_HY tables.

You are loading historical accounts receivable data from the AR_TRX table into the AR_TRX_HY table. During the load, you want to transform the data so that the GRAND_TOTAL column of the AR_TRX_HY table is equal to the sum of the EXT_AMT and TAX_AMT columns in the AR_TRX table. You want to set LOAD_DATE to the current date. If the record already exists in the target table, all values, except TRX_ID and TRX_TYPE, should be refreshed with the most recent data. Which MERGE statement should you execute?

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

#177. EMPLOYEES and DEPARTMENTS data:

On the EMPLOYEES table, EMPLOYEE_ID is the primary key. MGR_ID is the ID managers and refers to the EMPLOYEE_ID.
On the DEPARTMENTS table DEPARTMENT_ID is the primary key.
Evaluate this UPDATE statement.
  1. UPDATE employees
  2. SET mgr_id =
  3. (SELECT mgr_id
  4. FROM employees
  5. WHERE dept_id=
  6. (SELECT department_id
  7. FROM departments
  8. WHERE department_name = 'Administration')),
  9. Salary = (SELECT salary
  10. FROM employees
  11. WHERE emp_name = 'Smith')
  12. WHERE job_id = 'IT_ADMIN';
What happens when the statement is executed?

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

#178. The transaction control which prevent more than one user from updating data in a table is which of the following?

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

#179. What is necessary for your query on an existing view to execute successfully?

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

#180. Examine the structure if the EMPLOYEES table:

You need to create a view called EMP_VU that allows the user to insert rows through the view.
Which SQL statement, when used to create the EMP_VU view, allows the user to insert rows?

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


  [1] ...  [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] ... [31 
Up ^ gen. 0.115 Server date 03:33 08-01-2009 Developed by Zip © 2006 Up ^
Forum
Start online exam simulation
Master braindump
User braindumps