McAfee Secure sites help keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams
My Cart (0)  

IBM certifications I C2090-543

C2090-543

Exam Code: C2090-543

Exam Name: DB2 9.7 Application Development

Updated: Sep 01, 2026

Q&A Number: 100 Q&As

C2090-543 Free Demo download

PDF Version Demo PC Test Engine Online Test Engine

Already choose to buy "PDF"

Price: $59.99 

About IBM C2090-543 Exam Braindumps

Getcertkey offers C2090-543 exam preparation in three flexible formats: a printable PDF for study anywhere, a desktop test engine for realistic offline practice, and an online test engine that runs in any browser. However you prefer to prepare, the IBM DB2 9.7 Application Development material fits your routine.

IBM C2090-543 Exam Overview:

Certification Vendor:IBM
Exam Name:DB2 9.7 Application Development
Exam Number:C2090-543
Available Languages:English
Exam Duration:90-120
Exam Price:Varies by region (approximately 200-250 USD equivalent)
Certificate Validity Period:Not formally expiring (legacy certification; subject to IBM certification program updates)
Passing Score:60-70%
Related Certifications:IBM Certified Database Administrator - DB2 9.7
IBM Certified Solution Developer - DB2
Real Exam Qty:50-70
Exam Format:Multiple choice, Multiple response
Recommended Training:IBM DB2 9.7 Application Development Training
Exam Registration:IBM Certification Portal
Sample Questions:Free Download C2090-543 Demo
Exam Way:Proctored exam via IBM authorized testing centers or online delivery (depending on availability)
Pre Condition:No strict prerequisites; basic SQL and database knowledge recommended
Official Syllabus URL:https://www.ibm.com/training/certification

IBM C2090-543 Exam Syllabus Topics:

SectionObjectives
SQL and Query Development- Views and indexing basics
- Joins, subqueries, and set operations
- Advanced SQL queries
Stored Procedures and Performance- Stored procedure development
- Performance tuning considerations
- Query optimization basics
Application Programming with DB2- Embedded SQL in application programs
- JDBC and SQLJ usage
- Error handling and diagnostics
DB2 Fundamentals- DB2 architecture and components
- Data types and SQL fundamentals
- Database objects and schema concepts
Transaction Management- Commit and rollback processing
- ACID properties
- Locking and concurrency control
Security and Authorization- User privileges and roles
- Authentication mechanisms

C2090-543 Exam FAQs for 2026 Candidates

Which certification does the C2090-543 exam lead to?

The C2090-543 exam is the official IBM exam behind the IBM Certified Application Developer - DB2 9.7 certification, validating the skills measured by the IBM DB2 9.7 Application Development credential. It sits at the Professional level of the IBM certification program. It also connects to IBM Certified Database Administrator - DB2 9.7, IBM Certified Solution Developer - DB2, so the knowledge you build here carries over to those tracks as well.

How many questions are on the C2090-543 exam, and how much time do I get?

The C2090-543 exam contains 50-70 questions to be completed within 90-120. Before exam day, divide the available time by the question count to work out a comfortable per-question pace, and mark any item that eats into it so you can return later instead of getting stuck. Timed sessions in the Getcertkey test engines make that pacing automatic — run at least two full-length mock exams under the clock so time pressure never becomes the reason you drop points.

What score do I need to pass the C2090-543 exam, and what does it cost?

The passing score for the C2090-543 exam is 60-70%, and the official registration fee is Varies by region (approximately 200-250 USD equivalent). Retakes are not discounted — every new attempt means paying the full fee again — so it pays to measure yourself before you book. Work through the 100 practice questions on Getcertkey, sit a timed practice test, and schedule your exam only when your scores are consistently comfortable. That simple habit is the cheapest exam strategy there is.

Are there any prerequisites for the C2090-543 exam?

No strict prerequisites; basic SQL and database knowledge recommended Requirements can change when IBM revises its certification program, so confirm the current eligibility rules on the official exam page before you register.

How do I register for the C2090-543 exam?

You can book the IBM DB2 9.7 Application Development exam through the official registration channels below:

As for delivery, the exam is offered in the following format: Proctored exam via IBM authorized testing centers or online delivery (depending on availability). Choose the option that suits you best when you book your seat.

What official training is recommended for the C2090-543 exam?

IBM recommends the following training resources for the IBM DB2 9.7 Application Development exam:

