Short on study time for the IBM DB2 9.7 Advanced DBA for LUW exam? Getcertkey condenses your preparation into 106 focused practice questions for the C2090-544 exam, so even a packed schedule leaves room for steady, measurable progress.
IBM C2090-544 Exam Overview:
| Certification Vendor: | IBM |
|---|---|
| Exam Name: | IBM DB2 9.7 Advanced DBA for LUW |
| Exam Number: | 000-544 |
| Exam Price: | USD 200 (varies by region) |
| Real Exam Qty: | 54 |
| Certificate Validity Period: | 3 years |
| Passing Score: | 60% |
| Exam Format: | Multiple choice, Scenario-based questions |
| Exam Duration: | 90 minutes |
| Available Languages: | English |
| Related Certifications: | IBM Certified Database Administrator - DB2 9 for LUW |
| Recommended Training: | IBM Training - DB2 9.7 Administration |
| Exam Registration: | IBM Certification Registration |
| Sample Questions: | ![]() |
| Exam Way: | Proctored exam (online or authorized testing center) |
| Pre Condition: | Recommended: IBM DB2 9 Database Administrator certification or equivalent hands-on DBA experience |
| Official Syllabus URL: | https://www.ibm.com/certification/ |
IBM C2090-544 Exam Syllabus Topics:
| Section | Objectives |
|---|---|
| Database Monitoring and Troubleshooting | - Locking issues and deadlock resolution - Event monitoring and snapshot analysis |
| Security and Authorization | - Authentication and authorization models - Roles, privileges, and access control |
| Database Architecture and Configuration | - Configuration parameters and environment setup - DB2 architecture components (instances, databases, bufferpools) |
| Database Performance Tuning | - Query optimization and explain plans - Memory tuning (buffer pools, sort heap, lock list) - Index design and maintenance |
| Backup and Recovery | - Online and offline backups - Log management and rollforward recovery - Point-in-time recovery |
| High Availability and Disaster Recovery | - Failover and recovery strategies - HADR configuration and monitoring |
Common Questions About the IBM C2090-544 Exam
What is the IBM DB2 9.7 Advanced DBA for LUW exam all about?
The C2090-544 exam is the official IBM exam behind the IBM Certified Advanced Database Administrator - DB2 9 for LUW certification, validating the skills measured by the IBM DB2 9.7 Advanced DBA for LUW credential. It sits at the Professional level of the IBM certification program. It also connects to IBM Certified Database Administrator - DB2 9 for LUW, so the knowledge you build here carries over to those tracks as well.
How many questions are on the C2090-544 exam, and how much time do I get?
The C2090-544 exam contains 54 questions to be completed within 90 minutes. 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-544 exam, and what does it cost?
The passing score for the C2090-544 exam is 60%, and the official registration fee is USD 200 (varies by region). 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 106 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-544 exam?
Recommended: IBM DB2 9 Database Administrator certification or equivalent hands-on DBA experience 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-544 exam?
You can book the IBM DB2 9.7 Advanced DBA for LUW exam through the official registration channels below:
As for delivery, the exam is offered in the following format: Proctored exam (online or authorized testing center). Choose the option that suits you best when you book your seat.
What official training is recommended for the C2090-544 exam?
IBM recommends the following training resources for the IBM DB2 9.7 Advanced DBA for LUW exam:
Official courses build the foundation; the 106 practice questions from Getcertkey then show you how that knowledge is examined, so the two work best together.
Can I try the C2090-544 practice questions before I buy?
Yes. Getcertkey provides a free C2090-544 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-544 exam, and how is my order delivered?
Every IBM DB2 9.7 Advanced DBA for LUW 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-544 exam?
The IBM DB2 9.7 Advanced DBA for LUW exam blueprint is organized into 6 domains. The first three are:
- Backup and Recovery
- Security and Authorization
- High Availability and Disaster Recovery
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 Advanced DBA for LUW Sample Questions:
Question #1
Which of the following techniques will ensure that you CANNOT encounter two active primary servers in an HADR pair?
A. Use a virtual IP Address in the CATALOG DATABASE command.
B. Catalog both servers separately and use a fixed IP address for both servers.
C. Set ALTERNATER SERVER to fixed IP Addresses on both servers.
D. Use a virtual IP Address for both servers.
Question #2
What will the db2audit facility do when a DB2 database instance is stopped?
A. Stop automatically.
B. Generate an error stating that the audit facility should be stopped prior to stopping the instance.
C. Write an error message to the audit log and stop automatically.
D. Remain active.
Question #3
Which database configuration parameters can be used to limit the amount of memory allocated for the LOAD utility?
A. UTIL_HEAP_SZ and STAT_HEAP_SZ
B. LOAD_HEAP_SZ and STAT_HEAP_SZ
C. LOAD_HEAP_SZ and DATABASE_MEMORY
D. UTIL_HEAP_SZ and DATABASE_MEMORY
Question #4
Click the Exhibit button.
Refer to the table definition shown in the exhibit.
Which will improve performance based on the query SELECT c6, c9 FROM tab3 WHERE c9 = 123456?
A. CREATE INDEX idx99 ON tab3 (c6 ASC, c9 DESC); REORG TABLE myschema.tab3 AND INDEXES ALL;
B. CREATE INDEX idx99 ON tab3 (c2 ASC, c9 DESC); REORG TABLE myschema.tab3 AND INDEXES ALL;
C. CREATE INDEX idx98 ON tab3 (c6 ASC); CREATE INDEX idx99 ON tab3 (c9 DESC); RUNSTATS ON TABLE myschema.tab3;
D. CREATE INDEX idx98 ON tab3 (c2 ASC, c6 ASC); CREATE INDEX idx99 ON tab3 (c2 ASC, c9 ASC); RUNSTATS ON TABLE myschema.tab3;
Question #5
What determines the degree of inter-partition parallelism used?
A. The value of the INTER_PARALLEL Database Manager configuration parameter.
B. The value of the DFT_DEGREE database configuration parameter.
C. The number of database connections and the definition of partitions groups.
D. The number of database partitions and the definition of partition groups.
Solutions:
| Question #1 Correct Answer: A | Question #2 Correct Answer: D | Question #3 Correct Answer: D | Question #4 Correct Answer: C | Question #5 Correct Answer: D |


PDF Version Demo
921 Customer Reviews




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.