Most conversations about deploying AI in a real business eventually arrive at the same line: get your data foundation in order first. It shows up in board decks, in vendor pitches, in internal strategy docs, and it's rarely disputed.
That's harder than it sounds. Dun & Bradstreet's Q3 2026 AI Momentum Survey, a poll of 10,000 businesses across 32 countries, found that more than three-quarters of enterprises now report some measurable ROI from AI, but only 6% say their data is fully ready to support AI at scale.
At Stackpoint, we break that work into three distinct jobs: centralize, normalize, and organize. Treating them as one initiative hides three different problems, each with its own failure mode: an agent citing a stale contract, a permissions leak nobody notices until a customer does, a rebuild eighteen months in because the schema never existed in the first place.
Here's what each of those jobs involves, why the boundaries between them matter, and what's worth building versus buying.
1. Three jobs, not one
Centralize. Institutional knowledge and operational data accumulate by default in the places nobody designed for that purpose: individual inboxes, meeting transcripts, a folder of decks, whatever tool a given team adopted on its own. None of that is wrong to use day to day. The problem is that none of it is queryable as a single source, so every new AI use case that needs it either can't reach it or builds its own one-off pipeline to get there. Centralizing means putting that knowledge somewhere any authorized person or system can query directly, with attribution to where each piece of it came from and when.
The hard part is that the data already lives everywhere, in systems with different interfaces, formats, permissions, and owners. Getting it into one place isn't just an ingestion problem: someone has to decide what belongs there, and whoever owns each source has to agree to make it available.
Normalize. Here, that means making data from different systems consistent and machine-usable. This is the less visible half of "centralize," and the half most teams skip. A pile of documents in one place is not a data layer. What makes it usable is a shared schema and tagging convention underneath it: consistent metadata across sources, a field for provenance, a field for recency, and deduplication logic so the same fact pulled from three sources doesn't produce three conflicting answers.
The difficulty is that much of the useful information was never structured to begin with. A contract expresses a term differently from a CRM record, and turning those sources into consistent, machine-usable data means extracting the right meaning without flattening away the context that made it useful in the first place.
Skip this step and centralizing just moves the mess into one location instead of five. It looks like progress and isn't.
Organize. This is about access, not arrangement: deciding who, and now which AI systems, can see each piece of data. It's hard because the boundaries keep moving: roles change, contractors leave, and sources that once seemed harmless start feeding sensitive workflows. Access that was correct yesterday can be wrong tomorrow. This has to reach downstream of the raw data too: an agent with read access to a sensitive source can leak it through a summary even when the summary itself never touches a restricted system. Both extremes are expensive. Too permissive, and a sensitive contract term ends up in a report it was never meant to be in. Too restrictive, and the instinct to protect anything sensitive walls off data that would have been safe, and useful, to share at the right scope.
Teams that treat these as one step usually stop at the first one. They get everything into a single place and call it done, because centralizing is the part that's visible and demoable. Normalizing and organizing are the parts that don't show up until something breaks.
2. Why this is where AI initiatives stall
Deloitte's 2026 State of AI in the Enterprise report finds a version of the same gap from a different angle: confidence in AI strategy is rising, but it drops sharply the moment the question turns to infrastructure, data management, and governance.
As The 95% Problem covers in more depth, multiple studies published across 2025 and 2026 point to a related pattern: many generative AI pilots struggle for reasons that have little to do with model quality. The tools can't hold context, don't improve from feedback, and don't adapt to how the work runs. None of that is a model problem. It's a data and integration problem, under a different name.
The cost of skipping it doesn't show up immediately, which is what makes it easy to defer. This pattern repeats across organizations that skip the work: an agent gets loose access to email, contracts, and CRM data with no shared schema and no access tiering, and it answers correctly for a while. Then it cites a stale version of a contract, because nothing tracked recency. Or it surfaces a customer's payment terms to someone who shouldn't see them, because access was granted at the tool level instead of the data level. By the time that surfaces, the business already depends on the fragile version, and the fix is a rebuild instead of a patch.
3. Two principles worth building around
Two things separate a data foundation that holds up from one that gets rebuilt in a year.
Fine-grained access protects and unlocks value at the same time. The instinct with sensitive data (financials, personnel records, customer contracts) is to wall it off entirely. That solves the protection problem and creates a new one: everything behind the wall becomes unusable to the rest of the organization, including the parts of it that were never sensitive. Solving access at a finer grain than "everyone or no one" removes that tradeoff. The same source can be protected against the exposure that matters and available for the reuse that's safe.
Data outlasts models, so build for the data first. The model layer is moving fast enough that, in most cases, whatever model an organization uses today is unlikely to stay the best option for long, and there's a reasonable chance it won't stay the cheapest option for the same accuracy either. A data foundation with a real schema, source attribution, and an access model built around the organization's actual trust boundaries survives every model swap that follows. The data and access layer is the durable asset. Whatever model sits on top of it is a replaceable component, not the foundation itself.
4. What to do
Four steps, roughly in order.
Inventory. Find out what data exists and where it actually lives, as opposed to where people assume it lives. This step alone surfaces most of the fragmentation: the same customer fact tracked in three tools with three different values, a contract repository nobody remembers is the real source of truth versus the folder everyone uses day to day.
Define the schema and tagging conventions. This is where "normalize" stops being an abstraction. At minimum: consistent metadata across sources, a field for where a given fact came from, a field for how current it is, and a deduplication rule for when the same fact shows up more than once. This is the work that makes everything built afterward reliable instead of confidently wrong.
Set access tiers, then map real data into them. Three tiers cover most organizations to start: data that's universally protected regardless of who's asking, data scoped to a specific group or role, and data that's broadly available across the organization. The tiers matter less than mapping every real data source into one of them, instead of defaulting everything into "restricted" or "open" by habit. Include downstream outputs in this mapping, not just the raw sources: a summary or report generated from restricted data inherits the restriction.
Decide what to build and what to buy. For most organizations, storage, vector search, and ingestion tooling are increasingly commodity: multiple vendors solve those problems well today, and there's little reason to build them from scratch. The schema, the tagging conventions, and the access model that reflect how a specific organization needs to protect and share its data are different. That part is usually worth building, because it's specific to the organization's trust boundaries, not a generic infrastructure problem a vendor has already solved.
5. Signs it's actually working
The foundation is easy to claim and hard to verify. A few concrete signals are worth checking for, rather than taking "we centralized our data" at face value.
More than one team or workflow pulls from the same data layer, instead of each one standing up its own pipeline to the same underlying sources. Nobody can point to two systems giving two different answers to the same question, because there's one normalized source instead of five loosely synced copies. Onboarding a new data source is routine work, handled through the existing schema and access tiers, rather than a special project each time. And when access needs change (someone joins, a contractor's engagement ends, a role shifts) that change propagates everywhere it needs to, instead of requiring someone to hand-track every place it has to be updated.
If none of these hold, the foundation isn't in place yet, no matter how much data has technically been moved into one location.
6. Where teams go wrong
The same handful of mistakes show up across organizations that skip this work.
They build the agent before the data layer exists, because the agent is the visible, demoable part and the data layer isn't. It works in the demo and breaks in production, for reasons that trace back to data it was never built to get right.
They settle for one vector store, with no schema or tagging convention underneath it.
They treat access control as all-or-nothing: locked down hard enough that half the organization can't use it, or open enough that a summary generated for one audience leaks a detail meant for another.
They hard-wire to whichever model or vendor the prototype happened to use, and pay for it every time a better or cheaper option ships and the architecture has no way to route to it.
7. The bottom line
“Centralize, normalize, organize your data" is the part of the AI work that determines whether everything built on top of it holds up or gets rebuilt. Getting it right means treating data as three separate problems, solving access at a fine enough grain that protection and reuse both survive, and building the foundation to outlast whatever model happens to sit on it today.
Do this well once, and every agent, workflow, and use case that comes after inherits a foundation instead of rebuilding one.
It's the same discipline we build into every company we help start.
Stackpoint is a venture studio that co-founds and funds B2B agentic AI companies in complex, high-barrier industries. We launch and invest in four companies per year, alongside operator design partners who help shape the product from day one.
If your organization is earlier in this work than you'd like to be, we'd love to talk.