Official courses build the foundation; the 100 practice questions from Getcertkey then show you how that knowledge is examined, so the two work best together.

Can I try the C2090-543 practice questions before I buy?

Yes. Getcertkey provides a free C2090-543 PDF demo so you can review the question style and answer quality before purchasing. Every purchase also includes 365 days of free updates — if IBM revises the exam during that period, the updated material reaches you at no cost. Once the free-update year ends, you can extend your update service at a 50% discount.

What if I fail the C2090-543 exam, and how is my order delivered?

Every IBM DB2 9.7 Application Development purchase on Getcertkey is covered by a 100% money-back guarantee with clear conditions: if you take the corresponding exam within 60 days of your purchase and do not pass, you can claim a full refund by submitting a scanned copy of your exam enrollment slip and your official score report as a PDF within two days of the exam date; claims are processed within seven days of submission. The guarantee does not apply to exams taken within three days of purchase, to material that was downloaded but never used in an exam attempt, or to free products and expired orders, and the candidate name must match the payer name. If you would rather not take a refund, you can instead exchange your purchase for two free exam preparation products of equal value and keep the update service on your original product.

Delivery is instant: your download is sent to your email within one minute of payment, with no limit on how many computers you may install the material on. If nothing arrives within two hours, check your spam folder and contact customer service for help.

What topics are covered in the C2090-543 exam?

The IBM DB2 9.7 Application Development exam blueprint is organized into 6 domains. The first three are:

  • DB2 Fundamentals
  • Stored Procedures and Performance
  • Application Programming with DB2

For the complete domain-by-domain breakdown, scroll up to the full exam topics outline above and use it to plan how you distribute your study time.

IBM DB2 9.7 Application Development Sample Questions:

Question 1

What are two valid connection options that you can use while creating a connection in PHP using the IBM_DB2 extension? (Choose two.)

A. "autocommit" => DB2_AUTOCOMMIT_FALSE
B. "CURSOR" => DB2_SCROLLABLE_SENSITIVE
C. "trustedcontext" => DB2_TRUSTED_CONTEXT_ENABLE
D. "DB2_ATTR_CASE" => DB2_CASE_UPPER


Question 2

When creating a trusted connection in CLI/ODBC, it is necessary to set a connection attribute. What is the connection attribute?

A. SQL_ATTR_TRUSTED_CONTEXT_USERID
B. SQL_ATTR_USE_TRUSTED_CONTEXT
C. SQL_ATTR_ENABLE_TRUSTED_CONTEXT
D. SQL_ATTR_TRUSTED_CONTEXT_PASSWORD


Question 3

Click the Exhibit button. CREATE FUNCTION deptemployees (idept VARCHAR(3)) RETURNS TABLE (empno CHAR(6), firstnameVARCHAR(12), lastnameVARCHAR(15)) LANGUAGE SQL READS SQL DATA NO EXTERNAL ACTION DETERMINISTIC RETURN SELECT empno, firstnme, lastname FROM employee WHERE workdept = deptemployees.idept; Referring to the exhibit, what contains the proper way to invoke the DEPTEMPLOYEES() user-defined function to return all of the employees that work in department D11?

A. SELECT * FROMdeptemployees('D11')
B. SELECT * FROM TABLE(deptemployees('D11')) AS D11dept
C. SELECT * FROMdeptemployees('D11') AS D11dept
D. SELECT * FROM TABLE(deptemployees('D11'))


Question 4

A CLI/ODBC application uses the SQL FetchScroll() API to retrieve an updatable row set with five rows of data. Each column of the row set is bound to an array of application memory. The API is called with the SQL_FETCH_NEXT FetchOrientationoption and returns SQL_SUCCESS_WITH_INFO. Diagnostics show a truncation SQLSTATE of "01004".
Which API call correctly identifies the record with the failure?

A. SQLGetDiagField( hStmt, SQL_DIAG_ROW_COUNT, &(intVal) );
B. SQLGetDescField( hStmt, SQL_DESC_COUNT, &(intVal) );
C. SQLGetDiagField( hStmt, SQL_DIAG_ROW_NUMBER, &(intVal) );
D. SQLGetDescField( hStmt, SQL_DESC_ARRAY_SIZE, &(intVal) );


Question 5

