You are on page 1of 6

IBM 000-730 questions and answers

000-730 Practice Test


IBM DB2 9 Fundamentals

000-730: DB2 9 Fundamentals


Practice Exam: 000-730 Exams
Exam Number/Code: 000-730
Exam Name: DB2 9 Fundamentals
Questions and Answers: 127 Q&As
( DB2 )

For candidates making preparation for the IBM 000-730 questions and E x a m : 000-730
answers, what they most desire is to easily pass the 000-730 (DB2 9
Fundamentals) exam. ItCertHome 000-730 includes 127 questions and answers, which are collected and collated by
experts of IBM. With our 000-730 study materials, you can successfully take IBM certification of 000-730 exam and
go further on IBM career path.
Free 000-730 Demo
we provide IBM 000-730 demo exam for free (in PDF format ) before you decide to purchase it. Thus,you can know
better about the quality of our practice exam and then make your right decision.

ItCertHome Test tool's advantages:


High Quality and Value of 000-730 exam
ItCertHome IBM DB2 000-730 Practice Questions is developed and finished by IBM technical team , cover every field
of the exam . Besides, we have verified 000-730 answers,almost 100% correct.

100% Guarantee to Pass 000-730 Exam


We promise to give you FULL REFUND if you fail the DB2 000-730 certification(IBM Certified Network Associate) with
the use of our ItCertHome testing engine.

000-730 Self Test Mode


ItCertHome provides a simulated and interactive environment where you can test your knowledge and skills about 000-
730 to ensure enough assurance in real testing center.
Periodic Updates of ItCertHome 000-730
Once there is some change on IBM 000-730 exam, we will update it timely, and the product you buy will be updated
within 90 days for free.
Professional and Efficient Service
We offer 7*24 customer support via diverse channels: LIVE CHAT,MAIL.Expeciting the communication with you about
IT certification.

The Questions & Answers cover the latest real test and with all the correct answer.we promise the Q&A for IBM DB2
000-730 examination of original title complete coverage.ItCertHome 000-730 Braindumps Questions & Answers help
you pass the exam. Otherwise,we will give you a full refund.

We promised that use ItCertHome Q&A ensure you pass the exam at your first try.

1. The Q&A are from cooperation exam center of the real original title,summaried by our professional team and
collated by senior IT lectured in co-training center to mak e sure the professional quality of the Q&A.The correctly of
the Q&A is 100%, the coverage of 000-730 Q&A are more than 96%.All you need to study the whole 000-730 Q&A
before you participate the certification exam,it should be possible to easily complete the exam and pass the
certification.
2. ItCertHome to all the Q&A, we promised "do not pass the exam give you a full refund". If you buy our 000-730 Q&A
and did not pass the exam at the first try. You can take the examination report card that stamped with PROMETRIC
or VUE test centers Seal. we will refund your full cost of 000-730 Q&A, absolutely guarantee you interests have no
losses.(For a full refund details)

3. ItCertHome professional IT Q&A vendors, we provide well after-sale service. To all the customers buy the Q&A, we
provide track service. when you buy the Q&A with in one year. you can enjoy the upgrade Q&A service for free. If in
this period, the certified test center change the 000-730 Q&A, we will update the Q&A in the first time, and provide
you the download update for free.

IBM 000-730 Test belongs to one of the DB2 certified test, if needs to obtain the DB2 certificate, you also need to
participate in other related test, the details you may visit the DB2 certified topic, in there, you will see all related DB2
certified subject of examination.

000-730
ItCertHome professional provide DB2 000-730 the newest Q&A, completely covers 000-730 test original topic. With
our complete DB2 resources, you will minimize your DB2 cost and be ready to pass your 000-730 tests on Your First
Try, 100% Money Back Guarantee included!

This 000-730 PDF demo do not include the questions and answers's picture:

Exam : IBM 000-730


Title : DB2 9 Fundamentals

1. Which tool must be used to analyze all of the database operations performed by an application against a DB2 for i
database?
A. Visual Explain
B. Activity Monitor
C. SQL Performance Monitor
D. DB2 Performance Monitor
Answer: C

2. Which of the following is the main feature of an OLTP application?


A. Summarized queries
B. Granular transactions
C. Voluminous historical data
D. Heterogeneous data sources
Answer: B

3. Which of the following is a typical data warehouse query?


A. What is this customers address?
B. Does this customer have any unpaid bills?
C. What is the balance in this customers account?
D. What are the total sales for each of the last 6 months?
Answer: D

4. A DRDA host database resides on a z/OS or an i5/OS system and listens on port 446. The TCP/IP address for this
system is 19168.10.1 and the TCP/IP host name is myhost. Which of the following commands is required to update
the local node directory so that a DB2 client can access this DRDA database?
A. CATALOG TCPIP NODE myhost REMOTE db2srv SERVER 446
B. CATALOG TCPIP NODE mydb2srv REMOTE myhost SERVER 446
C. CATALOG TCPIP NODE myhost REMOTE db2srv SERVER 192.168.10.1
D. CATALOG TCPIP NODE mydb2srv REMOTE myhost SERVER 192.168.10.1
Answer: B

5. Which of the following is NOT true about XML columns?


A. Data can be retrieved by SQL.
B. Data can be retrieved by XQuery or XPath.
C. XML columns must be altered to accommodate additional parent and child relationships.
D. Access to any portion of an XML document can be direct, without reading the whole document.
Answer: C

