000-700 Exam
ibm db2 udb v8.1 family fundametals
- Exam Number/Code : 000-700
- Exam Name : ibm db2 udb v8.1 family fundametals
- Questions and Answers : 108 Q&As
- Update Time: 2011-09-21
- Price:
$ 119.00$ 69.00
Free 000-700 Demo Download
Test4pass offers free demo for DB2 000-700 exam (ibm db2 udb v8.1 family fundametals). You can check out the interface, question quality and usability of our practice exams before you decide to buy it. We are the only one site can offer demo for almost all products.
Exam Description
It is well known that 000-700 exam test is the hot exam of IBM certification. Test4pass offer you all the Q&A of the 000-700 real test . It is the examination of the perfect combination and it will help you pass 000-700 exam at the first time!
Why choose Test4pass 000-700 braindumps
Quality and Value for the 000-700 Exam
100% Guarantee to Pass Your 000-700 Exam
Downloadable, Interactive 000-700 Testing engines
Verified Answers Researched by Industry Experts
Drag and Drop questions as experienced in the Actual Exams
Practice Test Questions accompanied by exhibits
Our Practice Test Questions are backed by our 100% MONEY BACK GUARANTEE.
IBM DB2 000-700 exam braindumps questions and answers
¡¡
Exam : IBM 000-700
Title : IBM DB2 UDB V8.1 Family Fundamentals
1. A table called EMPLOYEE has the following columns:
NAME
DEPARTMENT
PHONE_NUMBER
Which of the following will allow USER1 to modify the PHONE_NUMBER column?
A. GRANT INDEX (phone_number) ON TABLE employee TO user1
B. GRANT ALTER (phone_number) ON TABLE employee TO user1
C. GRANT UPDATE (phone_number) ON TABLE employee TO user1
D. GRANT REFERENCES (phone_number) ON TABLE employee TO user1
Answer: C
2. Which two of the following SQL data types should be used to store a small binary image?
A. CLOB
B. BLOB
C. VARCHAR
D. GRAPHIC
E. VARCHAR FOR BIT DATA
Answer: BE
3. An application bound with isolation level Uncommitted Read updates a row. Which of the following is true regarding the locking of this row?
A. No row lock is acquired when the row is updated.
B. The row lock is released when the cursor accessing the row is closed.
C. The row lock is released when the application issues a COMMIT statement.
D. The row lock is released when the cursor accessing the row is moved to the next row.
Answer: C
4. Given the SQL statement:
ALTER TABLE table1 ADD col2 INT WITH DEFAULT
Which of the following is the result of the statement?
A. The statement fails because no default value is specified.
B. A new column called COL2 is added to TABLE1 which would have a null value if selected.
C. A new column called COL2 is added to TABLE1 which would have a value of zero if selected.
D. A new column called COL2 is added to TABLE1 which would require the default value to be set before working with the table.
Answer: C
5. Given that the following statements were executed in order:
CREATE TABLE tab1 (c1 CHAR(1))
INSERT INTO tab1 VALUES ('b')
CREATE VIEW view1 AS SELECT c1 FROM tab1 WHERE c1 ='a'
INSERT INTO view1 VALUES ('a')
INSERT INTO view1 VALUES ('b')
How many rows would be returned from the following statement?
SELECT c1 FROM tab1
A. 0
B. 1
C. 2
D. 3
Answer: D
6. Given the following two tables:
TAB1 TAB2
C1 C2 CX CY
------ ----- ----- ------
A 11 A 21
B 12 C 22
C 13 D 23
The following results are desired:
C1 C2 CX CY
------ ----- ----- ------
A 11 A 21
B 12 - -
C 13 C 22
Which of the following joins will yield the desired results?
A. SELECT * FROM tab1 INNER JOIN tab2 ON c1=cx
B. SELECT * FROM tab2 LEFT OUTER JOIN tab1 ON c1=cx
C. SELECT * FROM tab2 FULL OUTER JOIN tab1 ON c1=cx
D. SELECT * FROM tab1 LEFT OUTER JOIN tab2 ON c1=cx
Answer: D
7. A unit of work is using an isolation level of Read Stability. An entire table is scanned twice within the unit of work. Which of the following can be seen on the second scan of the table?
A. Rows removed by other processes
B. Rows added to a result set by other processes
C. Rows changed in a result set by other processes
D. Rows with uncommitted changes made by other processes
Answer: B
8. Which of the following tools is used to create subscription sets and add subscription-set members to subscription sets?
A. Journal
B. License Center
C. Replication Center
D. Development Center
Answer: C
9. Which of the following DB2 data types CANNOT be used to contain the date an employee was hired?
A. CLOB
B. TIME
C. VARCHAR
D. TIMESTAMP
Answer: B
10. Given the following table definition:
COUNTRY
c1 INTEGER
name CHAR(20)
Which of the following SQL statements will remove all rows from the table named COUNTRY?
A. DELETE FROM country
B. DELETE * FROM country
C. DELETE FROM TABLE country
D. DELETE FROM country WHERE c1 IS NOT NULL
Answer: A
11. Given these columns from the DEPARTMENT table:
deptno CHAR(3) NOT NULL
deptname CHAR(20) NOT NULL
mgrno CHAR(6)
admrdept CHAR(3)
location CHAR(20) NOT NULL
Which of the following will select the rows that do not have a value in the MGRNO column?
A. SELECT * FROM department WHERE mgrno = ''
B. SELECT * FROM department WHERE mgrno = NULL
C. SELECT * FROM department WHERE mgrno IS NULL
D. SELECT * FROM department WHERE mgrno IS UNKNOWN
Answer: C
12. A client application on OS/390 or OS/400 must access a DB2 server on AIX. At a minimum, which of the following products is required to provide DRDA Application Server functionality on the DB2 server for AIX?
A. DB2 Connect Enterprise Edition
B. DB2 UDB Workgroup Server Edition
C. DB2 Connect Enterprise Edition and DB2 UDB Workgroup Server Edition
D. DB2 Connect Enterprise Edition and DB2 UDB Enterprise Server Edition
Answer: B
13. Given the following statements from two embedded SQL programs:
Program 1:
CREATE TABLE mytab (col1 INT, col2 CHAR(24))
COMMIT
Program 2:
INSERT INTO mytab VALUES( 20989,'Joe Smith')
COMMIT
INSERT INTO mytab VALUES( 21334,'Amy Johnson')
DELETE FROM mytab
COMMIT
INSERT INTO mytab VALUES( 23430,'Jason French')
ROLLBACK
INSERT INTO mytab VALUES( 20993,'Samantha Jones')
COMMIT
DELETE FROM mytab WHERE col1=20993
ROLLBACK
Assuming Program 1 ran to completion and then Program 2 ran to completion, which of the following records would be returned by the statement:
SELECT * FROM mytab?
A. 20989, Joe Smith
B. 21334, Amy Johnson
C. 23430, Jason French
D. 20993, Samantha Jones
E. No records are returned.
Answer: D
14. Given the following table definition:
STAFF
id INTEGER
name CHAR(20)
dept INTEGER
job CHAR(20)
years INTEGER
salary DECIMAL(10,2)
comm DECIMAL(10,2)
Which of the following SQL statements will return a result set that satisfies these conditions:
-Displays the department ID and total number of employees in each department.
-Includes only departments with at least one employee receiving a commission (comm) greater than 5000.
-Sorted by the department employee count from greatest to least.
A. SELECT dept, COUNT(*) FROM staff GROUP BY dept HAVING comm > 5000 ORDER BY 2 DESC
B. SELECT dept, COUNT(*) FROM staff WHERE comm > 5000 GROUP BY dept, comm ORDER BY 2 DESC
C. SELECT dept, COUNT(*) FROM staff GROUP BY dept HAVING MAX(comm) > 5000 ORDER BY 2 DESC
D. SELECT dept, comm, COUNT(id) FROM staff WHERE comm > 5000 GROUP BY dept, comm ORDER BY 3 DESC
Answer: C
Click Online chat to talk with us , get more informations about IBM DB2 000-700 practice exam study guides questions and answers
Test4pass 000-700 Exam Features
Quality and Value for the 000-700 Exam
Test4pass Practice Exams for IBM 000-700 are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.
100% Guarantee to Pass Your 000-700 Exam
If you prepare for the exam using our Test4pass testing engine, we guarantee your success in the first attempt. If you do not pass the DB2 000-700 exam (ProCurve Secure WAN) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.
IBM 000-700 Downloadable, Printable Exams (in PDF format)
Our Exam 000-700 Preparation Material provides you everything you will need to take your 000-700 Exam. The 000-700 Exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.
000-700 Downloadable, Interactive Testing engines
We are all well aware that a major problem in the IT industry is that there is a lack of quality study materials. Our Exam Preparation Material provides you everything you will need to take a certification examination. Like actual certification exams, our Practice Tests are in multiple-choice (MCQs) Our IBM 000-700 Exam will provide you with free 000-700 dumps questions with verified answers that reflect the actual exam. These questions and answers provide you with the experience of taking the actual test. High quality and Value for the 000-700 Exam:100% Guarantee to Pass Your DB2 exam and get your DB2 Certification.
Test4pass 000-700 examTest4pass 000-700 pdf exam
Test4pass 000-700 braindumps
Test4pass 000-700 study guides
Test4pass 000-700 trainning materials
Test4pass 000-700 simulations
Test4pass 000-700 testing engine
Test4pass 000-700 vce
Test4pass 000-700 torrent
Test4pass 000-700 dumps
free download 000-700
Test4pass 000-700 practice exam
Test4pass 000-700 preparation files
Test4pass 000-700 questions
Test4pass 000-700 answers
http://www.test4pass.com/000-700-exam.html The safer.easier way to get DB2 Certification
.