Click the Exhibit button.
CONNECT TO test;
CREATE TABLE colors (id INT NOT NULL PRIMARY KEY,
descVARCHAR(12));
CREATE TABLE objects(desc VARCHAR(12),
c_idINT REFERENCES colors (id)
ON UPDATE NO ACTION);
INSERT INTO colors VALUES (1, 'Red'), (2, 'Yellow'), (3, 'Blue');
INSERT INTO objects VALUES ('Fire Engine', 1), ('Rain Coat', 2);
CONNECT RESET;
A DB2 Command Line Processor script file containing the commands and statements shown in
the exhibit was executed successfully.
The statement shown below is executed:
UPDATE colors SET id = id - 1;
How many rows will be modified in the COLORS table?

A. 2
B. 3
C. 0
D. 1


Solutions:

Question 1
Answer: C,D
Question 2
Answer: B
Question 3
Answer: B
Question 4
Answer: C
Question 5
Answer: B

983 Customer ReviewsCustomers Feedback (* Some similar or old comments have been hidden.)

You finally released this DB2 9.7 Application Development exam.

Pandora

Pandora     5 star  

There is nothing more exciting than to know that i have passed the C2090-543 exam. Thanks! I will introduce Getcertkey to all my friends.

Jason

Jason     4 star  

It was a long-awaited dream of specialized career which at last was effectively materialized with the assist of Getcertkey. Thanks!

Jim

Jim     5 star  

The services are really good, i feel i fall in love with you. For i didn't know which exam material i should take for my C2090-543 exam, they helped me find a lot for me to suit the right one. And i passed it at ease. Many thanks!

Phil

Phil     4 star  

About 7 new questions.
All the C2090-543 questions are covered in my test.

Matt

Matt     4.5 star  

It is the firt time to take C2090-543 exam. I worry a lot about whether I can pass it or not. Thanks for your help, my friends! I've finished my C2090-543 examination.

Michelle

Michelle     4 star  

Passed the C2090-543 exam last saturday! The C2090-543 practice dumps are valid. Thanks to this wonderful website-Getcertkey!

Riva

Riva     4 star  

I passed C2090-543 exam 2 days ago by achieving 98%. This C2090-543 study guide is 100% perfect.

Brook

Brook     4.5 star  

Very useful and head to C2090-543 Certified exam questions! I have passed my C2090-543 exam last week.

Jonathan

Jonathan     4 star  

The C2090-543 latest practice test and updated exam questions give overall coverage to study material preparing for the exam. Happy to pass with it!

Lawrence

Lawrence     5 star  

Getcertkey is the best website i have visited. Their service is very prompt and helped me a lot. Passed my C2090-543 exam dump last week.

Xenia

Xenia     4.5 star  

Glad to say, this C2090-543 practice guide was very useful and helpful to me! It covers all the important topics on the content. And more importantly, it is good to pass for the exam.

Oswald

Oswald     4 star  

I passed C2090-543 exam last week.

Gilbert

Gilbert     4 star  

Getcertkey Questions and Answers are up to date and flawless and my success testifies their precision and authenticity. Cleared Exam C2090-543! Thanks to Getcertkey!

Leopold

Leopold     4 star  

It is cool C2090-543 practice test, i passed my C2090-543 exam yesterday! It is all own to your help!

Janet

Janet     4 star  

LEAVE A REPLY

Your email address will not be published. Required fields are marked *

Contact US:  
 [email protected]  Support

Free Demo Download

Popular Vendors
Adobe
Alcatel-Lucent
Avaya
BEA
CheckPoint
CIW
CompTIA
CWNP
EC-COUNCIL
EMC
EXIN
Hitachi
HP
ISC
ISEB
Juniper
Lpi
Network Appliance
Nortel
Novell
SASInstitute
Sybase
Symantec
The Open Group
all vendors
Why Choose GetCertKey Testing Engine
 Quality and ValueGetCertKey Practice Exams are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development - no all study materials.
 Tested and ApprovedWe are committed to the process of vendor and third party approvals. We believe professionals and executives alike deserve the confidence of quality coverage these authorizations provide.
 Easy to PassIf you prepare for the exams using our GetCertKey testing engine, It is easy to succeed for all certifications in the first attempt. You don't have to deal with all dumps or any free torrent / rapidshare all stuff.
 Try Before BuyGetCertKey offers free demo of each product. You can check out the interface, question quality and usability of our practice exams before you decide to buy.