000-512 Exam
db2 udb v7.1 family fundamentals
- Exam Number/Code : 000-512
- Exam Name : db2 udb v7.1 family fundamentals
- Questions and Answers : 110 Q&As
- Update Time: 2013-04-05
-
Price:
$ 119.00$ 69.00 -
000-512 Hard Copy (PDF)
-
000-512 Test Engine
Free 000-512 Demo Download
Test4pass offers free demo for Solutions Expert 000-512 exam (db2 udb v7.1 family fundamentals). 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-512 exam test is the hot exam of IBM certification. Test4pass offer you all the Q&A of the 000-512 real test . It is the examination of the perfect combination and it will help you pass 000-512 exam at the first time!
Why choose Test4pass 000-512 braindumps
Quality and Value for the 000-512 Exam
100% Guarantee to Pass Your 000-512 Exam
Downloadable, Interactive 000-512 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.
Test4pass 000-512 Exam Features
Quality and Value for the 000-512 Exam
Test4pass Practice Exams for IBM 000-512 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-512 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 Solutions Expert 000-512 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-512 Downloadable, Printable Exams (in PDF format)
Our Exam 000-512 Preparation Material provides you everything you will need to take your 000-512 Exam. The 000-512 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-512 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-512 Exam will provide you with free 000-512 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-512 Exam:100% Guarantee to Pass Your Solutions Expert exam and get your Solutions Expert Certification.
Hot KeyWords On 000-512 test
We collect some hot keywords about this exam:
Test4pass , Pass 4 Sure , Test in Side ,Pass Guide ,Test King 000-512 exam | 000-512 pdf exam | 000-512 braindumps | 000-512 study guides | 000-512 trainning materials | 000-512 simulations | 000-512 testing engine | 000-512 vce | 000-512 torrent | 000-512 dumps | free download 000-512 | 000-512 practice exam | 000-512 preparation files | 000-512 questions | 000-512 answers.
How to pass your 000-512 exam
You can search on Search Engine and Find Best IT Certification site: Test4pass.com - Find the Method to succeed 000-512 test,The safer.easier way to get Solutions Expert Certification Certified Specialist Certification .
��
Exam : IBM 000-512
Title : db2 udb v7.1 family fundamentals
1. Given the two following tables:
Names
Name Number
Wayne Gretzky 99
Jaromir Jagr 68
Bobby Orr 4
Bobby Hull 23
Brett Hull 16
Mario Lemieux 66
Steve Yzerman 19
Claude Lemieux 19
Mark Messier 11
Mats Sundin 13
Points
Name Points
Wayne Gretzky 244
Jaromir Jagr 68
Bobby Orr 129
Bobby Hull 93
Brett Hull 121
Mario Lemieux 189
Joe Sakic 94
Which of the following statements will display the player Names, numbers and points for all players with an entry in both tables? Which of the following statements will display the player? Names, numbers and points for all players with an entry in both tables?
A. SELECT names.name, names.number, points.points FROM names INNER JOIN points ON names.name=points.name
B. SELECT names.name, names.number, points.points FROM names FULL OUTER JOIN points ON names.name=points.name
C. SELECT names.name, names.number, points.points FROM names LEFT OUTER JOIN points ON names.name=points.name
D. SELECT names.name, names.number, points.points FROM names RIGHT OUTER JOIN points ON names.name=points.name
E. SELECT names.name, names.number, points.points FROM names FULL OUTER JOIN points ON names.name=points.name
F. SELECT names.name, names.number, points.points FROM names LEFT OUTER JOIN points ON names.name=points.name
G. SELECT names.name, names.number, points.points FROM names RIGHT OUTER JOIN points ON names.name=points.name
H. SELECT names.name, names.number, points.points FROM names LEFT OUTER JOIN points ON names.name=points.name
I. SELECT names.name, names.number, points.points FROM names RIGHT OUTER JOIN points ON names.name=points.name
J. SELECT names.name, names.number, points.points FROM names LEFT OUTER JOIN points ON names.name=points.name
K. SELECT names.name, names.number, points.points FROM names RIGHT OUTER JOIN points ON names.name=points.name
Answer: A
2. Which of the following is the result of the following SQL statement: ALTER TABLE table1 ADD col2 INT WITH DEFAULT
A. The statement fails with a negative SQL code.
B. The statement fails because no default value is specified.
C. A new column called COL2 is added to TABLE1 and populated with zeros.
D. A new column called COL2 is added to TABLE1 and populated with nulls.
E. A new column called COL2, which cannot contain nulls, is added to TABLE1.
Answer: C
3. Given an embedded SQL program with a single connection, two threads and the following actions: Thread 1: INSERT INTO mytab VALUES (...)
Thread 2: INSERT INTO mytab VALUES (...)
Thread 1: ROLLBACK
Thread 2: INSERT INTO mytab VALUES (...)
Thread 1: COMMIT
How many records will be successfully inserted into the table mytab?
A. 0
B. 1
C. 2
D. 3
Answer: B
4. Which of the following occurs if an application ends abnormally during an active unit of work?
A. Current unit of work is committed
B. Current unit of work is rolled back
C. Current unit of work remains active
D. Current unit of work moves to pending state
Answer: B
5. Given two embedded SQL program executions with the following actions:
Pgm1
INSERT INTO mytab VALUES (...)
COMMIT INSERT INTO mytab VALUES (...)
ROLLBACK Pgm2 INSERT INTO mytab VALUES (...)
ROLLBACK INSERT INTO mytab VALUES (...)
COMMIT
How many records will be successfully inserted and retained in the table mytab?
A. 1
B. 2
C. 3
D. 4
Answer: B
6. 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)
The job column contains these 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
Answer: A
7. Given a table T1, with 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
Answer: B
8. Given the tables:
COUNTRY
ID NAME PERSON CITIES
1 Argentina 1 10
2 Canada 2 20
3 Cuba 2 10
4 Germany 1 0
5 France 7 5
STAFF
ID LASTNAME
1 Jones
2 Smith
The statement:
SELECT * FROM staff, country
will return how many rows?
A. 2
B. 4
C. 5
D. 7
E. 10
Answer: E
9. Given the following SQL statements:
CREATE TABLE tab1 (col1 INT)
CREATE TABLE tab2 (col1 INT)
INSERT INTO tab1 VALUES (NULL),(1)
INSERT INTO tab2 VALUES (NULL),(1)
SELECT COUNT(*) FROM tab1
WHERE col1 IN
(SELECT col1 FROM tab2)
Which of the following is the result of the SELECT COUNT(*) statement?
A. 1
B. 2
C. 3
D. 4
E. 0
Answer: A
10. Given the table COUNTRY and the statements below:
COUNTRY
ID NAME PERSON_ID CITIES
1 Argentina 1 10
2 Canada 2 20
3 Cuba 2 10
4 Germany 1 0
5 France 7 5
DECLARE c1 CURSOR WITH HOLD FOR SELECT * FROM country ORDER BY person_id, name
OPEN c1
FETCH c1
COMMIT
FETCH c1
Which of the following is the last name obtained from the table?
A. Cuba
B. France
C. Canada
D. Germany
E. Argentina
Answer: C
11. Given the following DDL statement: CREATE TABLE newtab1 LIKE tab1 Which of the following would occur as a result of the statement execution?
A. NEWTAB1 has same triggers as TAB1
B. NEWTAB1 is populated with TAB1 data
C. NEWTAB1 has the same primary key as TAB1
D. NEWTAB1 columns have same attributes as TAB1
Answer: D
12. Given the table T1 created by:
CREATE TABLE t1
(
id INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY,
c1 CHAR(10) NOT NULL,
c2 CHAR(10)
)
Which of the following INSERT statements will succeed?
A. INSERT INTO t1 VALUES (1, 'abc', NULL)
B. INSERT INTO t1 VALUES (1, NULL, 'def')
C. INSERT INTO t1 (c1, c2) VALUES ('abc', NULL)
D. INSERT INTO t1 (c1, c2) VALUES (NULL, 'def')
Answer: C
13. User2 has DBADM authority on database DB1. This allows the user to do which of the following?
A. Drop database DB1
B. Backup database DB1
C. Create tables in any database
D. Create tables in database DB1
Answer: D
14. Which of the following describes why savepoints are NOT allowed inside an atomic unit of work?
A. Atomic units of work span multiple databases, but savepoints are limited to units of work which operate on a single database.
B. A savepoint implies that a subset of the work may be allowed to succeed, while atomic operations must succeed or fail as a unit.
C. A savepoint requires an explicit commit to be released, and commit statements are not allowed in atomic operations such as compound SQL.
D. A savepoint cannot be created without an active connection to a database, but atomic operations can contain a CONNECT as a sub-statement.
Answer: B