Data Quality Management Best Practices: 10 Rules That Run the Program

The 10 data quality management best practices that run a program: table owners, a weekly cadence, a severity ladder, five numbers, and what to stop doing.

By

Jatin Solanki

Updated on

September 9, 2026

Key Takeaways

  • Ownership comes before checks. Every table in your top tier gets one named person before a single monitor is written. A check on a table nobody owns produces an alert nobody answers.
  • A program is a rhythm, not a document. Fifteen minutes of triage each morning, forty five minutes of review each week, one hour of recertification each quarter. Anything slower than that and the data has changed before the meeting happens.
  • The severity ladder decides the response, not the person who noticed. Four levels, each with a written response time and a named route. Without one, every alert is either an emergency or ignored, and in practice it is the second.
  • Five numbers tell you whether the program works. Coverage of tier 1 tables, time to detect, time to resolve, escaped defects, and alert precision. Counting how many checks you have is not one of them.
  • Retire checks as deliberately as you add them. A check that has fired forty times and been closed forty times without a fix is training your team to ignore the channel, and it is doing more damage than the absence of the check.
  • Fix the source, not the copy. Cleaning a value in the warehouse repairs one report. Fixing the form, the API validation or the upstream job repairs every consumer of that field at once.

Data quality management is the practice of keeping data accurate, complete and fit for the decision it feeds. That is the whole definition, and our guide to what data quality management is, the six dimensions and how to score a table covers the measurement side properly. This page is about the other half of the job: what the work actually looks like on a Tuesday morning.

Most best practice articles list activities. Establish governance. Run regular audits. Add validation rules. Train the team. Buy a tool. Every one of those is correct, and not one of them tells you who is contacted at seven in the morning when the revenue table lands short, or what to do about the check that has fired every Monday for six months and been closed unread every time.

So this page skips the vocabulary. Below are ten practices that describe a data quality program as an operating routine, with the people, the hours, the response times and the numbers written down. They are ordered by dependency, which means the earlier ones are the ones that make the later ones possible, and the last section says which three to build first if you are starting from nothing.

What a Working Data Quality Program Looks Like

Before the practices, the shape. A data quality program that is genuinely running has five visible parts, and you can audit your own in about ten minutes by asking whether each one exists in writing.

  • A tier list. Every table classified into one of three tiers by what depends on it, with tier 1 kept small enough that a person can read it.
  • An owner per tier 1 table. A named human, not a team alias, recorded somewhere both the alert router and a new joiner can find.
  • Checks as code. Every quality rule expressed as a test that runs on a schedule and returns the rows that broke it, rather than as a paragraph in a policy document.
  • A severity ladder. Four levels, each with a response time and a route, agreed before an incident rather than argued during one.
  • Five program numbers. Reported on the same day each week, to the same people, whether they are good or bad.

The roles below are the smallest set that makes those five parts work. The hours are what we would budget for a data platform of a few hundred tables with a handful of tier 1 products; scale them with the tier 1 count, not with the total table count.

RoleWhat they ownWhat reaches themTime it costs
Table owner (the engineer who builds it)Every check on their tier 1 tables, and the fix when one of them breaks.Any level 1 or level 2 incident on a table they own, routed automatically.2 to 4 hours a week
Data steward (a domain analyst, part time)The business rule behind each check and the tier each table sits in.Arguments about whether a value is wrong or merely unusual. The steward decides.2 hours a week
Quality lead (one person, never a committee)The cadence, the severity ladder, and the five program numbers.Nothing operational. They chair the weekly review and publish the numbers.4 hours a week
On call data engineer (a rota, shared with pipeline on call)First response on any level 1 outside the owner working hours.Paged by the alert route, never by a person tapping them on the shoulder.One week in four or more
Executive sponsorThe tier 1 list and the budget behind it.The quarterly recertification, and any tier change that adds cost.1 hour a quarter

Notice what is not in that table. There is no data quality team. Quality that lives in a separate team becomes a service the rest of the organization orders from, and the producers who create most of the problems never see the consequence. The question of where quality sits relative to governance, and which of the two comes first, is answered in detail in our piece on the difference between data quality and data governance.

1. Give Every Tier 1 Table a Named Owner Before You Write a Single Check

This is first because everything else fails without it. An alert that routes to a shared inbox is an alert that gets read by whoever is least busy, which is whoever knows least about the table. Within a month the channel is muted.

Do it in this order. Pull the list of tables that feed a board report, a customer facing product, a regulatory filing or a machine learning model in production. That is tier 1, and for most companies it is between twenty and eighty tables, not two thousand. Tier 2 is everything a named internal team uses daily. Tier 3 is everything else, and tier 3 gets no checks at all until it earns promotion.

Then put one name against every tier 1 row. Not a team, not a squad, a person, with a named deputy for their leave. If a table cannot get a name in a week, that is the finding: either nobody depends on it, in which case it is not tier 1, or it is orphaned, in which case you have found the thing most likely to break next.

The test that this practice is real: pick any three tier 1 tables at random and ask a new joiner to name the owner in under a minute using only the tools they already have. If they cannot, ownership exists in a spreadsheet rather than in the system.

2. Write the Standard as Checks Against Named Tables, Not as a Policy Document

A data quality standard that lives in a document is a wish. The same standard expressed as tests that run on a schedule is a control, and the difference between the two is whether anyone finds out when it is broken.

The translation is more mechanical than it sounds. "Customer records must be complete" becomes a not null test on the four fields the downstream report actually reads. "Orders must be unique" becomes a uniqueness test on the order identifier. "Every order must belong to a customer" becomes a referential test between the two tables. If you already run dbt, four generic data tests ship built in and cover most of that, and each one returns the rows that failed rather than a pass or fail flag, which is what makes a failure investigable. Great Expectations GX Core (docs.greatexpectations.io) is the open source option if your transformations are Python rather than SQL, and a platform such as Decube adds the checks nobody writes by hand, freshness, volume and schema drift, which are the ones that catch a broken pipeline rather than a broken record.

