Getcertkey offers A2090-730 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 Assessment: DB2 9 Family Fundamentals material fits your routine.
IBM A2090-730 Exam Overview:
| Certification Vendor: | IBM |
|---|---|
| Exam Name: | DB2 9 Family Fundamentals |
| Exam Number: | A2090-730 |
| Available Languages: | English |
| Exam Format: | Multiple choice |
| Related Certifications: | IBM Certified Database Associate - DB2 |
| Exam Duration: | 90 minutes |
| Real Exam Qty: | 55-65 |
| Recommended Training: | IBM DB2 Training Courses |
| Exam Registration: | IBM Certification Portal Pearson VUE IBM Exams |
| Sample Questions: | ![]() |
| Exam Way: | Pearson VUE online proctored or authorized test center |
| Pre Condition: | No formal prerequisite required, but basic database and SQL knowledge is recommended. |
| Official Syllabus URL: | https://www.ibm.com/training/certification |
IBM A2090-730 Exam Syllabus Topics:
| Section | Objectives |
|---|---|
| Topic 1: SQL and Data Manipulation | - Basic SELECT statements - Insert, update, and delete operations - Joins and query processing basics |
| Topic 2: Database Design and Objects | - Data types and constraints - Tables, views, indexes, and schemas |
| Topic 3: Transaction Management and Concurrency | - Commit and rollback concepts - Isolation levels and locking mechanisms |
| Topic 4: Performance and Monitoring Basics | - Database monitoring tools overview - Query optimization basics |
| Topic 5: DB2 Environment and Architecture | - DB2 product family overview and editions - Database instances and database objects - Client-server architecture and components |
| Topic 6: Backup, Recovery, and Utilities | - Backup and restore fundamentals - Load and export utilities |
| Topic 7: Security and Authorization | - User privileges and roles - Authentication mechanisms |
A2090-730 Exam FAQs for 2026 Candidates
Which certification does the A2090-730 exam lead to?
The A2090-730 exam is the official IBM exam behind the IBM Certified Database Associate - DB2 9 Family Fundamentals certification, validating the skills measured by the IBM Assessment: DB2 9 Family Fundamentals credential. It sits at the Associate level of the IBM certification program. It also connects to IBM Certified Database Associate - DB2, so the knowledge you build here carries over to those tracks as well.
How many questions are on the A2090-730 exam, and how much time do I get?
The A2090-730 exam contains 55-65 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.
Are there any prerequisites for the A2090-730 exam?
No formal prerequisite required, but basic database and SQL knowledge is 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 A2090-730 exam?
You can book the IBM Assessment: DB2 9 Family Fundamentals exam through the official registration channels below:
As for delivery, the exam is offered in the following format: Pearson VUE online proctored or authorized test center. Choose the option that suits you best when you book your seat.
What official training is recommended for the A2090-730 exam?
IBM recommends the following training resources for the IBM Assessment: DB2 9 Family Fundamentals exam:
Official courses build the foundation; the 303 practice questions from Getcertkey then show you how that knowledge is examined, so the two work best together.
Can I try the A2090-730 practice questions before I buy?
Yes. Getcertkey provides a free A2090-730 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 A2090-730 exam, and how is my order delivered?
Every IBM Assessment: DB2 9 Family Fundamentals 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 A2090-730 exam?
The IBM Assessment: DB2 9 Family Fundamentals exam blueprint is organized into 7 domains. The first three are:
- Transaction Management and Concurrency
- Security and Authorization
- SQL and Data Manipulation
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 Assessment: DB2 9 Family Fundamentals Sample Questions:
Question #1
Which of the following DB2 data types has a fixed length?
A. BLOB
B. XML
C. DOUBLE
D. DBCLOB
Question #2
Given the following statements:
CREATE TABLE table1 (col1 INTEGER, col2 CHAR(3)); CREATE VIEW view1 AS
SELECT col1, col2 FROM table1 WHERE col1 < 100 WITH LOCAL CHECK OPTION;
Which of the following INSERT statements will execute successfully?
A. INSERT INTO view1VALUES(100, abc)
B. INSERT INTO view1VALUES(50, 'abc')
C. INSERT INTO view1VALUES(100, 'abc')
D. INSERT INTO view1 VALUES (50,abc)
Question #3
Which of the following scenarios will ensure that the value of the NEXT_STEPNO column in a given row of table TABLEX exists as a value of column STEPNO (usually in another row) in the same table?
A. Define column STEPNO as the primary key of TABLEX and column NEXT_STEPNO as a foreign key referencing column STEPNO of the same table.
B. Define a UNIQUE constraint on the columns NEXT_STEPNO and STEPNO.
C. Define column NEXT_STEPNO as the primary key of TABLEX and column STEPNO as a foreign key referencing column NEXT_STEPNO in the same table.
D. Define a CHECK constraint on the NEXT_STEPNO column (NEXT_STEPNO = STEPNO).
Question #4
Given the following table:
TEMP_DATA
TEMP DATE
45 12/25/2006 51 12/26/2006 67 12/27/2006 72 12/28/2006 34 12/29/2006 42 12/30/2006
And the following SQL statement:
CREATE FUNCTION degf_to_c (temp INTEGER) RETURNS INTEGER LANGUAGE SQL CONTAINS SQL NO EXTERNAL ACTION DETERMINISTIC BEGIN ATOMIC DECLARE newtemp INTEGER; SET newtemp = temp - 32; SET newtemp = newtemp * 5; RETURN newtemp / 9; END
Which two of the following SQL statements illustrate the proper way to invoke the scalar function DEGF_TO_C?
A. SELECT date,degf_to_c(temp) AS temp_c FROM temp_data
B. VALUESdegf_to_c(32)
C. VALUESdegf_to_c(32) AS temp_c
D. SELECT * FROMTABLE(degf_to_c(temp)) AS temp_c
E. CALLdegf_to_c(32)
Question #5
In which situation is shredding XML data recommended?
A. When the data by nature has sparse attributes
B. When the data is of low volume and requires a complex star-schema topology
C. When thenumber of nodes are volatile
D. When the data is naturally tabular
Solutions:
| Question #1 Correct Answer: C | Question #2 Correct Answer: B | Question #3 Correct Answer: A | Question #4 Correct Answer: A,B | Question #5 Correct Answer: D |


PDF Version Demo
1315 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.