Chinese(T) | English
contact me
User Login
Username:
Password :

ibm db2 udb v8.1 family fundametals

Index >> IBM >> DB2 >> "000-700"Exam

VUE/Prometric Code:000-700

Exam Name:ibm db2 udb v8.1 family fundametals
Questions and Answers:108 Q&As
Price:$ 79
Updated:2008-12-01
ibm db2 udb v8.1 family fundametals
Test Q&A Updated Price
000-700 108 Q&A 2008-12-01 $ 79

please download in PDF format Demo: 000-700

killtest 000-700 Exam Features

High quality and Value for the 000-700 Exam.
Killtest Practice Exams for ibm db2 udb v8.1 family fundametals 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 DB2 exam and get your DB2 Certification.
We guarantee your success in the first attempt. If you do not pass the 000-700 (ibm db2 udb v8.1 family fundametals) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.

killtest 000-700 Downloadable.
Printable Exams (in PDF format) Our Exam 000-700 Preparation Material provides you everything you will need to take your DB2 exam. The DB2 Certification details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get DB2 exam questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first DB2 exam try, but also save your valuable time .

  • Comprehensive questions with complete details about 000-700 exam.
  • 000-700 exam questions accompanied by exhibits.
  • Verified Answers Researched by Industry Experts and almost 100% correct.
  • Drag and Drop questions as experienced in the Real DB2 exam.
  • 000-700 exam questions updated on regular basis.
  • Like actual DB2 Certification exams, 000-700 exam preparation is in multiple-choice questions (MCQs).
  • Tested by many real DB2 exams before publishing.
  • Try free DB2 exam demo before you decide to buy it in http://www.Killtest.com.

High quality and Value for the 000-700 Exam:100% Guarantee to Pass Your DB2 exam and get your DB2 Certification.

http://www.Killtest.com The safer.easier way to get DB2 Certification.

We offer Demo version of Q&A, Q&A are as follows (not to provide picture):