Two rules keep the check set honest. Every check names the table and column it applies to, so there is no such thing as an organization wide rule that nobody has implemented anywhere. And every check has a one line reason recorded with it saying what breaks downstream if it fails, because that sentence is what the on call engineer reads at three in the morning and what you will use later to decide whether to retire it.

3. Run the Program on a Fixed Cadence

Cadence is the practice teams skip, and it is the one that turns a set of monitors into a program. Without it the work happens when someone complains, which means it happens after the damage.

Four rituals are enough. They are deliberately short, and the time budget is part of the design: a data quality meeting that runs long gets cancelled within two months.

RitualFrequencyWhoInput and outputTime budget
Morning triageEvery working dayOn call engineer aloneIn: overnight incidents. Out: each one closed, assigned to an owner, or escalated.15 minutes
Quality reviewWeekly, same slotQuality lead, table owners, one stewardIn: the five program numbers and every incident older than seven days. Out: a decision on each stale incident and a list of checks to add or retire.45 minutes
Producer reviewMonthlyQuality lead and the upstream engineering or operations teamIn: the incidents whose root cause was upstream. Out: fixes committed in the producing system, not in the warehouse.30 minutes
RecertificationQuarterlyQuality lead, executive sponsor, stewardsIn: the tier list, the owner list and the retired check log. Out: a tier 1 list signed again and confirmed owners.60 minutes

The recertification is the one people question and the one that pays for itself. Table tiers rot faster than anything else in a data platform: a table promoted to tier 1 for a launch stays tier 1 for three years after the launch is forgotten, and the alert budget goes with it. Sixty minutes a quarter spent demoting tables is the cheapest noise reduction available.

4. Set a Severity Ladder and a Response Time for Each Level

Without a written ladder, severity is decided by whoever is looking, and people are consistent in only one direction: everything becomes low priority. The ladder below is a starting point to argue with, not a standard. What matters is that your version is written down before the next incident and that the response time is a commitment rather than an aspiration.

LevelWhat it meansResponse timeWho is contactedWhat stops
1. CriticalWrong data has reached a customer, a regulator or a board report, or is about to within the hour.Acknowledge in 15 minutes, contain in 1 hourOn call engineer paged, table owner and quality lead notified, sponsor told within the hourThe affected pipeline is paused and the dashboard or feed is marked as unavailable
2. HighA tier 1 table is broken but nothing has left the building yet.Acknowledge in 1 hour, fix by end of the working dayTable owner directly, quality lead on the threadDownstream jobs that read the table are held
3. MediumA tier 2 table is broken, or a tier 1 table has a fault a consumer would not notice today.Triaged next working day, fixed within the weekTable owner, in the daily triageNothing stops; the incident is logged and scheduled
4. LowA rule failed on data nobody currently reads, or a threshold was set too tightly.Reviewed at the weekly meetingNobody is contacted out of bandNothing stops; a candidate for retirement under practice 8

One discipline makes the ladder hold. The level is set by the consequence to the consumer, never by how alarming the alert looks. A null rate jumping from nought to ninety percent on a column no report reads is a level 4. A single wrong row in the table behind a customer statement is a level 1. Teams that set severity by the size of the anomaly end up paging engineers about staging tables.

5. Handle Every Incident With the Same Five Step Runbook

The value of a runbook is not that the steps are clever, it is that they are the same every time, so nothing is skipped when everyone is tired. Five steps, in this order.

  • Contain. Stop the bad data spreading before you understand it. Pause the pipeline, hold the downstream jobs, and mark the dashboard as unavailable. Containment before diagnosis is the step teams skip and regret.
  • Tell the consumers. Post in the channel the consumers actually read, naming the table, what is wrong, what decisions should be paused, and when the next update comes. A short message within fifteen minutes is worth more than a complete one in two hours.
  • Find the cause, not the symptom. Read the failing rows the check returned, then walk the lineage upstream until you reach the first place the value was wrong. Stopping at the first table that looks odd is how the same incident recurs a fortnight later.
  • Fix and backfill. Repair the source, then reprocess the affected window, then confirm the check passes on the reprocessed data before you tell anyone it is resolved.
  • Write it up in fifteen minutes. What broke, what it touched, why the existing checks did not catch it, and the one check that would have. Blameless and short. A review that takes an hour to write does not get written.

The fifth step is where the program improves, and it is the step that decides whether the incident count falls next quarter. The incidents nobody had a check for are the list that tells you what to build next. This is also the part of the work a platform can genuinely shorten, because most of the elapsed time in an incident goes on working out what the broken table feeds. The short walkthrough below shows that loop in Decube: opening a volume incident to see the unexpected row count and its history, running the debug query that gets to the cause, and reading the impacted areas and lineage panels that list every downstream table, dashboard and chart the issue touches.

A note on where this sits relative to monitoring. Detecting that a table changed is the observability half of the job, and judging whether the records inside it are right is the quality half. The boundary matters when you are buying, and we set it out properly in data quality versus data observability. The incident workflow above needs both halves: the monitor tells you something moved, the check tells you whether it mattered, and Decube data observability runs them against the same lineage graph so the impact question is answered without leaving the incident.

6. Fix the Source, Not the Warehouse Copy

Cleaning a bad value in the warehouse repairs one report. Fixing the form field, the API validation or the upstream job that produced it repairs every consumer of that field, including the ones you do not know about.

This is easy to agree with and hard to do, because the warehouse fix takes ten minutes and the source fix takes a sprint in a team that does not report to you. Two things make it happen. First, the monthly producer review in the cadence table exists specifically to carry these fixes, so they have a standing route rather than needing a favour each time. Second, every incident write up records where the value first went wrong, so after a quarter you can show the producing team a ranked list of the faults their system creates rather than an anecdote.

Where the source genuinely cannot be fixed, a third party feed you have no influence over, a legacy system in a freeze, then clean it in one place, at the earliest layer you control, and record the cleaning rule as an owned artefact with the same review cycle as a check. What you must not do is let each downstream team invent its own correction, because that is how two dashboards start disagreeing about revenue.

7. Measure the Program, Not Just the Data

