000-733 Exam
IBM Certified Application Developer-DB29
- Exam Number/Code : 000-733
- Exam Name : IBM Certified Application Developer-DB29
- Questions and Answers : 140 Q&As
- Update Time: 2013-04-05
-
Price:
$ 119.00$ 69.00 -
000-733 Hard Copy (PDF)
-
000-733 Test Engine
Free 000-733 Demo Download
Test4pass offers free demo for IBM certifications II 000-733 exam (IBM Certified Application Developer-DB29). 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-733 exam test is the hot exam of IBM certification. Test4pass offer you all the Q&A of the 000-733 real test . It is the examination of the perfect combination and it will help you pass 000-733 exam at the first time!
Why choose Test4pass 000-733 braindumps
Quality and Value for the 000-733 Exam
100% Guarantee to Pass Your 000-733 Exam
Downloadable, Interactive 000-733 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-733 Exam Features
Quality and Value for the 000-733 Exam
Test4pass Practice Exams for IBM 000-733 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-733 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 IBM certifications II 000-733 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-733 Downloadable, Printable Exams (in PDF format)
Our Exam 000-733 Preparation Material provides you everything you will need to take your 000-733 Exam. The 000-733 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-733 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-733 Exam will provide you with free 000-733 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-733 Exam:100% Guarantee to Pass Your IBM certifications II exam and get your IBM certifications II Certification.
Hot KeyWords On 000-733 test
We collect some hot keywords about this exam:
Test4pass , Pass 4 Sure , Test in Side ,Pass Guide ,Test King 000-733 exam | 000-733 pdf exam | 000-733 braindumps | 000-733 study guides | 000-733 trainning materials | 000-733 simulations | 000-733 testing engine | 000-733 vce | 000-733 torrent | 000-733 dumps | free download 000-733 | 000-733 practice exam | 000-733 preparation files | 000-733 questions | 000-733 answers.
How to pass your 000-733 exam
You can search on Search Engine and Find Best IT Certification site: Test4pass.com - Find the Method to succeed 000-733 test,The safer.easier way to get IBM certifications II Certification .
��
Exam : IBM 000-733
Title : IBM Certified Application Developer-DB29
1. Given following table:
EMP
EMPNO NAME DEPTNO SALARY
===== ==== ====== ======
0010 JOSH D95 30000
0020 JENNA D98 25000
0030 DYLAN D95 10000
0040 TRACY D90 33000
and the following trigger definition:
CREATE TRIGGER track_chgs
AFTER UPDATE OF salary, name, empno ON emp
REFERENCING NEW_TABLE AS ntable
FOR EACH STATEMENT MODE DB2SQL
BEGIN ATOMIC
INSERT INTO changes
SELECT empno, CURRENT TIMESTAMP FROM ntable;
END;
After executing the following SQL statements:
DELETE FROM changes;
UPDATE emp SET deptno = 'D98' WHERE deptno = 'D95';
INSERT INTO emp VALUES('0050', 'KEN', 'D90', 35000);
UPDATE emp SET salary = salary - 500 WHERE salary > 35000;
UPDATE emp SET salary = salary + 1000 WHERE salary What value will be returned by this query?
SELECT count(*) FROM changes
A. 2
B. 3
C. 4
D. 6
Answer: A
2. After executing the following SQL statements:
CREATE TABLE tab1 (
col1 INT ,
col2 CHAR(1),
PRIMARY KEY(col1));
CREATE TABLE tab2 (
col1 INT ,
col2 CHAR(1),
FOREIGN KEY (col1) REFERENCES tab1(col1)
ON DELETE CASCADE
ON UPDATE NO ACTION );
INSERT INTO tab1 VALUES(1, 'A');
INSERT INTO tab1 VALUES(2, 'B');
INSERT INTO tab2 VALUES(3, 'A');
INSERT INTO tab2 VALUES(2, 'B');
UPDATE tab1 SET col1 = col1 + 1;
DELETE FROM tab1 WHERE col2 = 'B';
What values will be returned by the following SQL query?
SELECT col1, col2 FROM tab1 A.COL1 COL2 ==== ==== 2 'B'
A. COL1 COL2
==== ====
2 'B'
B. COL1 COL2
==== ====
2 'A'
C. COL1 COL2
==== ====
1 'A'
2 'B'
D. COL1 COL2
==== ====
2 'A'
3 'B'
Answer: B
3. An application running against a DB2 for AIX database needs to execute the following query:
SELECT t2.c2, t1.c3 FROM t1 INNER JOIN t2 ON t1.c1 = t2.c1
If table T1 resides in the DB2 for AIX database and table T2 resides in a DB2 for i5/OS database, which of the following DB2 object types must the identifier T2 represent in order for this SQL statement to run successfully?
A. ALIAS
B. NICKNAME
C. SERVER TABLE
D. TABLE WRAPPER
Answer: B
4. Given the following table and view definitions:
CREATE TABLE city (
cityid INT GENERATED ALWAYS AS IDENTITY ,
city_name CHAR(10),
state_code CHAR(2) CHECK(state_code IN ('CA','IL','NY','OH','TX')));
CREATE VIEW city_view AS (
SELECT city_name||','||state_code AS fullname FROM city
WHERE state_code NOT IN ('OH','IL'));
and the following trigger definition:
CREATE TRIGGER city_viewInput
INSTEAD OF INSERT ON city_view
REFERENCING NEW AS n
FOR EACH ROW MODE DB2SQL
BEGIN ATOMIC
DECLARE delim INT;
SET delim = LOCATE(',', n.fullname);
INSERT INTO city(city_name,state_code)
VALUES(SUBSTR(n.fullname, 1, delim - 1), SUBSTR(n.fullname, delim + 1, 2));
END;
If the following SQL statments are executed:
INSERT INTO city VALUES(DEFAULT,'San Jose','CA') ;
INSERT INTO city_view VALUES('Chicago,IL');
INSERT INTO city VALUES(DEFAULT,'Detroit','MI');
INSERT INTO city VALUES(DEFAULT,'Austin','TX');
INSERT INTO city_view VALUES('Denver,CO');
How many rows will be returned by the following query:
SELECT * FROM city
A. 1
B. 2
C. 3
D. 4
Answer: C
5. Which of the following is a characteristic of an application that uses a Distributed Unit of Work (DUOW)?
A. A single transaction can only read and/or modify data stored on one database server.
B. Multiple transactions can only read and/or modify data stored on one database server.
C. A single transaction can read and/or modify data stored across multiple database servers.
D. Multiple transactions can read and/or modify data stored on multiple database servers provided each transaction only accesses a single server.
Answer: C
6. Which of the following ADO .NET providers is supported by IBM DB2 Add-ins for Visual Studio?
A. OLE DB .NET Data Provider
B. DB2 Data Provider for .NET
C. ODBC Data Provider for .NET
D. DB2 for i5/OS .NET Provider
Answer: B
7. Given the following table definition:
CREATE TABLE staff (
id SMALLINT NOT NULL,
name VARCHAR(9),
dept SMALLINT,
job CHAR(5))
Assuming that the following statements execute successfully:
Dim cmdStaff As DB2Command = cnDb2.CreateCommand()
cmdStaff.CommandText = "SELECT name FROM staff WHERE (job = @job)"
Which of the following is the correct way to provide a value for the parameter marker used?
A. cmdStaff.Parameters.Add("@job", "Mgr", CType(5, Char))
B. cmdStaff.Parameters.Add("@job", "Mgr", DB2Type.Char, 5)
C. cmdStaff.Parameters.Add(New DB2Parameter("@job", CType(5, Char)) cmdStaff.Parameters("@job").Value = "Mgr"
D. cmdStaff.Parameters.Add(New DB2Parameter("@job", DB2Type.Char, 5) cmdStaff.Parameters("@job").Value = "Mgr"
Answer: D
8. Parameter markers are NOT permitted for which of the following statements?
A. CALL
B. DELETE
C. EXECUTE IMMEDIATE
D. SET CURRENT SQLID
Answer: C
9. A .NET application executes a SQL request invoking the DB2Command.ExecuteReader method and a syntax error exception is thrown. Which of the following properties contains the SQLCode for this syntax error?
A. DB2Error.SQLCode
B. SQLError.SQLCode
C. DB2Exception.SQLCode
D. SQLException.SQLCode
Answer: A
10. Which of the following is the DB2 Data Provider for the .NET class that requires a database connection to be open?
A. DB2DataSet
B. DB2RecordSet
C. DB2DataReader
D. DB2DataAdapter
Answer: C
11. An SQL procedure has been developed with several inline SQL PL statements encapsulated in a dynamic compound SQL statement. The procedure had been tested and performed well. After making a change to the last SQL statement the procedure not only failed to complete, but did not produce output from any statements which were not modified. What is the best explanation for this behavior?
A. The dynamic compound SQL is atomic.
B. The procedure doesn't have any savepoints.
C. The procedure has not been correctly re-cataloged.
D. The dynamic compound SQL individual statements are logically dependent on each other.
Answer: A
12. If the following code is executed in the order shown:
conDB2 As DB2Connection
conDB2.ConnectionString = "Database=samplelx;UID=db2user;PWD=db2pwd;"
conDB2.Open()
Which of the following statements is correct?
A. An exception is thrown because the server name has not been specified.
B. An exception is thrown because the server name and the port have not been specified.
C. The execution is successful provided the host name SAMPLEX has been previously defined in the local hosts table.
D. The execution is successful provided the database alias SAMPLEX has been previously defined in the local database catalog.
Answer: D
13. Two OLTP applications run concurrently but frequent locking occurs which requires a fix to be applied. Application A inserts rows into the table T1. Application B submits several queries against the table with a Cursor Stability isolation level. What would be the best course of action to improve the system's concurrency and performance?
A. Application B should be changed to access a view of table T1.
B. Application B should be changed to a Read Stability isolation level.
C. Application A should be changed to perform a commit after each INSERT operation.
D. Application A should be changed to include the NOT WITH HOLD clause on each INSERT operation.
Answer: C
14. Which of the following SQL statements demonstrates the correct usage of a parameter marker?
A. SELECT ? FROM SYSCAT.TABLES
B. SELECT [] FROM SYSCAT.TABLES
C. SELECT CAST(? AS INTEGER) FROM SYSCAT.TABLES
D. SELECT CAST([] AS INTEGER) FROM SYSCAT.TABLES
Answer: C