CDMP — DAMA Data Management Fundamentals Cheat Sheet
Last revised: September 16, 2026
Cheat sheet: CDMP Data Management Fundamentals reference for DAMA concepts, knowledge areas, governance, quality, metadata, architecture, and exam distinctions.
Use the tables for a quick pre-exam check. Expand a topic’s notes for explanations, examples, and additional distinctions.
Scope and study context
What each data management knowledge area is responsible for.
Which artifacts, roles, and processes belong together.
How to distinguish governance, architecture, quality, metadata, MDM, integration, warehousing, and security scenarios.
Common exam traps where similar terms are intentionally contrasted.
It is IT Mastery exam-prep support and is not affiliated with DAMA International. Use it to refresh the major data management concepts, sharpen decision rules, and identify weak areas before using an original question bank for deeper practice.
Item
Detail
Provider
DAMA International
Official exam title
DAMA CDMP Data Management Fundamentals
Official exam code
CDMP
Review focus
Core data management principles, terminology, decision-making, and common exam traps
Best use
Read once, drill weak topics, review explanations, then take mixed mock exams
Core DAMA Data Management Frame
Data Management in One View
Concept
Exam-ready meaning
Common trap
Data management
Development, execution, and supervision of plans, policies, programs, and practices that deliver, control, protect, and enhance data and information assets
Not just database administration or analytics
Data as an asset
Data has value, risk, lifecycle, ownership/accountability, and quality expectations
Use change management, stakeholder engagement, and value-based communication
Sensitive data is widely accessible
Apply data classification, access policy, security controls, and monitoring
Data Architecture
Architecture Views
View
Focus
Common artifacts
Enterprise data architecture
Organization-wide data assets, subject areas, flows, and principles
Enterprise data model, capability map, data domain model
Business/data domain view
Core business concepts and their relationships
Subject-area model, canonical definitions
Application/data flow view
Movement of data between systems
Data flow diagrams, system context diagrams, interface maps
Technology/platform view
Data stores, platforms, integration tools, storage technologies
Platform architecture, deployment patterns
Target-state roadmap
Transition from current to desired capabilities
Gap analysis, migration roadmap
Notes and examples
Architecture Principles
Principle
Practical interpretation
Business alignment
Data architecture supports business strategy and capabilities
Shared data
Common data should be reusable and consistently defined
Data quality by design
Validation, controls, and ownership should be built into architecture
Metadata-driven management
Meaning, lineage, and controls should be documented and discoverable
Security and privacy by design
Protection is embedded early, not bolted on later
Lifecycle management
Retention, archive, and disposal are planned
Interoperability
Systems exchange data using agreed structures and semantics
Architecture vs Modeling vs Integration
If the question focuses on…
Think first of…
Enterprise subject areas and target state
Data Architecture
Entity attributes, relationships, keys
Data Modeling and Design
Mapping source to target and moving data
Data Integration and Interoperability
Enterprise-approved definitions
Data Governance and Metadata
Shared customer/product/vendor records
Reference and Master Data
Historical analytical store
Data Warehousing and BI
Data Architecture
Data architecture describes how data is organized, integrated, stored, shared, and governed across the enterprise.
Architecture Review Points
Concept
What to remember
Enterprise data architecture
Broad view of data domains, flows, systems, standards, and capabilities
Data domain
A major subject area, such as customer, product, supplier, employee, asset, or transaction
Data flow
Movement or sharing of data between processes, applications, stores, and users
Target architecture
Desired future-state design aligned to strategy
Current-state architecture
Existing data environment, including constraints and technical debt
Roadmap
Sequenced path from current state to target state
Common Architecture Traps
Choosing a tool before defining business requirements.
Designing only for one project rather than enterprise reuse.
Ignoring data lineage, ownership, and quality requirements.
Treating architecture diagrams as documentation only, rather than decision-support tools.
Forgetting that architecture must balance business, information, application, and technology concerns.
Data Modeling and Design
Modeling Terms
Term
Meaning
Trap
Entity
Thing of business interest
Not necessarily a physical table
Attribute
Fact or property about an entity
Should have clear definition and domain
Relationship
Association between entities
Cardinality and optionality matter
Cardinality
Number of instances that may participate
One-to-one, one-to-many, many-to-many
Optionality
Whether participation is required
Mandatory vs optional relationship
Primary key
Unique identifier for a record/entity instance
Natural or surrogate depending on design
Foreign key
Attribute referencing another table/entity key
Enforces referential integrity in physical design
Normalization
Reduce redundancy and update anomalies
Too much normalization may impair analytic usability
Denormalization
Add redundancy for performance/usability
Increases maintenance and consistency risk
Domain
Permitted set or type of values
Supports validation and consistency
Constraint
Rule enforced on data
May be business, logical, or physical
Notes and examples
Normalization Review
Normal form concept
Core idea
Typical issue prevented
1NF
Values are atomic; repeating groups removed
Multiple values in one field
2NF
Non-key attributes depend on whole key
Partial dependency on part of composite key
3NF
Non-key attributes depend only on the key
Transitive dependency
Higher forms
Address more complex dependency issues
Subtle redundancy and anomaly cases
Dimensional Modeling
Term
Meaning
Example
Fact table
Numeric measurements at a defined grain
Sales amount by order line
Dimension table
Descriptive context for facts
Date, product, customer, store
Grain
Lowest level of detail represented by a fact table
One row per order line per product
Star schema
Fact table connected to denormalized dimensions
Common BI design
Snowflake schema
Dimensions normalized into related tables
Less redundancy, more joins
Slowly changing dimension
Method for handling dimension attribute changes over time
Customer address history
Conformed dimension
Shared dimension used consistently across facts/marts
Common date or product dimension
Modeling Traps
Trap
Correct exam reasoning
Treating conceptual model as physical schema
Conceptual models communicate business meaning, not implementation details
Starting physical design before requirements
Modeling should be driven by business rules and data requirements
Assuming all redundancy is bad
Redundancy may be deliberately introduced for performance or analytics
Ignoring grain in fact design
Grain must be declared before selecting facts and dimensions
Confusing master data with dimensional data
Master data manages authoritative core entities; dimensions provide analytic context
Data Modeling and Design
Data modeling is a high-yield area because questions often test levels of abstraction, relationships, and business meaning.
Conceptual, Logical, and Physical Models
Model type
Main audience
Focus
Example content
Conceptual
Business stakeholders
Major business concepts and relationships
Customer places Order
Logical
Analysts, data modelers, designers
Attributes, relationships, business rules, normalization
Customer, Order, Order Line, Product with keys and cardinality
Physical
DBAs, engineers, platform teams
Implementation details
Tables, columns, indexes, partitions, datatypes
Decision rule:
If the question emphasizes business concepts and shared understanding, choose conceptual. If it emphasizes detailed entities, attributes, and relationships independent of technology, choose logical. If it emphasizes implementation in a specific database or platform, choose physical.
Modeling Concepts to Review
Concept
Meaning
Exam cue
Entity
Thing of business interest
Customer, Product, Invoice
Attribute
Property of an entity
Customer Name, Order Date
Relationship
Association between entities
Customer places Order
Cardinality
Number of instances that can relate
One-to-many, many-to-many
Optionality
Whether relationship participation is required
Customer may have Account
Primary key
Uniquely identifies a record
Customer ID
Foreign key
References another entity’s key
Order contains Customer ID
Domain
Valid set of values
Status code list, date range, allowed category
Normalization and Denormalization
Approach
Purpose
Tradeoff
Normalization
Reduce redundancy and update anomalies
May require more joins
Denormalization
Improve read performance or simplify access
May introduce redundancy and consistency risks
Exam trap: Normalization is not automatically “better” in every context. Operational systems often benefit from normalized design; analytical systems may intentionally use dimensional or denormalized structures for query performance and usability.
Data Storage and Operations
Operational Responsibilities
Area
Focus
Examples
Database operations
Availability, performance, capacity, monitoring
Tuning, backup jobs, index maintenance
Backup and recovery
Restore data after failure or corruption
Recovery procedures, restore tests
Data retention
Keep data as long as required by policy/business need
Retention schedules, archive strategy
Archiving
Move inactive data to lower-cost or long-term storage
Historical transaction archive
Disposal
Defensible deletion at end of lifecycle
Secure deletion, disposal evidence
Performance management
Ensure workloads meet service expectations
Query tuning, resource monitoring
Data environment management
Manage development, test, production data safely
Refreshes, masking, change control
Notes and examples
Backup and Recovery Terms
Term
Meaning
Backup
Copy of data for restoration
Restore
Process of bringing backup data back into an environment
Recovery
Returning service/data to usable state after failure
RPO
Maximum acceptable data loss, expressed as time
RTO
Maximum acceptable time to restore service
Point-in-time recovery
Restore to a specific prior moment
Disaster recovery
Broader recovery of systems/processes after major disruption
Business continuity
Maintaining critical business operations during disruption
Data Storage and Operations
Data storage and operations covers the practical management of databases, storage platforms, operational support, availability, and recovery.
Core Terms
Term
Quick meaning
Database
Organized collection of data managed for access and update
DBMS
Software used to define, store, secure, query, and manage databases
Backup
Copy of data for recovery purposes
Recovery
Restoring data or service after failure
Archive
Long-term storage, often for inactive or historical data
Retention
How long data should be kept based on business and control requirements
Disposal
Controlled deletion or destruction when data is no longer needed
Availability
Ability of systems and data to be accessible when required
Backup, Recovery, DR, and Continuity
Concept
Primary concern
Backup
Having recoverable copies
Recovery
Restoring data or service after an incident
Disaster recovery
Restoring technology capability after major disruption
Business continuity
Maintaining critical business operations during disruption
Common mistake: Selecting “backup” as the complete answer when the question is about broader continuity, resilience, or recovery planning.
Data Security
Security Concepts
Concept
Meaning
Exam cue
Confidentiality
Prevent unauthorized disclosure
Sensitive data exposure
Integrity
Prevent unauthorized or improper modification
Tampering, incorrect changes
Availability
Ensure authorized access when needed
Outage, resilience, denial of service
Authentication
Verify identity
Login, identity proof
Authorization
Grant permitted actions
Roles, privileges, access rights
Least privilege
Grant only access needed
Over-permissioned users
Segregation of duties
Separate conflicting responsibilities
Avoid one person controlling entire process
Data classification
Categorize data by sensitivity/value/risk
Public, internal, confidential, restricted
Encryption
Protect data by encoding it
At rest, in transit
Masking
Obscure sensitive data, often for non-production or display
Test data, partial display
Tokenization
Replace sensitive value with non-sensitive token
Payment or identifier protection
Auditing
Track access and changes
Evidence, monitoring, compliance support
Notes and examples
Security Control Types
Control type
Purpose
Examples
Preventive
Stop unwanted event
Access control, encryption, input validation
Detective
Identify event after or during occurrence
Logging, monitoring, anomaly detection
Corrective
Restore or remediate
Incident response, restore, patching
Administrative
People/process rules
Policies, training, procedures
Technical
Technology-enforced controls
IAM, database permissions, encryption
Physical
Facility/media protection
Locked rooms, secure disposal
Security Decision Points
Scenario
Likely control
Users should see only data for their region
Role-based or attribute-based access control
Developers need production-like data without sensitive values
Data masking or synthetic data
Data moves between systems
Encryption in transit and secure interface controls
Data stored in a database contains sensitive fields
Encryption at rest, column-level controls, access restrictions
Need evidence of who changed data
Audit logging and change tracking
Business must know sensitivity before applying controls
Data classification
Data Security
Data security protects data from unauthorized access, misuse, alteration, disclosure, or loss.
Security Principles
Principle
Meaning
Example
Confidentiality
Only authorized users can access data
Access controls, encryption, masking
Integrity
Data is accurate, complete, and not improperly altered
Labels data based on sensitivity, value, or handling needs
Exam trap: Security is not only a technical function. Governance defines policies and accountability; security teams and custodians implement controls; data owners help determine classification, sensitivity, and acceptable use.
Data Integration and Interoperability
Integration Patterns
Pattern
Best for
Watch for
Batch ETL
Scheduled movement and transformation before loading
Control creation, storage, retrieval, and lifecycle of documents
Content management
Broader management of digital content for use and publication
Records management
Manage records as evidence of business activity
Taxonomy
Controlled classification structure
Ontology
Formal representation of concepts and relationships
Retention schedule
Rules for how long content/records are kept
Legal hold
Preservation requirement that suspends normal disposal when needed
Version control
Management of revisions and history
eDiscovery
Identification and production of electronically stored information
Document and Content Management
Document and content management focuses on unstructured and semi-structured information such as documents, images, web content, emails, records, and knowledge assets.
Concept
Quick meaning
Document management
Controls documents through creation, versioning, storage, retrieval, and disposition
Content management
Broader management of digital content for use, publishing, search, and reuse
Records management
Manages records that provide evidence of business activity
Taxonomy
Controlled structure for classifying content
Search and retrieval
Enables users to find content efficiently
Version control
Tracks changes and current approved versions
Common trap: Treating documents as outside data management. Content still needs ownership, metadata, classification, retention, access control, and quality expectations.
Reference and Master Data
Master Data vs Reference Data
Aspect
Master data
Reference data
Meaning
Core business entities shared across processes
Controlled lists of valid values/classifications
Examples
Customer, product, vendor, employee, location
Country codes, currency codes, status codes
Management focus
Identity resolution, survivorship, hierarchy, golden record
Standard values, code mappings, valid value governance
Change pattern
Can be complex and frequent
Often more stable, but changes must be controlled
Main risk
Duplicate/inconsistent core entities
Inconsistent coding and interpretation
Notes and examples
MDM Concepts
Term
Meaning
Golden record
Best authoritative representation of an entity
Match
Identify records that may represent same entity
Merge
Combine duplicate records according to rules
Survivorship
Determine which source value wins for an attribute
Hierarchy management
Manage parent-child relationships among master entities
Identity resolution
Determine whether records refer to the same real-world entity
Data stewardship
Review exceptions, approve merges, maintain rules
Registry style
Maintains cross-reference/index to source records
Consolidation style
Creates consolidated view for reporting/analytics
Coexistence style
MDM hub and sources share ongoing maintenance
Transaction style
MDM hub becomes authoritative system of entry for master data
MDM Style Selection
Requirement
Likely style
Need cross-reference without replacing source systems
Registry
Need consolidated reporting view of customers/products
Consolidation
Need shared maintenance across hub and source systems
Coexistence
Need central authoritative creation/update of master data
Transaction
Need quick visibility into duplicates with minimal disruption
Registry or consolidation
Need strong operational control over entity lifecycle
Transaction or coexistence
Reference Data and Master Data
Reference data and master data are commonly confused. The distinction is high-yield.
Reference Data vs. Master Data
Type
Meaning
Examples
Reference data
Standard values used to classify or categorize other data
Country codes, currency codes, status codes, product categories
Master data
Core business entities shared across processes and systems
Identifying records that refer to the same real-world entity
Merging
Combining duplicate or overlapping records
Survivorship
Rules for selecting the preferred value among conflicting sources
Hierarchy management
Managing parent-child or grouping relationships
Data stewardship
Resolving ambiguous matches, definitions, and quality issues
MDM Implementation Styles
Style
General idea
Registry
Maintains cross-references and identifiers across systems
Consolidation
Combines data for reporting or reference use
Coexistence
Shares updates between master hub and source systems
Centralized
Master data is authored and managed centrally
Exam trap: MDM is not just deduplication software. It requires governance, ownership, quality rules, integration, matching logic, stewardship, and lifecycle management.
Data Warehousing and Business Intelligence
Warehouse Architecture Terms
Term
Meaning
Data warehouse
Integrated, historical, subject-oriented data store for analytics
Data mart
Subset of warehouse data for department/process/domain
Operational data store
Integrated current/near-current operational data store
Staging area
Temporary landing area for loading/transformation
Semantic layer
Business-friendly abstraction over data structures
Cube
Multidimensional analytic structure
Dashboard
Visual summary of metrics and trends
Report
Structured output answering recurring business questions
KPI
Key performance indicator linked to business objective
Notes and examples
Warehouse vs Lake vs Lakehouse
Platform
Best fit
Governance concern
Data warehouse
Curated, structured, trusted reporting and BI
Definitions, lineage, quality, access control
Data lake
Store large volumes of raw/diverse data
Avoid unmanaged “data swamp” through metadata and governance
Lakehouse
Combine lake flexibility with warehouse-like management features
Clear zones, quality controls, catalog, security
ODS
Current integrated operational reporting
Latency, operational impact, source consistency
BI Metric Traps
Trap
Correct reasoning
KPI without business objective
A KPI should measure progress toward a defined goal
Dashboard as governance solution
Dashboards display data; governance defines meaning, accountability, and rules
Report disagreement treated as visualization issue
Investigate source data, definitions, transformations, and lineage
Data mart built independently without conformed dimensions
Creates inconsistent metrics across departments
Data Warehousing and Business Intelligence
Data warehousing and BI support analysis, reporting, performance management, and decision-making.
Operational vs. Analytical Systems
Feature
Operational systems
Analytical systems
Main purpose
Run business processes
Support reporting and analysis
Data pattern
Current, transaction-focused
Historical, integrated, subject-oriented
Design priority
Fast transactions and integrity
Query performance and usability
Users
Operational staff, applications
Analysts, managers, data consumers
Common design
Normalized relational structures
Dimensional models, warehouses, marts
Dimensional Modeling
Term
Meaning
Fact
Measurable business event or numeric measure
Dimension
Descriptive context for facts
Grain
Level of detail represented by a fact table
Star schema
Fact table connected to dimension tables
Slowly changing dimension
Technique for handling changes in dimension attributes over time
Decision rule: Always identify the grain before evaluating a fact table design. Many dimensional modeling errors come from mixing different levels of detail in the same structure.
BI and Analytics Traps
Confusing dashboards with data governance.
Assuming a report is correct because it was produced by a system.
Ignoring lineage from source to report.
Mixing metrics with different definitions.
Building analytics before agreeing on business terms and calculation rules.
Metadata is data about data. It makes data understandable, traceable, usable, and governable.
Metadata Types
Type
Describes
Examples
Business metadata
Business meaning and context
Definitions, owners, rules, glossary terms
Technical metadata
Structure and implementation
Tables, columns, datatypes, mappings
Operational metadata
Processing and usage
Job runs, load times, error counts, access logs
Administrative metadata
Management and control
retention, classification, stewardship, ownership
Metadata Capabilities
Capability
Why it matters
Business glossary
Aligns terminology across business and technology teams
Data catalog
Helps users discover, understand, and evaluate data assets
Lineage
Shows where data came from and how it changed
Impact analysis
Helps assess effects of changes
Data dictionary
Describes structures, fields, formats, and constraints
Metadata repository
Stores and manages metadata centrally or federatively
Exam trap: A data dictionary is not the same as a full metadata management program. A dictionary may describe fields; metadata management also includes ownership, lineage, rules, quality, usage, and governance processes.
Data Quality
Data Quality Dimensions
Dimension
Question answered
Example check
Accuracy
Does data correctly represent reality?
Address matches verified source
Completeness
Are required values present?
Customer record has required contact fields
Consistency
Do values agree across systems/rules?
Same customer status in CRM and billing
Timeliness
Is data available/current when needed?
Daily sales loaded before morning reporting
Validity
Does data conform to format/domain/rules?
Date is valid; status is from approved list
Uniqueness
Are duplicates avoided?
One active customer record per real customer
Integrity
Are relationships and constraints maintained?
Order references valid customer
Conformity
Does data follow standards?
Phone format follows standard pattern
Reasonableness
Is value plausible?
Birth date not in future
Notes and examples
Data Quality Process
Step
Purpose
Output
Define requirements
Identify fitness-for-purpose expectations
DQ rules, thresholds, critical data elements
Profile data
Understand actual values and patterns
Profiling results, anomalies
Measure quality
Quantify against rules/dimensions
DQ scorecards, metrics
Analyze root cause
Identify why defects occur
Root-cause analysis
Remediate
Correct data and/or process
Cleansed data, process fixes
Monitor
Detect recurrence and trends
Alerts, dashboards
Prevent
Embed controls upstream
Validation, training, improved process
Data Quality Formulas
Completeness rate:
\[
\text{Completeness Rate} = \frac{\text{Number of populated required values}}{\text{Number of required values expected}} \times 100
\]
Defect rate:
\[
\text{Defect Rate} = \frac{\text{Number of records failing a rule}}{\text{Total records tested}} \times 100
\]
Duplicate rate:
\[
\text{Duplicate Rate} = \frac{\text{Number of duplicate records identified}}{\text{Total records evaluated}} \times 100
\]
DQ Scenario Decisions
Scenario
Best response
Missing required fields in a source application
Add validation and process controls at capture point
Different customer counts in two reports
Compare definitions, filters, source lineage, and transformations
Duplicate customer records
Use matching rules, MDM/steward review, prevention at entry
Valid values differ by system
Govern reference data and code mappings
Dashboard shows stale data
Check load timeliness, SLAs, operational metadata
Quality score improves only after manual cleanup
Address root cause and preventive controls, not just correction
Data Quality
Data quality means data is fit for its intended use. It is not absolute perfection.
Common Data Quality Dimensions
Dimension
Meaning
Example question
Accuracy
Data correctly represents the real-world value
Is the customer address correct?
Completeness
Required data is present
Is date of birth missing where required?
Consistency
Data agrees across systems or records
Does customer status match in two systems?
Timeliness
Data is current enough for use
Was the balance updated in time for reporting?
Validity
Data conforms to rules or allowed values
Is the status code in the approved list?
Uniqueness
Entity is not duplicated unnecessarily
Are there duplicate customer records?
Integrity
Relationships and constraints are maintained
Does every order reference a valid customer?
Data Quality Activities
Activity
Purpose
Profiling
Examines data to discover patterns, anomalies, and quality issues
Assessment
Evaluates quality against business requirements
Cleansing
Corrects or standardizes data values
Matching/deduplication
Identifies and resolves duplicate entities
Monitoring
Tracks quality over time
Root-cause analysis
Finds why defects occur
Prevention
Improves processes and controls to stop defects at source
High-yield distinction: Cleansing fixes existing data; quality management also prevents future defects through governance, standards, controls, process changes, and monitoring.
Big Data and Data Science
Big Data Characteristics
Characteristic
Meaning
Volume
Large quantities of data
Velocity
Speed of generation, ingestion, or processing
Variety
Multiple formats and structures
Veracity
Trustworthiness and uncertainty
Value
Business benefit derived from use
Notes and examples
Analytics Types
Type
Question
Example
Descriptive
What happened?
Monthly sales report
Diagnostic
Why did it happen?
Root-cause analysis of churn
Predictive
What is likely to happen?
Churn prediction model
Prescriptive
What should be done?
Recommended next best offer
Data Science Lifecycle
Stage
Focus
Governance touchpoints
Problem framing
Define business objective and success criteria
Business ownership, ethical use
Data acquisition
Identify and collect data
Consent/permissions, source quality, lineage
Preparation
Clean, transform, engineer features
DQ rules, reproducibility
Modeling
Train and evaluate models
Bias, explainability, validation
Deployment
Operationalize model
Monitoring, access, change control
Monitoring
Track performance and drift
Metrics, auditability, retraining triggers
Data Science Traps
Trap
Correct reasoning
More data always means better model
Relevance, quality, bias, and representativeness matter
Data lake eliminates governance need
Big data requires metadata, quality, security, lifecycle controls
Model accuracy is the only concern
Ethics, explainability, bias, operational fit, and monitoring also matter
Experiment data can ignore lineage
Reproducibility requires data and process traceability
Big Data, Data Science, and Analytics Governance
For CDMP review, focus less on buzzwords and more on how data management principles apply at scale.
Concept
What to remember
Big data
Data with volume, velocity, variety, or complexity that challenges traditional approaches
Data lake
Stores raw or varied data for exploration and analytics; still needs governance and metadata
Data lakehouse
Combines lake-style storage with warehouse-like management features
Data science
Uses statistical, computational, and machine learning methods to generate insight or predictions
Machine learning model
Learns patterns from data to make predictions or classifications
Feature
Input variable used by a model
Model governance
Controls model development, validation, deployment, monitoring, and responsible use
Common Analytics Traps
Assuming more data automatically means better results.
Ignoring bias, representativeness, and data provenance.
Using data without understanding definitions and lineage.
Treating models as one-time deliverables rather than lifecycle assets.
Forgetting security, privacy, ethics, and access controls in analytical environments.
Data Lifecycle Review
Data management spans the full lifecycle, not just storage.
Data architecture, models, integration patterns, platforms
Operations
How is data created, stored, moved, protected, and used?
Databases, data pipelines, APIs, warehouses, backups
Controls and improvement
How do we keep data trusted and useful?
Data quality, metadata, lineage, security, monitoring
A common candidate mistake is to treat every issue as a technology problem. In DAMA-style data management, many problems are governance, ownership, definition, quality, or lifecycle problems before they are tool problems.
Governance: Decision Rights, Accountability, and Control
Data governance is one of the most important CDMP review areas because it connects business accountability to data management execution.
Governance vs. Management
Concept
Primary question
Typical outputs
Data governance
Who has authority and accountability for data decisions?
Policies, standards, decision rights, issue escalation, stewardship model
Data management
How are data capabilities planned, built, operated, and improved?
Models, platforms, processes, controls, data quality rules, metadata repositories
Data stewardship
Who helps define, monitor, and improve data in practice?
Accountable for data within a business domain or process
Not necessarily the person who stores or administers the data
Data steward
Helps define, manage, monitor, and improve data
Stewardship is not just clerical cleanup
Data custodian
Operates or administers data systems and storage
Custodians usually do not own business meaning
Data architect
Designs structures, flows, models, and standards
Architecture should support business strategy, not just technical elegance
Data consumer
Uses data for operations, reporting, analytics, or decisions
Consumers also create requirements and quality expectations
Policies, Standards, Procedures, and Guidelines
Item
Meaning
Example
Policy
High-level rule or intent
Sensitive data must be protected according to classification
Standard
Required way to comply
Customer identifiers must follow an approved format
Procedure
Step-by-step method
Process for approving a new data sharing request
Guideline
Recommended practice
Preferred naming pattern for analytics datasets
Exam trap: If the question asks about accountability, authority, escalation, or enterprise-wide rules, think governance. If it asks about execution, operation, implementation, or administration, think management.
Data Strategy and Business Value
Data management should support business outcomes. Candidates often over-focus on definitions and under-focus on purpose.
Controls for security, retention, quality, lineage, and access
Regulatory support
Traceable, governed, classified, and auditable data practices
Customer or product insight
Integrated, high-quality data across channels and systems
Innovation
Reusable data assets, scalable platforms, and responsible analytics
A good exam answer often favors the option that improves data as an enterprise asset rather than a narrow local workaround.
Common CDMP Wording Traps
Watch for these patterns when answering practice questions.
Wording pattern
What it often tests
Better approach
“Best first step”
Sequencing
Understand requirements, ownership, definitions, or impact before implementing tools
“Most responsible for”
Accountability
Distinguish owner, steward, custodian, architect, and consumer
“Enterprise-wide”
Governance or architecture
Avoid local project-only fixes
“Trusted data”
Quality, metadata, lineage, governance
Do not choose only storage or reporting
“Common definition”
Business glossary or metadata
Do not choose physical database design
“Duplicate customers”
MDM and data quality
Include matching, survivorship, stewardship
“Sensitive data exposure”
Security and governance
Include classification, access, monitoring, and handling rules
“Inconsistent reports”
Definitions, lineage, integration, quality
Avoid assuming the BI tool is the root cause
“Historical analysis”
Data warehousing/BI
Operational database is usually not the best answer
“Impact of a change”
Metadata and lineage
Need traceability across sources, transformations, and reports
Fast Decision Rules
Use these quick rules during topic drills and mock exams.
If the question emphasizes…
Think first about…
Accountability, ownership, decision rights
Data governance
Business definitions and shared terminology
Business glossary and metadata
Structure of business concepts
Conceptual or logical data modeling
Tables, indexes, partitions, datatypes
Physical design and operations
Data movement between systems
Integration and interoperability
Trusted entity records across systems
Master data management
Standard code lists
Reference data management
Reporting, history, dashboards, metrics
Data warehousing and BI
Meaning, lineage, discovery, impact analysis
Metadata management
Missing, invalid, duplicated, inconsistent data
Data quality management
Access, sensitivity, misuse, disclosure
Data security
Documents, records, versions, retention
Content and records management
Large-scale analytics or ML
Big data, data science, and analytics governance
What Strong Candidates Can Explain
Before moving into mixed mock exams, make sure you can explain these without looking them up:
The difference between data governance, data management, and data stewardship.
Why data owners are accountable for business meaning while custodians often manage technical environments.
The difference between conceptual, logical, and physical data models.
Why reference data and master data are related but not the same.
How metadata supports lineage, impact analysis, quality, governance, and discovery.
Why data quality is “fitness for use,” not abstract perfection.
The difference between profiling, cleansing, monitoring, and root-cause prevention.
Why data warehousing supports analytics differently from operational systems.
How ETL, ELT, APIs, replication, streaming, and virtualization differ.
Why security requires classification, access control, monitoring, and accountability.
How lifecycle thinking changes retention, archiving, and disposal decisions.
Why tool selection is rarely the best first answer when governance, definitions, or requirements are unclear.
Review-to-Practice Plan
Use this Cheat Sheet as a bridge into IT Mastery practice.
Step 1: Diagnose by Topic
Start with short topic drills from an original question bank. Do not begin with only full mock exams unless you already know your weak areas.
Recommended drill order:
Data governance and stewardship
Data modeling and architecture
Metadata and data quality
Reference data and master data
Integration and interoperability
Data warehousing and BI
Security, lifecycle, storage, and operations
Content management, big data, and data science
Step 2: Read Detailed Explanations Carefully
For every missed or guessed question, identify the reason:
Miss reason
What to do
Term confusion
Build a short contrast table
Role confusion
Review owner, steward, custodian, architect, and consumer responsibilities
Sequencing error
Ask what should happen before implementation
Tool-first thinking
Reframe the issue as governance, quality, metadata, or lifecycle
Overlooking wording
Highlight “first,” “best,” “most responsible,” and “enterprise-wide”
Weak domain knowledge
Return to targeted topic drills before another mock exam
Step 3: Move to Mixed Practice
After topic drills, use mixed question sets to practice switching domains quickly. The real challenge is often recognizing which knowledge area a scenario belongs to.
Step 4: Use Mock Exams for Timing and Judgment
Mock exams are most useful after you have already corrected major topic gaps. Review detailed explanations for both incorrect and correct answers, especially when you chose correctly by guessing.
Final Rapid Check
Before your next practice session, ask yourself:
Is this problem about governance, management, architecture, quality, metadata, or security?
Who is accountable for the data decision?
Is the issue caused by unclear definitions, poor quality, weak controls, or bad integration?
Does the answer solve the root cause or only clean up symptoms?
Is the question asking for a strategic, tactical, or operational response?
Would a business stakeholder, steward, architect, custodian, or analyst be the right lead?
Is the answer enterprise-reusable or only a local workaround?