Almost every team measures the data and almost none measures the program. The count of checks, the count of tables monitored and the count of alerts sent are all activity metrics: they go up when you work harder and say nothing about whether the data is getting better. Five numbers do say that.

NumberWhat it measuresA starting targetWhere it comes from
Tier 1 coverageThe share of tier 1 tables with at least one check per applicable dimension and a named owner.100 percent within one quarter. Anything less means the tier list is wrong or the tier is too big.The tier list joined to the check inventory
Time to detectMedian elapsed time from a value going wrong to an alert firing.Under one pipeline cycle. If your loads are hourly, under an hour.Incident timestamps against the data timestamp of the bad record
Time to resolveMedian elapsed time from alert to the check passing on corrected data.Level 1 within a working day, level 2 within two.Incident open and close times
Escaped defectsThe number of incidents reported by a consumer before any check caught them.Falling every quarter, and each one produces a new check.Incidents tagged by who raised them
Alert precisionThe share of alerts that led to an action. The Site Reliability Workbook definition: the proportion of detected events that were significant.Above 70 percent. Below 50 percent and people have already stopped reading.Incident outcomes, counted at the weekly review

Alert precision is the one to add first if you only add one. Alerting on service level objectives is a solved problem in software operations, and the Google Site Reliability Workbook chapter on alerting defines precision as the proportion of the events you detected that were actually worth detecting. Data teams rarely measure it and it is usually the number that explains why a well instrumented platform still misses incidents: the alerts fire, and nobody reads them any more.

Report all five on the same weekday, to the same audience, whether the week was good or bad. A quality report that appears only when the numbers improved is not a measurement system, it is marketing, and the audience works that out inside a quarter.

8. Retire Any Check That Fires and Is Ignored

This practice is missing from every competing article on the subject and it is the one most likely to save a program that is already failing. Adding checks is treated as progress and removing them as retreat, so check sets only ever grow, and a growing check set with a fixed amount of human attention produces a falling response rate.

The rule is arithmetic rather than judgment. At the weekly review, take any check that has fired three or more times in the last quarter and ask what action followed each firing. If the answer is that every firing was closed without a change to data, code or pipeline, the check has three possible futures and no fourth: retune the threshold so it fires on the condition that actually matters, downgrade it to level 4 so it stops interrupting anyone, or delete it. Leaving it alone is a decision to keep training your team to ignore the channel.

Keep a retired check log with the reason. It costs nothing, it stops the same check being reintroduced by the next joiner, and at recertification it is the evidence that the program is being pruned rather than merely grown.

9. Publish a Data Contract the Consumer Can Read

Most quality disputes are expectation mismatches rather than defects. The analyst thought the table was updated hourly, it is updated at 06:00, and the eight o clock meeting used yesterday numbers. No check would have caught that, because nothing was broken.

A data contract fixes it by writing the commitment down where the consumer sees it. Keep it to six lines: what the table contains, who owns it, how often it updates and by what time, which fields are guaranteed present and unique, what happens when it breaks and where that is announced, and how much history is retained. Put it in the catalog entry the consumer already opens, not in a document they will never find.

The discipline part is that a contract is a promise you have to be able to keep. Do not publish an 06:00 freshness commitment on a pipeline that misses it one morning in five. Publish the number you actually hit, then improve it. A contract that is quietly wrong is worse than no contract, because the consumer stops checking.

10. Put Data Quality in the Definition of Done for Producers

The last practice is the one that changes the trend rather than the response. Most bad data is created upstream by people who never see what it breaks: a field made optional in a form, a status value added to an enumeration, a column renamed in a migration.

Two changes move more incidents than any monitoring work. First, a schema change on a tier 1 source needs the consuming owner to be told before it ships, not after, which is a one line addition to a pull request template rather than a governance program. Second, a new field on a tier 1 table does not count as done until it has a check and a line in the contract, exactly the way a new endpoint does not count as done without a test.

Training belongs here too, and it is worth being specific about what kind. A general data quality awareness session teaches nothing that survives the week. A thirty minute session showing the producing team the three most recent incidents their own system caused, and what it cost the people downstream, changes behavior, because it is the first time most of them have seen the consequence.

The 5 Most Common Data Quality Issues, and What Catches Each One

Data quality issues arise from a small number of repeating causes: human entry error, system limits, integration faults, and business requirements that changed without anyone telling the data team. Five patterns account for most of them, and each has a check type that catches it and a practice above that prevents it recurring.

1. Duplicate data

The most common issue of all, produced by manual entry, repeated imports or a synchronisation fault between two systems. Duplicates distort every count in a report and quietly raise storage cost. Deduplication is the remedy, identifying the repeated records and consolidating them into one accurate record, either by hand or with automated matching. The check that catches it is a uniqueness test on the business key, and the practice that prevents it is a standard applied at the point of entry, so that a new record is validated against existing records before it is written rather than cleaned up afterwards.

2. Incomplete data

Records missing information the analysis needs, caused by entry error, a source system that does not collect the field, or an integration that silently drops it. The remedy is a completeness standard enforced before the data enters the system, so required fields cannot be left empty, backed by tooling that flags what got through anyway. The check is a not null test on the specific fields a downstream consumer reads, which is narrower and far more useful than a rule demanding every column be populated.

3. Inaccurate data

Values that are simply wrong, or right but in the wrong format. The causes are the same three: entry error, source limits, integration faults. The remedy is the same combination of a written standard and validation rules that reject a value outside the allowed set, with automated tooling identifying and correcting what slips past. The check is a range or accepted values test, and this is the category where a check needs a steward behind it, because deciding whether a value is wrong or merely surprising is a business judgment rather than a technical one.

4. Outdated data

Data that is no longer current, produced by a changed business requirement, a system limit or a source that stopped updating. It is the most dangerous of the five because nothing looks broken: the report renders, the numbers are plausible, and they are last week. The remedy is not only having standards but updating them as requirements change. The check is a freshness test on every tier 1 table, and the contract in practice 9 is what stops the mismatch between when a consumer thinks the table updates and when it actually does.