6. Which product must be installed on z/OS to allow a COBOL program running on that machine to access data on a
remote DB2 for z/OS server?
A. DB2 for z/OS
B. DB2 Run-Time Client for z/OS
C. DB2 Connect Enterprise Edition for z/OS
D. z/OS Application Connectivity to DB2 for z/OS and OS/390
Answer: A

7. Given the following two tables:


TAB1
C1 C2
__ __________
1 Antarctica
2 Africa
3 Asia
4 Australia
TAB2
CX CY
__ _____________
5 Europe
6 North America
7 South America
Which of the following SQL statements will insert all rows found in table TAB2 into table TAB1?
A. INSERT INTO tab1 SELECT cx, cy FROM tab2
B. INSERT INTO tab1 VALUES (tab2.cx, tab2.cy)
C. INSERT INTO tab1 VALUES (SELECT cx, cy FROM tab2)
D. INSERT INTO tab1 (c1, c2) VALUES (SELECT cx, cy FROM tab2)
Answer: A

8. Which of the following describes the age of the data in an OLTP system?
A. Current
B. Projected
C. Historical
D. Current and projected
Answer: A

9. The following SQL statements were executed in sequence:


CREATE DISTINCT TYPE salary AS decimal(7,2) WITH COMPARISONS;
CREATE TABLE staffsalary(empid INT, empsalary salary);
INSERT INTO staffsalary VALUES (10, 50000);
INSERT INTO staffsalary VALUES (20, 50000.00);
UPDATE staffsalary SET empsalary = 60000
WHERE salary(50000) = empsalary;
What is the current content of the staffsalary table?
A. ID | EMPSALARY
0 | 60000
20 | 50000.00
B. ID | EMPSALARY
10 | 50000.00
20 | 50000.00
C. ID | EMPSALARY
10 | 60000.00
20 | 60000.00
D. ID | EMPSALARY
10 | 60000.00
20 | 50000.00
Answer: C

10. Which of the following tools can be used to schedule a backup operation that is to be run every Sunday evening?
A. Journal
B. Task Center
C. Activity Monitor
D. Command Line Processor
Answer: B

11. Which of the following DB2 products are required on an iSeries or System i server to enable an application running
on that server to retrieve data from a DB2 database on a Linux server?
A. DB2 for i
B. DB2 Runtime Client
C. DB2 Connect Enterprise Edition
D. DB2 for i SQL Development Kit
Answer: A

12. for which of the following is a data warehouse optimized?


A. Backup and recovery
B. Transactions
C. Security
D. Queries
Answer: D

13. Which of the following is the lowest cost DB2 product that can be legally installed on a Linux server that has 6
CPUs?
A. DB2 Express Edition
B. DB2 Personal Edition
C. DB2 Workgroup Server Edition
D. DB2 Enterprise Server Edition
Answer: D

14. A UDT is a data type which _____.


A. must contain unique values.
B. cannot be CAST to other data types.
C. is created using the CREATE TYPE command.
D. contains a value that was automatically calculated from values in other columns.
Answer: C
15. Which of the following is the lowest cost DB2 product that can be legally installed on an AIX server?
A. DB2 Express Edition
B. DB2 Personal Edition
C. DB2 Workgroup Server Edition
D. DB2 Enterprise Server Edition
Answer: C

16. Which of the following tools can make recommendations for indexes and/or MQTs to improve the performance of
DB2 applications?
A. Design Advisor
B. Visual Explain
C. Performance Advisor
D. Configuration Assistant
Answer: A

17. Which of the following DB2 tools allows a user to execute an SQL statement and view a graphical representation
of the access plan?
A. Task Center
B. Command Editor
C. Design Advisor
D. Command Line Processor
Answer: B

18. Which of the following tools is used to view historical information about tasks, database changes, messages, and
notifications?
A. Journal
B. Task Center
C. Control Center
D. Activity Monitor
Answer: A

19. Which of the following is true of an index used to support a UNIQUE constraint?
A. It must have the UNIQUE attribute.
B. It cannot be created explicitly by the user.
C. It must have the UNIQUE and CLUSTER attributes.
D. It must have the UNIQUE WHERE NOT NULL attribute.
Answer: A

20. Which of the following tools allows a user to create and debug a SQL stored procedure?
A. Control Center
B. Development Center
C. Data Studio
D. Stored Procedure Builder
Answer: C

More 000-730 practice test

Related 000-730 Exams


000-730 DB2 9 Fundamentals

000-355 iseries system administration v5r2

000-731 DB2 9 DBA for Linux,UNIX and Windows

000-732 DB2 9 for z/OS Datab ase Administrator


000-700 ib m db 2 udb v8.1 family fundametals

000-735 DB2 9.5 SQL Procedure Developer

000-702 db 2 udb v8.1 for z/os datab ase administration

000-442 ib m content manager version 8

000-513 db 2 udb v7.1 datab ase administration for unix windows % os/2

000-703 db 2 udb v8.1 familu application development

000-701 ib m db 2 udb v8.1 datab ase admin for linux unix&windows

000-516 db 2 udb datab ase administration for os/390

000-704 db 2 udb v8.1 advanced db admin for linux,unix+windwos

000-514 db 2 udb v7.1 family application development

000-706 db 2 v8.1 for linux,unix and windows db admin upgrade

000-541 DB2 9.7 DBA for Linux UNIX and Windows

000-543 DB2 9.7 Application Development

Other IBM Exams


000-M09 000-904 000-S02 000-217 LOT-835 000-M18 000-743 000-750

000-633 000-237 000-083 000-060 000-232 000-854 000-441 000-324

000-935 000-890 000-647 000-M33

You might also like