000-700:please download 000-700 in PDF format Demo 000-700

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
Correct:C
2.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
Correct:C
3.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
Correct:B
4.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
Correct:C
5.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
Correct:B E
6.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
Correct:B
7.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
Correct:D
8.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.
Correct:D
9.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
Correct: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
Correct:A
11.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
Correct:D
12.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.
Correct:C
13.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
Correct:C
14.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.
Correct:C
15.Given the following SQL statements: CREATE TABLE birthday1 (day INT CHECK(day BETWEEN 1 AND 31), month INT CHECK(month BETWEEN 1 AND 6), year INT) CREATE TABLE birthday2 (day INT CHECK(day BETWEEN 1 AND 31), month INT CHECK(month BETWEEN 7 AND 12), year INT) CREATE VIEW birthdays AS SELECT * FROM birthday1 UNION ALL SELECT * FROM birthday2 INSERT INTO birthday1 VALUES( 22,10, 1973) INSERT INTO birthday1 VALUES( 40, 8, 1980) INSERT INTO birthday1 VALUES( 8, 3, 1990) INSERT INTO birthday1 VALUES( 22, 10, 1973) INSERT INTO birthday1 VALUES( 3, 3, 1960) What will be the result of the following SELECT statement? SELECT COUNT(*) FROM birthdays
A.0
B.2
C.3
D.5D.5
Correct:B
16.Which of the following actions describes when SQL indexes can be explicitly referenced by name within an SQL statement?
A.When dropping the index
B.When altering the index
C.When selecting on the index
D.When inserting using the index
Correct:A
17.Which of the following tools can be used to identify inefficient SQL statements without executing them?
A.QMF
B.Task Center
C.Visual Explain
D.Development Center
Correct:C
18.Table T1 has a column C1 char(3) that contains strings in upper and lower case letters. Which of the following queries will find all rows where C1 is the string 'ABC' in any case?
A.SELECT * FROM t1 WHERE c1 = 'ABC'
B.SELECT * FROM t1 WHERE UCASE(c1) = 'ABC'
C.SELECT * FROM t1 WHERE IGNORE_CASE(c1 = 'ABC')
D.SELECT * FROM t1 WHERE c1 = 'ABC' WITH OPTION CASE INSENSITIVE
Correct:B
19.Given the following table definitions: CREATE TABLE employee (empid INT NOT NULL PRIMARY KEY, emp_fname CHAR(30), emp_lname CHAR(30) ) CREATE TABLE payroll (empid INTEGER, weeknumber INTEGER, paycheck DECIMAL(6,2), CONSTRAINT fkconst FOREIGN KEY (empid) REFERENCES employee (empid) ON DELETE SET NULL, CONSTRAINT chk1 CHECK (paycheck>0 AND weeknumber BETWEEN 1 and 52)) The appropriate indexes exist to support the tables created with the previous CREATE statements. Which two of the following operations can cause the enforcement of a constraint defined on PAYROLL?
A.Update of a row in PAYROLL
B.Deletion of a row in PAYROLL
C.Deletion of a row in EMPLOYEE
D.Addition of a new column to PAYROLL
E.Rollback of a row deletion on PAYROLL
Correct:A C
20.What is the minimum privilege required to allow USER1 to access table data?
A.READ privilege on the table
B.SELECT privilege on the table
C.REFERENCES privilege on the table
D.SELECT privilege WITH GRANT OPTION on the table
Correct:B
21.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) Where the job column contains job types: manager, clerk, and salesperson. Which of the following statements will return the data with all managers together, all clerks together, and all salespeople together in the output?
A.SELECT * FROM staff ORDER BY job
B.SELECT job, name FROM staff GROUP BY name, job
C.SELECT * FROM staff GROUP BY name, job, id, dept, years, salary, comm
D.SELECT * FROM staff ORDER BY name, job, id, dept, years, salary, comm
Correct:A
22.Assuming the proper privileges, which two of the following would allow access to data in a table T1 using the name A1?
A.CREATE ALIAS a1 FOR t1
B.CREATE TABLE a1 LIKE t1
C.CREATE INDEX a1 ON t1 (col1)
D.CREATE VIEW a1 AS SELECT * FROM t1
E.CREATE TRIGGER trig1 AFTER INSERT ON t1 FOR EACH ROW MODE DB2SQL INSERT INTO a1
Correct:A D
23.Given a user defined function, U.UDF1, that takes an input parameter of type INTEGER, and USER6 running the following SQL statement: SELECT w.udf1(col6) FROM t.tab1 WHERE col4 = 'ABC' Which of the following statement(s) would allow USER6 to execute the statement?
A.GRANT ALL PRIVILEGES ON TABLE t.tab1 TO user6
B.GRANT SELECT ON TABLE t.tab1 TO user6 GRANT USE ON FUNCTION u.udf1(INT) TO user6
C.GRANT SELECT ON TABLE t.tab1 TO user6 GRANT REFERENCES ON FUNCTION u.udf1(INT) TO user6
D.GRANT ALL PRIVILEGES ON TABLE t.tab1 TO user6 GRANT EXECUTE ON FUNCTION u.udf1(INT) TO user6
Correct:D
24.Which of the following is defined on the dependent table to implement a referential constraint?
A.Primary key
B.Foreign key
C.Check constraint
D.Update trigger
Correct:B
25.A stored procedure has been created with the following statement: CREATE PROCEDURE P1(INOUT VAR1 VARCHAR(10))... From the command line processor (CLP), which is the correct way to call this procedure?
A.Call P1(?)
B.Call P1(DB2)
C.Call P1('DB2')
D.Call P1("DB2")
Correct:C
26.Which of the following DB2 UDB isolation levels will lock no rows during read processing?
A.Read Stability
B.Repeatable Read
C.Uncommitted Read
D.Cursor Stability
Correct:C
27.Given the following SQL statement: GRANT REFERENCES ON TABLE tab1 TO USER usera Which of the following describes what USERA is allowed to do?
A.Create a read-only view using TAB1.
B.Alter TAB1 to add a check constraint.
C.Define a primary key or unique constraint on TAB1.
D.Define a dependent table where TAB1 is the parent.
Correct:D
28.Which of the following extenders allows data to be presented in a three-dimensional format?
A.DB2 AVI Extender
B.DB2 XML Extender
C.DB2 Text Extender
D.DB2 Spatial Extender
Correct:D
29.A database administrator has supplied the following information: -Protocol: TCP/IP -Port Number: 446 -Host Name: ZEUS -Database Name: SAMPLE -Database Server Platform: OS/400 Which are the appropriate commands to set up the ability to connect to the database?
A.CATALOG TCPIP NODE zeus REMOTE zeus SERVER 446 OSTYPE os400 DATABASE sample;
B.CATALOG TCPIP DATABASE sample REMOTE zeus SERVER 446 OSTYPE os400; CATALOG DATABASE dcssam AS sample AT NODE zeus AUTHENTICATION dcs;
C.CATALOG TCPIP NODE zeus REMOTE zeus SERVER 446 OSTYPE os400; CATALOG DCS DB dcssam AS sample; CATALOG DATABASE dcssam AS sample AT NODE zeus AUTHENTICATION dcs;
D.CATALOG TCPIP NODE sample REMOTE sample SERVER 446 OSTYPE os400; CATALOG DCS DB sample AS dcssam; CATALOG DATABASE dcssam AS sample AT NODE zeus AUTHENTICATION dcs;
Correct:C
30.Which of the following occurs if an application ends abnormally during an active unit of work?
A.The unit of work remains active
B.The unit of work is rolled back
C.The unit of work moves to CHECK_PENDING
D.The unit of work moves to pending state
Correct:B