5. Inconsistent data

The same fact recorded in different formats or structures across systems, so it cannot be compared or aggregated. Entry error and system limits both produce it. The remedy is a consistency standard applied before data enters, plus validation and automated correction for what already exists. The check is a format or referential test between the systems that hold the same entity, and the practice that prevents recurrence is practice 6, because inconsistency almost always means two producers were never told the same rule.

Data Quality Tools and Technologies: What Each Category Actually Does

Four categories of tool sit behind the practices above, and they are frequently confused in procurement because their marketing overlaps. The distinction that matters is which question each one answers, and none of them is a substitute for the ownership and cadence described above. Vendor names below are plain text and are not endorsements.

CategoryWhat it doesExamplesWhen you actually need it
Data quality and observability platformsProfiles data, runs the checks, detects the anomalies nobody wrote a rule for, and carries the incident through to root cause and downstream impact.Decube, Trifacta, Talend, InformaticaAs soon as you have a tier 1 list. This is the category that makes practices 2 to 5 possible and it is where the incident workflow lives.
Master data managementKeeps one agreed record for an entity, a customer or a product, across every system that holds it, with the stewardship workflow to resolve conflicts.IBM InfoSphere MDM, Informatica MDM, Talend MDMWhen the same entity exists in three or more systems and they disagree. Before that, a uniqueness check on one warehouse table is cheaper and enough.
Data integrationMoves and reshapes data between systems, with mapping, transformation and loading.Apache NiFi, IBM InfoSphere DataStage, TalendAlways present in some form. It matters here because it is where most inconsistency and most silently dropped fields are introduced.
Business intelligencePresents the data to a human as a report, a dashboard or a chart.Tableau, Power BI, QlikViewAlready in place everywhere. It matters to quality only as the consumer: the dashboard is what you mark unavailable at step 1 of the runbook.

Two open source options are worth knowing before you buy anything, because for a small check set they are free and sufficient. If your transformations run in SQL through dbt, its four built in generic data tests cover not null, uniqueness, referential integrity and accepted values, and each returns the failing rows. If your pipeline is Python, Great Expectations GX Core (docs.greatexpectations.io) does the equivalent as a library. Both stop short at the same place: they run where you invoke them, so they catch a broken record and not a pipeline that never ran, and neither carries an incident, an owner or a severity. That gap is what a platform is for. For the integration layer, Apache NiFi remains the common open source choice.

Choose by the smallest set that covers your practices, not by feature count. A team with forty tier 1 tables, an owner against each and a weekly review will get more from a platform they configure in a fortnight than from a suite that takes two quarters to deploy and answers questions they have not asked yet.

What to Stop Doing

Four habits do active harm, and stopping them is faster than any of the ten practices above.

  • Stop reporting the number of checks. It rises whether or not the data improves, it rewards whoever adds the most rules, and it makes practice 8 politically hard. Report tier 1 coverage instead, which can only rise when something real is protected.
  • Stop routing alerts to a shared channel with no owner. A channel where everyone is responsible produces the response rate of a channel where nobody is. Route by table owner, and let the shared channel carry the summary rather than the page.
  • Stop running the quarterly data audit as your main control. A sample audited once a quarter tells you the state of the data on the day it was sampled, which is the one day nobody was making a decision on it. Keep the audit for regulatory evidence and put the working control on the schedule.
  • Stop cleaning in the dashboard layer. A correction written into a report definition is invisible to every other consumer and survives no rebuild. It is the single fastest way to get two dashboards that disagree, and it hides the incident that would otherwise have been fixed at the source.

What Regulated Industries Have to Add

If you are in banking, insurance or another supervised sector, the ten practices are the same and two things change: the evidence you keep, and who signs. Supervisors do not ask whether you have a data quality tool. They ask you to show that a named person is accountable, that the control ran on the day in question, and that the failure was followed by a fix. The Basel Committee Principles for effective risk data aggregation and risk reporting, published in January 2013 and still current, is the clearest statement of the expectation: fourteen principles of which principles 3 to 6 cover the data itself, and principle 5 on timeliness explicitly ties itself back to accuracy and integrity, completeness and adaptability rather than treating any of them separately.

Practically that means three additions. Retain the check results, not just the incidents, so you can show a control ran on a given date. Keep the recertification minutes with the sponsor signature, because the tier list is the scope of your control and a supervisor will ask how it was set. And record lineage from the reported figure back to its sources, since the question is rarely whether a number is right today, it is whether you can demonstrate where it came from. Decube customers in supervised markets face this from OJK in Indonesia, APRA in Australia, MAS in Singapore and the NAIC insurance framework in the United States, and in every case the evidence requirement is the same shape.

Prioritizing Data Quality Management: Which of the Ten to Do First

Ten practices is too many to start with and they are not equal. If you have none of this today, build three, in this order, and leave the rest until they are habits.

  • Start with practice 1, ownership. A tier list and a name against every tier 1 table. It needs no budget and no tool, it takes about a week, and every other practice routes through it.
  • Then practice 4, the severity ladder. Four levels with response times, agreed and written down before your next incident. This is an hour of argument that saves the argument happening during an outage.
  • Then practice 3, the weekly review. Forty five minutes in the calendar with the owners in the room. The meeting is what turns the first two into something that persists after the person who started it moves on.

Checks, tooling and measurement follow naturally once those three exist, and they follow badly if they do not. A team that buys a platform first ends up with monitors on two thousand tables, alerts arriving in a channel with no owner, and a quarterly report counting how many checks it has. That is the failure this article is written against.

The reason to take the sequence seriously is that overlooking data quality does not produce a data problem, it produces a decision problem: reports that are believed and wrong, revenue recognized against duplicates, and models trained on a field that stopped updating in March. Decube brings the catalog, the lineage, the checks and the incident workflow into one platform so that ownership, severity and impact live in the same place rather than in three tools and a spreadsheet. If you want to see the incident and scorecard workflow against your own tables, request a Decube demo.

Frequently Asked Questions

What are the best practices for data quality management?

Ten practices describe a data quality program as an operating routine rather than a list of activities: give every tier 1 table a named owner before writing any check; write the standard as checks against named tables rather than as a policy document; run a fixed cadence of daily triage, a weekly review, a monthly producer review and a quarterly recertification; set a four level severity ladder with a response time for each level; handle every incident with the same five step runbook; fix the source rather than the warehouse copy; measure the program with five numbers rather than counting checks; retire any check that fires and is ignored; publish a data contract the consumer can read; and put data quality in the definition of done for the teams that produce the data.

How do you ensure data quality?

By making the standard executable and giving it an owner. A rule written in a document is a wish; the same rule expressed as a test that runs on a schedule and returns the rows that failed is a control. So translate each business rule into a check against a named table and column, attach every tier 1 table to a named person rather than a team alias, route alerts to that person by severity, and review the results in a fixed weekly slot. The three components that make it hold are ownership, a schedule the checks run on, and a severity ladder that decides who responds and how quickly.

What are the steps in a data quality process?

For an incident there are five, always in the same order: contain the problem by pausing the pipeline and marking the affected dashboard as unavailable; tell the consumers what is wrong and when the next update will come; find the cause by reading the failing rows and walking the lineage upstream to the first place the value was wrong; fix the source and backfill the affected window, confirming the check passes before declaring it resolved; and write it up in fifteen minutes, recording why the existing checks did not catch it and the one check that would have. The last step is where the program improves, because the incidents nobody had a check for are the list of what to build next.

How do you improve data quality?

Improve the trend by fixing where the data is produced, not where it is consumed. Cleaning a value in the warehouse repairs one report, while fixing the form field, the API validation or the upstream job repairs every consumer of that field at once. Give those fixes a standing route through a monthly review with the producing team, record in every incident write up where the value first went wrong so you can show a ranked list rather than an anecdote, and add two rules to the producing team definition of done: a schema change on a tier 1 source tells the consuming owner before it ships, and a new field is not finished until it has a check.

What is a data quality procedure and what should it contain?

A data quality procedure is the written routine a team follows, and it needs four parts to be usable. A tier list classifying every table by what depends on it, with a named owner against each tier 1 table. A check inventory naming the table and column each rule applies to, with a one line reason saying what breaks downstream if it fails. A severity ladder of four levels, each with a response time and a route. And a meeting cadence with time budgets: fifteen minutes of daily triage, forty five minutes of weekly review, thirty minutes monthly with the producers, and sixty minutes of quarterly recertification.

How do you know a data quality program is working?

Five numbers answer that, and none of them is the count of checks. Tier 1 coverage, the share of tier 1 tables with a named owner and at least one check per applicable dimension, which should reach 100 percent within a quarter. Time to detect, the median time from a value going wrong to an alert firing, which should be under one pipeline cycle. Time to resolve, from alert to the check passing on corrected data. Escaped defects, the incidents a consumer reported before any check caught them, which should fall every quarter. And alert precision, the share of alerts that led to an action, which should stay above 70 percent, because below about 50 percent people have already stopped reading the channel.

What does regulatory data quality management require?

The same ten practices plus evidence and a signature. A supervisor does not ask whether you own a data quality tool; they ask you to show that a named person was accountable, that the control ran on the date in question, and that a failure was followed by a fix. That means retaining the check results rather than only the incidents, keeping the quarterly recertification minutes with the sponsor signature because the tier list is the scope of your control, and recording lineage from a reported figure back to its sources. The Basel Committee Principles for effective risk data aggregation and risk reporting, published in January 2013 and still current, set the expectation for banks in fourteen principles, of which principles 3 to 6 cover the data itself.

What data quality and governance do you need before deploying AI agents on your data?

Treat it as a certification gate rather than a project. Before an agent is allowed to read a table, that table should be tier 1 or tier 2 with a named owner, carry freshness, volume and schema drift monitoring so a silent stall is detected, have its sensitive columns classified so the agent cannot surface what a person could not, and publish a contract stating update time and guaranteed fields. Add one rule specific to agents: an agent reads only tables that pass their checks on the most recent run, so a failing check withdraws access rather than merely raising an alert, because an agent will not notice that a number looks wrong.

Is Atlan worth it?
Atlan is worth it if your primary need is a modern data catalog with strong column-level lineage and cloud-native integrations (Snowflake, dbt, Databricks). It is harder to justify if you also need data observability and quality coverage across a heterogeneous stack — those capabilities require separate vendors, adding cost and complexity.
What is the best Atlan alternative
Decube is purpose-built for regulated financial services, with native observability, approval-gated lineage, PII auto-classification, and an AI layer (TrustyAI) that does not route metadata to a public LLM. These map directly to regulatory frameworks supervised by MAS, OJK, BNM, and APRA. Atlan AI's OpenAI dependency is often a procurement blocker in these environments.
How does Atlan compare to Alation?
Both are catalog-first platforms with strong discovery. Alation pioneered search-first data culture and analyst adoption. Atlan is stronger on column-level lineage and cloud integrations. Both require external tooling for observability and broad data quality coverage.
How long does it take to migrate from Atlan to another platform?
Migration time depends on estate size and the number of active integrations. SaaS-native platforms like Decube deploy in 2–6 weeks without professional services. The longer task is typically re-establishing business glossaries, data ownership, and custom attributes — that effort is roughly the same regardless of which platform you move to.
What is the difference between a context layer and a semantic layer?
A semantic layer standardizes how metrics are defined and calculated so every analyst and BI tool uses the same numbers. A context layer encodes governance rules, data lineage, quality signals, and organizational knowledge so AI agents can make safe, autonomous decisions. The semantic layer is for human-facing analytics. The context layer is for AI-facing autonomy.
Can I use a semantic layer without a context layer?
Yes - and most organizations do today. If your primary consumers are human analysts using BI tools, a semantic layer alone is sufficient. The context layer becomes essential when you introduce AI agents that need to understand not just what a metric means but whether and how they are allowed to use it.
Is a context layer the same as a data catalog?
No. A data catalog is a component of a context layer. The catalog inventories data assets and stores metadata. The context layer activates that metadata by delivering it to AI agents at query time through APIs and MCP connections. Modern platforms like Atlan extend catalog functionality into full context layer infrastructure.
Which tool implements a context layer?
Purpose-built context layer platforms include Decube, which combines catalog, lineage, quality, and governance into a metadata layer that delivers context to AI agents via MCP. You can also build a context layer on custom infrastructure using a vector database (for semantic search), a knowledge graph
How long does it take to implement a context layer?
Most enterprise context layer implementations take 8–16 weeks when using a purpose-built platform like Atlan. Building from scratch on custom infrastructure typically takes 6–12 months. The timeline depends heavily on how much governance metadata already exists and how many data sources need to be connected.
What is Data Context?
Data Context is the information that explains what data means, where it comes from, how it is transformed, whether it can be trusted, and how it should be used. It combines metadata, lineage, data quality, and governance so people and systems can confidently use data for analytics, reporting, and AI.
How is Data Context different from metadata?
Metadata describes data, while Data Context makes data usable and trustworthy. Metadata provides definitions, ownership, and technical details. Data Context extends this by adding lineage, quality signals, and governance rules, creating a complete, operational understanding of data.
Why is Data Context important for AI?
AI systems require Data Context to interpret data correctly, safely, and reliably. Without context, AI models may misunderstand metrics, use stale or incorrect data, or expose sensitive information. Data Context ensures AI uses trusted, well-defined, and policy-compliant data.
How does data lineage contribute to Data Context?
Data lineage provides visibility into how data flows and transforms across systems. It shows upstream sources, downstream dependencies, and transformation logic, enabling impact analysis, root-cause investigation, and confidence in reported numbers.
How do organizations build Data Context in practice?
Organizations build Data Context by unifying metadata, lineage, observability, and governance into a single operational layer. This includes defining business meaning, capturing end-to-end lineage, monitoring data quality, and enforcing usage policies directly within data workflows.
What is Context Engineering?
Context Engineering is the practice of designing and operationalizing business meaning, data lineage, quality signals, ownership, and policy constraints so that both humans and AI systems can reliably understand and act on enterprise data. Unlike traditional metadata management, Context Engineering focuses on decision-grade context that can be consumed programmatically by AI agents in real time.
How is Context Engineering different from prompt engineering?
Prompt engineering focuses on how questions are phrased for an AI model, while Context Engineering focuses on what the AI system already knows before a question is asked. In enterprise environments, context includes data definitions, lineage, quality, and usage constraints—making Context Engineering foundational for trustworthy and scalable Agentic AI.
Why is Context Engineering critical for Agentic AI?
Agentic AI systems reason, decide, and act autonomously across multiple systems. Without engineered context—such as trusted data meaning, lineage, and real-time quality signals—agents cannot assess risk or impact correctly. Context Engineering ensures AI agents act safely, explain decisions, and know when to pause or escalate.
What are the core components of Context Engineering?
The four core components of Context Engineering are: Semantic context (business meaning and definitions) Lineage context (end-to-end data flow and dependencies) Operational context (data quality and reliability signals) Policy context (privacy, compliance, and usage constraints) Together, these form a unified context layer that supports enterprise decision-making and AI automation
How should enterprises prepare for Context Engineering?
Enterprises should follow a phased approach: Inventory critical data and trust gaps Unify metadata, lineage, quality, and policy into a single context layer Expose context through APIs for AI agent consumption By 2026, this foundation will be essential for deploying Agentic AI at scale with confidence and auditability.
How do you measure the ROI of a data catalog?
ROI is measured by comparing the quantifiable benefits (such as reduced data search time, fewer data quality issues, and lower compliance effort) against the total costs (implementation, licensing, and support). Typical metrics include time savings, productivity gains, and compliance cost reduction.
What is a data catalog and why is it important for ROI?
A data catalog is a centralized inventory of data assets enriched with metadata that helps users find, understand, and trust data across an organization. It improves data discovery, reduces search time, and enhances collaboration — all of which contribute to measurable ROI by cutting operational costs and accelerating insights.
How quickly can businesses see ROI after implementing a data catalog?
Time-to-value varies with deployment and adoption, but many organizations begin seeing measurable improvements in days to months, especially through faster data discovery and reduced compliance effort. Early wins in these areas can quickly justify the investment.
What factors should you include when calculating the ROI of a data catalog?
When calculating ROI, include: Implementation and training costs Recurring maintenance and licensing fees Savings from reduced data search and rework Compliance cost reductions Productivity and decision-making improvements This ensures a holistic view of both costs and benefits.
How does a data catalog support data governance and compliance ROI?
A data catalog enhances governance by classifying data, enforcing rules, and providing transparency. This reduces regulatory risk and compliance effort, leading to direct cost savings and stronger data trust.
What is data lineage?
Data lineage shows where data comes from, how it moves, and how it changes across systems. It helps teams understand the full journey of data—from source to final reports or AI models.
Why is data lineage important for modern data teams?
Data lineage builds trust in data by making it transparent and explainable. It helps teams troubleshoot issues faster, assess impact before changes, meet compliance requirements, and confidently use data for analytics and AI.
What are the different types of data lineage?
Common types of data lineage include: Technical lineage – Tracks data movement at table and column level. Business lineage – Connects data to business definitions and metrics. Operational lineage – Shows how pipelines and jobs process data. End-to-end lineage – Combines all of the above across systems.
Is data lineage only useful for compliance?
No. While data lineage is critical for audits and regulatory compliance, it is equally valuable for debugging data issues, impact analysis, cost optimization, and AI readiness.
How does data lineage help with data quality?
Data lineage helps identify where data quality issues originate and which reports or dashboards are affected. This reduces time spent on root-cause analysis and improves accountability across data teams.
What is Metadata Management?
Metadata management involves the management and organization of data about data to enhance data governance, data asset quality, and compliance.
What are the key points of Metadata Management?
Metadata management involves defining a metadata strategy, establishing roles and policies, choosing the right metadata management tool, and maintaining an ongoing program.
How does Metadata Management work?
Metadata management is essential for improving data quality and relevance, utilizing metadata management tools, and driving digital transformation.
Why is Metadata Management important for businesses?
Metadata management is important for better data quality, usability, data insights, compliance adherence, and improved accuracy in data cataloging.
How should companies evolve their approach to Metadata Management?
Companies should manage all types of metadata across different environments, leverage intelligent methods, and follow best practices to maximize data investments.
What is a data definition example?
A data definition example could be: “Customer: a person or entity that has made at least one purchase within the past year.” It clearly sets business meaning and inclusion criteria.
Why is data definition important in data governance?
It ensures everyone interprets data consistently, reducing ambiguity and improving compliance, reporting, and collaboration.
Who should own data definitions?
Ownership should be shared between business domain experts (for context) and data stewards (for technical accuracy).
How often should data definitions be reviewed?
Ideally quarterly or whenever there’s a structural change in business logic, data models, or product offerings.
What’s the difference between data definition and data catalog?
A data catalog inventories data assets; data definition explains what those assets mean. Combined, they create full visibility and trust.
Why is Data Lineage important for businesses?
Data Lineage provides transparency and trust in your data ecosystem. It helps organizations ensure data accuracy, simplify root-cause analysis during data quality issues, and maintain compliance with regulations like GDPR or SOX. By understanding data flows, teams can make faster, more reliable decisions and improve overall data governance.
What are the key components of Data Lineage?
The main components of Data Lineage include: Data Sources: Where the data originates (databases, APIs, files). Transformations: How data is processed or modified. Data Pipelines: The tools or systems that move data. Destinations: Where the data is stored or consumed (dashboards, reports, models). Metadata: The contextual details that describe each step in the data’s lifecycle.
How does Data Lineage support Data Governance and AI readiness?
Data Lineage acts as the foundation for strong data governance by providing visibility into data ownership, transformation logic, and usage. For AI initiatives, lineage ensures that models are trained on accurate and traceable data, making AI outputs more explainable and trustworthy. Platforms like Decube’s Data Trust Platform unify lineage with data quality and metadata management to help enterprises achieve AI readiness.
What tools are commonly used for Data Lineage?
Several tools help automate and visualize data lineage, such as Decube, Atlan, Alation, Collibra, and OpenLineage. These tools connect to data warehouses, ETL pipelines, and BI tools to automatically map relationships between datasets — saving time and reducing manual effort.
What is Data Lineage?
Data Lineage is the process of tracking how data moves and transforms across an organization — from its origin to its final destination. It shows where data comes from, how it changes through different systems or pipelines, and where it ends up being used. In short, data lineage helps you visualize the journey of your data.
What does “data context” mean?
Data context refers to the semantic, structural, and business information that surrounds raw data. It explains what data means, where it comes from, who owns it, and how it should be used.
What is a centralized LLM framework?
It’s an enterprise-wide system where all departments access AI through a shared platform, equipped with guardrails, context layers, and multimodal capabilities.
What are guardrails in AI?
Guardrails are controls—policies, access restrictions, and compliance checks—that ensure AI outputs are secure, ethical, and aligned with enterprise goals.
How does data context affect ROI in AI?
Models trained or prompted with contextualized data deliver outputs that are relevant, trustworthy, and actionable—leading to faster adoption and higher business value.
What is MCP (Model Context Protocol) and why does it matter?
MCP defines how models interact with external tools and data sources. Feeding it with strong context ensures the AI agent can act accurately and responsibly.
What is a Data Trust Platform in financial services?
A Data Trust Platform is a unified framework that combines data observability, governance, lineage, and cataloging to ensure financial institutions have accurate, secure, and compliant data. In banking, it enables faster regulatory reporting, safer AI adoption, and new revenue opportunities from data products and APIs.
Why do AI initiatives fail in Latin American banks and fintechs?
Most AI initiatives in LATAM fail due to poor data quality, fragmented architectures, and lack of governance. When AI models are fed stale or incomplete data, predictions become inaccurate and untrustworthy. Establishing a Data Trust Strategy ensures models receive fresh, auditable, and high-quality data, significantly reducing failure rates.
What are the biggest data challenges for financial institutions in LATAM?
Key challenges include: Data silos and fragmentation across legacy and cloud systems. Stale and inconsistent data, leading to poor decision-making. Complex compliance requirements from regulators like CNBV, BCB, and SFC. Security and privacy risks in rapidly digitizing markets. AI adoption bottlenecks due to ungoverned data pipelines.
How can banks and fintechs monetize trusted data?
Once data is governed and AI-ready, institutions can: Reduce OPEX with predictive intelligence. Offer hyper-personalized products like ESG loans or SME financing. Launch data-as-a-product (DaaP) initiatives with anonymized, compliant data. Build API-driven ecosystems with partners and B2B customers.
What is data dictionary example?
A data dictionary is a centralized repository that provides detailed information about the data within an organization. It defines each data element—such as tables, columns, fields, metrics, and relationships—along with its meaning, format, source, and usage rules. Think of it as the “glossary” of your data landscape. By documenting metadata in a structured way, a data dictionary helps ensure consistency, reduces misinterpretation, and improves collaboration between business and technical teams. For example, when multiple teams use the term “customer ID”, the dictionary clarifies exactly how it is defined, where it is stored, and how it should be used. Modern platforms like Decube extend the concept of a data dictionary by connecting it directly with lineage, quality checks, and governance—so it’s not just documentation, but an active part of ensuring data trust across the enterprise.
What is an MCP Server?
An MCP Server stands for Model Context Protocol Server—a lightweight service that securely exposes tools, data, or functionality to AI systems (MCP clients) via a standardized protocol. It enables LLMs and agents to access external resources (like files, tools, or APIs) without custom integration for each one. Think of it as the “USB-C port for AI integrations.”
How does MCP architecture work?
The MCP architecture operates under a client-server model: MCP Host: The AI application (e.g., Claude Desktop or VS Code). MCP Client: Connects the host to the MCP Server. MCP Server: Exposes context or tools (e.g., file browsing, database access). These components communicate over JSON‑RPC (via stdio or HTTP), facilitating discovery, execution, and contextual handoffs.
Why does the MCP Server matter in AI workflows?
MCP simplifies access to data and tools, enabling modular, interoperable, and scalable AI systems. It eliminates repetitive, brittle integrations and accelerates tool interoperability.
How is MCP different from Retrieval-Augmented Generation (RAG)?
Unlike RAG—which retrieves documents for LLM consumption—MCP enables live, interactive tool execution and context exchange between agents and external systems. It’s more dynamic, bidirectional, and context-aware.
What is a data dictionary?
A data dictionary is a centralized repository that provides detailed information about the data within an organization. It defines each data element—such as tables, columns, fields, metrics, and relationships—along with its meaning, format, source, and usage rules. Think of it as the “glossary” of your data landscape. By documenting metadata in a structured way, a data dictionary helps ensure consistency, reduces misinterpretation, and improves collaboration between business and technical teams. For example, when multiple teams use the term “customer ID”, the dictionary clarifies exactly how it is defined, where it is stored, and how it should be used. Modern platforms like Decube extend the concept of a data dictionary by connecting it directly with lineage, quality checks, and governance—so it’s not just documentation, but an active part of ensuring data trust across the enterprise.
What is the purpose of a data dictionary?
The primary purpose of a data dictionary is to help data teams understand and use data assets effectively. It provides a centralized repository of information about the data, including its meaning, origins, usage, and format, which helps in planning, controlling, and evaluating the collection, storage, and use of data.
What are some best practices for data dictionary management?
Best practices for data dictionary management include assigning ownership of the document, involving key stakeholders in defining and documenting terms and definitions, encouraging collaboration and communication among team members, and regularly reviewing and updating the data dictionary to reflect any changes in data elements or relationships.
How does a business glossary differ from a data dictionary?
A business glossary covers business terminology and concepts for an entire organization, ensuring consistency in business terms and definitions. It is a prerequisite for data governance and should be established before building a data dictionary. While a data dictionary focuses on technical metadata and data objects, a business glossary provides a common vocabulary for discussing data.
What is the difference between a data catalog and a data dictionary?
While a data catalog focuses on indexing, inventorying, and classifying data assets across multiple sources, a data dictionary provides specific details about data elements within those assets. Data catalogs often integrate data dictionaries to provide rich context and offer features like data lineage, data observability, and collaboration.
What challenges do organizations face in implementing data governance?
Common challenges include resistance from business teams, lack of clear ownership, siloed systems, and tool fragmentation. Many organizations also struggle to balance strict governance with data democratization. The right approach involves embedding governance into workflows and using platforms that unify governance, observability, and catalog capabilities.
How does data governance impact AI and machine learning projects?
AI and ML rely on high-quality, unbiased, and compliant data. Poorly governed data leads to unreliable predictions and regulatory risks. A governance framework ensures that data feeding AI models is trustworthy, well-documented, and traceable. This increases confidence in AI outputs and makes enterprises audit-ready when regulations apply.
What is data governance and why is it important?
Data governance is the framework of policies, ownership, and controls that ensure data is accurate, secure, and compliant. It assigns accountability to data owners, enforces standards, and ensures consistency across the organization. Strong governance not only reduces compliance risks but also builds trust in data for AI and analytics initiatives.
What is the difference between a data catalog and metadata management?
A data catalog is a user-facing tool that provides a searchable inventory of data assets, enriched with business context such as ownership, lineage, and quality. It’s designed to help users easily discover, understand, and trust data across the organization. Metadata management, on the other hand, is the broader discipline of collecting, storing, and maintaining metadata (technical, business, and operational). It involves defining standards, policies, and processes for metadata to ensure consistency and governance. In short, metadata management is the foundation—it structures and governs metadata—while a data catalog is the application layer that makes this metadata accessible and actionable for business and technical users.
What features should you look for in a modern data catalog?
A strong catalog includes metadata harvesting, search and discovery, lineage visualization, business glossary integration, access controls, and collaboration features like data ratings or comments. More advanced catalogs integrate with observability platforms, enabling teams to not only find data but also understand its quality and reliability.
Why do businesses need a data catalog?
Without a catalog, employees often struggle to find the right datasets or waste time duplicating efforts. A data catalog solves this by centralizing metadata, providing business context, and improving collaboration. It enhances productivity, accelerates analytics projects, reduces compliance risks, and enables data democratization across teams.
What is a data catalog and how does it work?
A data catalog is a centralized inventory that organizes metadata about data assets, making them searchable and easy to understand. It typically extracts metadata automatically from various sources like databases, warehouses, and BI tools. Users can then discover datasets, understand their lineage, and see how they’re used across the organization.
What are the key features of a data observability platform?
Modern platforms include anomaly detection, schema and freshness monitoring, end-to-end lineage visualization, and alerting systems. Some also integrate with business glossaries, support SLA monitoring, and automate root cause analysis. Together, these features provide a holistic view of both technical data pipelines and business data quality.
How is data observability different from data monitoring?
Monitoring typically tracks system metrics (like CPU usage or uptime), whereas observability provides deep visibility into how data behaves across systems. Observability answers not only “is something wrong?” but also “why did it go wrong?” and “how does it impact downstream consumers?” This makes it a foundational practice for building AI-ready, trustworthy data systems.
What are the key pillars of Data Observability?
The five common pillars include: Freshness, Volume, Schema, Lineage, and Quality. Together, they provide a 360° view of how data flows and where issues might occur.
What is Data Observability and why is it important?
Data observability is the practice of continuously monitoring, tracking, and understanding the health of your data systems. It goes beyond simple monitoring by giving visibility into data freshness, schema changes, anomalies, and lineage. This helps organizations quickly detect and resolve issues before they impact analytics or AI models. For enterprises, data observability builds trust in data pipelines, ensuring decisions are made with reliable and accurate information.

Table of Contents

Read other blog articles

Grow with our latest insights

Sneak peek from the data world.

Thank you! Your submission has been received!
Talk to a designer