Merge vault changes and clean Obsidian local files
This commit is contained in:
+2
-2
@@ -1,3 +1,3 @@
|
||||
|
||||
**/.DS_Store
|
||||
/.obsidian/workspace.json
|
||||
/.DS_Store
|
||||
/.DS_Store
|
||||
|
||||
Vendored
BIN
Binary file not shown.
@@ -0,0 +1,766 @@
|
||||
**Estimated reading time:** 12–15 minutes
|
||||
|
||||
## Definition
|
||||
|
||||
**Data Governance** is the framework of **people, processes, policies, and standards** that ensures data is:
|
||||
|
||||
- Accurate
|
||||
|
||||
- Consistent
|
||||
|
||||
- Secure
|
||||
|
||||
- Trusted
|
||||
|
||||
- Well-defined
|
||||
|
||||
- Properly managed throughout its lifecycle
|
||||
|
||||
|
||||
A common misconception is:
|
||||
|
||||
> "Data Governance is about data."
|
||||
|
||||
It isn't.
|
||||
|
||||
> **Data Governance is about how an organization manages its data.**
|
||||
|
||||
Think of it this way:
|
||||
|
||||
The data itself doesn't become trustworthy.
|
||||
|
||||
The **organization makes it trustworthy**.
|
||||
|
||||
---
|
||||
|
||||
## Simple Mental Model
|
||||
|
||||
Think of Data Governance as the rules of a city.
|
||||
|
||||
The city already exists.
|
||||
|
||||
People already drive.
|
||||
|
||||
Buildings already exist.
|
||||
|
||||
Governance answers questions like:
|
||||
|
||||
- Who owns this road?
|
||||
|
||||
- Who can build here?
|
||||
|
||||
- Who maintains the traffic lights?
|
||||
|
||||
- What happens if something breaks?
|
||||
|
||||
- Who decides the speed limit?
|
||||
|
||||
|
||||
Without those rules, the city still functions…
|
||||
|
||||
...just not very well.
|
||||
|
||||
Data is the same.
|
||||
|
||||
---
|
||||
|
||||
## How It Works
|
||||
|
||||
Data Governance is built around several fundamental pillars.
|
||||
|
||||
```text
|
||||
DATA GOVERNANCE
|
||||
|
||||
┌────────────────────┐
|
||||
│ Business Ownership │
|
||||
└────────────────────┘
|
||||
│
|
||||
▼
|
||||
Shared Definitions
|
||||
│
|
||||
▼
|
||||
Data Quality
|
||||
│
|
||||
▼
|
||||
Data Security
|
||||
│
|
||||
▼
|
||||
Data Lineage
|
||||
│
|
||||
▼
|
||||
Metadata
|
||||
│
|
||||
▼
|
||||
Stewardship
|
||||
```
|
||||
|
||||
These pillars work together.
|
||||
|
||||
Weakness in one usually affects the others.
|
||||
|
||||
---
|
||||
|
||||
# Pillar 1 — Ownership
|
||||
|
||||
One of the first governance questions is:
|
||||
|
||||
> **Who owns this data?**
|
||||
|
||||
Not:
|
||||
|
||||
> Who built the report?
|
||||
|
||||
Not:
|
||||
|
||||
> Who manages SQL?
|
||||
|
||||
Ownership is a **business responsibility**, not a technical one.
|
||||
|
||||
Example:
|
||||
|
||||
```text
|
||||
Employee Data
|
||||
```
|
||||
|
||||
Owner:
|
||||
|
||||
Human Resources
|
||||
|
||||
Not IT.
|
||||
|
||||
Example:
|
||||
|
||||
```text
|
||||
Financial Data
|
||||
```
|
||||
|
||||
Owner:
|
||||
|
||||
Finance.
|
||||
|
||||
Not the DBA.
|
||||
|
||||
IT manages systems.
|
||||
|
||||
The business owns the meaning.
|
||||
|
||||
---
|
||||
|
||||
## Example
|
||||
|
||||
Imagine your company has:
|
||||
|
||||
```text
|
||||
Unique Viewer
|
||||
```
|
||||
|
||||
Marketing says:
|
||||
|
||||
> "It's anyone who visits."
|
||||
|
||||
Product says:
|
||||
|
||||
> "It's anyone who watches."
|
||||
|
||||
Engineering says:
|
||||
|
||||
> "It's a unique device."
|
||||
|
||||
Who's correct?
|
||||
|
||||
Governance says:
|
||||
|
||||
> **There must be one owner responsible for defining the KPI.**
|
||||
|
||||
Without ownership:
|
||||
|
||||
Everyone has an opinion.
|
||||
|
||||
Nobody has responsibility.
|
||||
|
||||
---
|
||||
|
||||
# Pillar 2 — Business Definitions
|
||||
|
||||
Governance also answers:
|
||||
|
||||
> What exactly does this KPI mean?
|
||||
|
||||
For example:
|
||||
|
||||
Revenue.
|
||||
|
||||
Simple?
|
||||
|
||||
Not really.
|
||||
|
||||
Does Revenue mean:
|
||||
|
||||
- Gross Revenue
|
||||
|
||||
- Net Revenue
|
||||
|
||||
- Before refunds
|
||||
|
||||
- After refunds
|
||||
|
||||
- Before tax
|
||||
|
||||
- After tax
|
||||
|
||||
|
||||
Same word.
|
||||
|
||||
Potentially six different metrics.
|
||||
|
||||
This is why we studied [[Semantic Layer]].
|
||||
|
||||
A Semantic Layer implements business definitions.
|
||||
|
||||
Governance decides those definitions.
|
||||
|
||||
---
|
||||
|
||||
# Pillar 3 — Data Quality
|
||||
|
||||
Governance also asks:
|
||||
|
||||
Can we trust the data?
|
||||
|
||||
Quality includes things like:
|
||||
|
||||
Accuracy
|
||||
|
||||
Completeness
|
||||
|
||||
Consistency
|
||||
|
||||
Timeliness
|
||||
|
||||
Validity
|
||||
|
||||
Uniqueness
|
||||
|
||||
Example:
|
||||
|
||||
Suppose:
|
||||
|
||||
```text
|
||||
Platform
|
||||
|
||||
Roku
|
||||
roku
|
||||
ROKU
|
||||
Connected TV
|
||||
```
|
||||
|
||||
Technically valid?
|
||||
|
||||
Yes.
|
||||
|
||||
Business useful?
|
||||
|
||||
Not really.
|
||||
|
||||
Governance establishes standards.
|
||||
|
||||
---
|
||||
|
||||
# Pillar 4 — Security
|
||||
|
||||
Governance determines:
|
||||
|
||||
Who may access which data?
|
||||
|
||||
Examples:
|
||||
|
||||
HR salaries
|
||||
|
||||
Medical information
|
||||
|
||||
Financial forecasts
|
||||
|
||||
Personally identifiable information
|
||||
|
||||
Not everyone should access everything.
|
||||
|
||||
Governance establishes policies.
|
||||
|
||||
Technology enforces them.
|
||||
|
||||
---
|
||||
|
||||
# Pillar 5 — Data Lineage
|
||||
|
||||
As we learned in [[Data Lineage]], governance also requires understanding:
|
||||
|
||||
Where data came from
|
||||
|
||||
How it changed
|
||||
|
||||
Where it's used
|
||||
|
||||
Example:
|
||||
|
||||
```text
|
||||
Executive KPI
|
||||
|
||||
↓
|
||||
|
||||
Semantic Layer
|
||||
|
||||
↓
|
||||
|
||||
Fact Table
|
||||
|
||||
↓
|
||||
|
||||
Gold
|
||||
|
||||
↓
|
||||
|
||||
Silver
|
||||
|
||||
↓
|
||||
|
||||
Bronze
|
||||
|
||||
↓
|
||||
|
||||
Source System
|
||||
```
|
||||
|
||||
If you cannot explain where a KPI came from…
|
||||
|
||||
Governance is incomplete.
|
||||
|
||||
---
|
||||
|
||||
# Pillar 6 — Metadata
|
||||
|
||||
Metadata simply means:
|
||||
|
||||
> Data about data.
|
||||
|
||||
Examples:
|
||||
|
||||
Table owner
|
||||
|
||||
Description
|
||||
|
||||
Refresh schedule
|
||||
|
||||
Business definition
|
||||
|
||||
Data sensitivity
|
||||
|
||||
Last refresh
|
||||
|
||||
Source system
|
||||
|
||||
Without metadata:
|
||||
|
||||
People ask:
|
||||
|
||||
> "What does this table do?"
|
||||
|
||||
With metadata:
|
||||
|
||||
The answer already exists.
|
||||
|
||||
---
|
||||
|
||||
# Pillar 7 — Stewardship
|
||||
|
||||
Ownership and stewardship are different.
|
||||
|
||||
Owner
|
||||
|
||||
Responsible for:
|
||||
|
||||
Business meaning.
|
||||
|
||||
Steward
|
||||
|
||||
Responsible for:
|
||||
|
||||
Maintaining quality.
|
||||
|
||||
Example:
|
||||
|
||||
HR owns employee data.
|
||||
|
||||
A Data Steward may ensure:
|
||||
|
||||
Employee IDs are valid.
|
||||
|
||||
Departments exist.
|
||||
|
||||
Names follow standards.
|
||||
|
||||
Quality checks succeed.
|
||||
|
||||
---
|
||||
|
||||
## How It Fits Into the Bigger Picture
|
||||
|
||||
Everything you've learned now connects.
|
||||
|
||||
```text
|
||||
Source Systems
|
||||
|
||||
↓
|
||||
|
||||
[[ETL vs ELT]]
|
||||
|
||||
↓
|
||||
|
||||
[[Medallion Architecture]]
|
||||
|
||||
↓
|
||||
|
||||
Bronze
|
||||
|
||||
↓
|
||||
|
||||
Silver
|
||||
|
||||
↓
|
||||
|
||||
Gold
|
||||
|
||||
↓
|
||||
|
||||
[[Fact Table]]
|
||||
+
|
||||
[[Dimension Table]]
|
||||
|
||||
↓
|
||||
|
||||
[[Star Schema]]
|
||||
|
||||
↓
|
||||
|
||||
[[Semantic Layer]]
|
||||
|
||||
↓
|
||||
|
||||
Power BI
|
||||
|
||||
↓
|
||||
|
||||
Business Decisions
|
||||
|
||||
══════════════════════════════
|
||||
|
||||
[[Data Governance]]
|
||||
|
||||
applies across ALL layers.
|
||||
```
|
||||
|
||||
Governance isn't another technical layer.
|
||||
|
||||
It's a management framework that influences every layer.
|
||||
|
||||
---
|
||||
|
||||
## Governance vs Management
|
||||
|
||||
People often confuse:
|
||||
|
||||
Project Management
|
||||
|
||||
Data Management
|
||||
|
||||
Data Governance
|
||||
|
||||
Think:
|
||||
|
||||
Project Management -> Builds things.
|
||||
|
||||
Data Management -> Operates systems.
|
||||
|
||||
Data Governance -> Defines the rules.
|
||||
|
||||
Different responsibilities.
|
||||
|
||||
---
|
||||
|
||||
## Governance vs Data Quality
|
||||
|
||||
These are not the same.
|
||||
|
||||
Governance asks:
|
||||
|
||||
Should this data exist?
|
||||
|
||||
Who owns it?
|
||||
|
||||
Who defines it?
|
||||
|
||||
How should quality be measured?
|
||||
|
||||
Data Quality asks:
|
||||
|
||||
Is today's data actually good?
|
||||
|
||||
Governance creates expectations.
|
||||
|
||||
Quality measures whether those expectations were met.
|
||||
|
||||
---
|
||||
|
||||
## Governance vs Security
|
||||
|
||||
Governance says:
|
||||
|
||||
Finance salaries should only be visible to Finance leadership.
|
||||
|
||||
Security implements:
|
||||
|
||||
Active Directory
|
||||
|
||||
Azure AD
|
||||
|
||||
Permissions
|
||||
|
||||
Row-Level Security
|
||||
|
||||
Encryption
|
||||
|
||||
Governance defines policy.
|
||||
|
||||
Technology enforces it.
|
||||
|
||||
---
|
||||
|
||||
## My Company / Real-World Context
|
||||
|
||||
This lesson is probably the closest to your day-to-day job.
|
||||
|
||||
Think about your previous conversations with Marketing regarding demographics.
|
||||
|
||||
Marketing wanted:
|
||||
|
||||
Age
|
||||
|
||||
Gender
|
||||
|
||||
Unknown %
|
||||
|
||||
The disagreement wasn't technical.
|
||||
|
||||
It was governance.
|
||||
|
||||
Questions included:
|
||||
|
||||
- What does Unknown actually represent?
|
||||
|
||||
- Is the metric acceptable?
|
||||
|
||||
- Who owns the definition?
|
||||
|
||||
- Can it be improved?
|
||||
|
||||
- How should executives interpret it?
|
||||
|
||||
|
||||
Another example:
|
||||
|
||||
Imagine your two analysts create:
|
||||
|
||||
```text
|
||||
Completion Rate
|
||||
```
|
||||
|
||||
One uses:
|
||||
|
||||
95%.
|
||||
|
||||
Another uses:
|
||||
|
||||
90%.
|
||||
|
||||
Neither calculation is technically wrong.
|
||||
|
||||
Governance says:
|
||||
|
||||
Choose one.
|
||||
|
||||
Document it.
|
||||
|
||||
Implement it once.
|
||||
|
||||
Reuse it everywhere.
|
||||
|
||||
That is exactly what your team should eventually own.
|
||||
|
||||
---
|
||||
|
||||
## CTO Perspective
|
||||
|
||||
Many new CTOs spend their time discussing:
|
||||
|
||||
Cloud
|
||||
|
||||
AI
|
||||
|
||||
Microservices
|
||||
|
||||
Containers
|
||||
|
||||
Kubernetes
|
||||
|
||||
Those are important.
|
||||
|
||||
But organizations rarely fail because they chose the wrong container technology.
|
||||
|
||||
They often fail because:
|
||||
|
||||
Nobody trusts the numbers.
|
||||
|
||||
Different reports disagree.
|
||||
|
||||
Nobody owns the KPI.
|
||||
|
||||
Nobody knows where data came from.
|
||||
|
||||
Nobody knows what changes will break.
|
||||
|
||||
The CTO's role is to create an environment where executives trust the data enough to make decisions.
|
||||
|
||||
That trust comes from governance.
|
||||
|
||||
---
|
||||
|
||||
### Questions to Ask
|
||||
|
||||
When someone presents a KPI:
|
||||
|
||||
- Who owns this metric?
|
||||
|
||||
- What is its business definition?
|
||||
|
||||
- Is it documented?
|
||||
|
||||
- Where is it calculated?
|
||||
|
||||
- Does everyone use the same definition?
|
||||
|
||||
- Can we trace it through [[Data Lineage]]?
|
||||
|
||||
- What is the data quality?
|
||||
|
||||
- Who approves changes?
|
||||
|
||||
- Who has access?
|
||||
|
||||
- What happens if the source changes?
|
||||
|
||||
|
||||
---
|
||||
|
||||
## Meeting Scenario
|
||||
|
||||
**Situation**
|
||||
|
||||
The CEO asks:
|
||||
|
||||
> "Why does Marketing say we have 2.3 million active users while Product says 1.8 million?"
|
||||
|
||||
Everyone immediately starts debating SQL.
|
||||
|
||||
A CTO-style response would be:
|
||||
|
||||
> "Before comparing the SQL, I'd like us to confirm whether we're using the same business definition of Active User. If each department has created its own definition, then the issue isn't technical—it's a governance issue. Let's establish one owner for this KPI, agree on the definition, document it in our Semantic Layer, and ensure every report consumes the same metric."
|
||||
|
||||
Notice what happened.
|
||||
|
||||
You didn't ask:
|
||||
|
||||
> Which report is wrong?
|
||||
|
||||
You asked:
|
||||
|
||||
> Why does the organization allow two different definitions of the same KPI?
|
||||
|
||||
That's governance thinking.
|
||||
|
||||
---
|
||||
|
||||
## Key Takeaways
|
||||
|
||||
- **Data Governance** is the framework that ensures organizational trust in data.
|
||||
|
||||
- Governance is about **people, policies, ownership, and standards**, not just technology.
|
||||
|
||||
- Data Governance spans the entire data architecture.
|
||||
|
||||
- Every important KPI should have a clearly identified business owner.
|
||||
|
||||
- The [[Semantic Layer]] implements business definitions; Governance decides those definitions.
|
||||
|
||||
- [[Data Lineage]] explains where data comes from; Governance ensures it is understood and managed.
|
||||
|
||||
- Governance defines policy; security technologies enforce it.
|
||||
|
||||
- High-quality analytics require both good technical architecture and strong governance.
|
||||
|
||||
|
||||
## Related Concepts
|
||||
|
||||
- [[Semantic Layer]]
|
||||
|
||||
- [[Data Lineage]]
|
||||
|
||||
- [[Data Quality]]
|
||||
|
||||
- [[Metadata]]
|
||||
|
||||
- [[Data Steward]]
|
||||
|
||||
- [[Data Owner]]
|
||||
|
||||
- [[Business Glossary]]
|
||||
|
||||
- [[KPI]]
|
||||
|
||||
- [[Measure]]
|
||||
|
||||
- [[Fact Table]]
|
||||
|
||||
- [[Dimension Table]]
|
||||
|
||||
- [[Medallion Architecture]]
|
||||
|
||||
|
||||
---
|
||||
|
||||
## 🎯 CTO Reflection
|
||||
|
||||
This is actually where your career and these lessons begin to merge.
|
||||
|
||||
You told me several weeks ago that you wanted to become a CTO, and that you didn't necessarily want to be the best programmer anymore—you wanted to become someone who **leads technology to produce business results**.
|
||||
|
||||
This lesson is the first one where your current job gives you a significant advantage.
|
||||
|
||||
When I look at the work you've described over the past months, you've already been doing pieces of Data Governance without calling it that:
|
||||
|
||||
- Challenging inconsistent KPI definitions.
|
||||
|
||||
- Asking departments to agree on business meanings.
|
||||
|
||||
- Building executive dashboards.
|
||||
|
||||
- Thinking about ownership instead of just SQL.
|
||||
|
||||
- Questioning whether a metric is actually measuring what its name implies.
|
||||
|
||||
- Wanting reusable definitions instead of every analyst inventing their own.
|
||||
|
||||
|
||||
That's not just reporting.
|
||||
|
||||
That's the beginning of governance.
|
||||
|
||||
From here, the academy shifts slightly. We've built the technical foundation. The next lessons will increasingly connect **architecture, leadership, governance, and decision-making**—the areas that distinguish a CTO from a senior developer or data engineer. I think that's where the material will become even more directly applicable to your day-to-day role.
|
||||
@@ -0,0 +1,259 @@
|
||||
# Weekly Review - YYYY-MM-DD (Week XX)
|
||||
|
||||
## 🎯 Executive Summary (2-3 sentences)
|
||||
|
||||
Overall health of the department:
|
||||
|
||||
Traffic light: 🟢 / 🟡 / 🔴
|
||||
|
||||
This week's headline:
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# Wins 🏆
|
||||
|
||||
Things that moved the company forward.
|
||||
|
||||
-
|
||||
-
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# Risks ⚠️
|
||||
|
||||
What keeps me awake?
|
||||
|
||||
| Risk | Impact | Mitigation | Owner |
|
||||
|------|--------|------------|-------|
|
||||
| | | | |
|
||||
|
||||
---
|
||||
|
||||
# Team 👥
|
||||
|
||||
## Team health
|
||||
|
||||
Overall morale:
|
||||
🟢 High
|
||||
🟡 Normal
|
||||
🔴 Low
|
||||
|
||||
### Coaching / Recognition
|
||||
|
||||
Who deserves recognition?
|
||||
|
||||
-
|
||||
|
||||
Who needs coaching?
|
||||
|
||||
-
|
||||
|
||||
Any conflicts?
|
||||
|
||||
-
|
||||
|
||||
Any hiring concerns?
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# Projects 📁
|
||||
|
||||
| Project | Status | Next Milestone | Blocker |
|
||||
|----------|--------|----------------|----------|
|
||||
| | 🟢 | | |
|
||||
| | 🟡 | | |
|
||||
| | 🔴 | | |
|
||||
|
||||
Projects slipping:
|
||||
|
||||
-
|
||||
|
||||
Projects completed:
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# Vendors 🤝
|
||||
|
||||
Any issue?
|
||||
|
||||
Renewals coming?
|
||||
|
||||
Invoices pending?
|
||||
|
||||
Contract risks?
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# KPIs 📈
|
||||
|
||||
Important numbers this week.
|
||||
|
||||
-
|
||||
|
||||
-
|
||||
|
||||
-
|
||||
|
||||
Anything unusual?
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# Decisions Made
|
||||
|
||||
Decision | Why
|
||||
---------|----
|
||||
| |
|
||||
|
||||
---
|
||||
|
||||
# Decisions Needed
|
||||
|
||||
What decisions must be made next week?
|
||||
|
||||
-
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# Meetings
|
||||
|
||||
Which meetings created value?
|
||||
|
||||
-
|
||||
|
||||
Which meetings should disappear?
|
||||
|
||||
-
|
||||
|
||||
Which meetings could become:
|
||||
|
||||
- Slack
|
||||
- Email
|
||||
- Dashboard
|
||||
- Monthly instead of weekly
|
||||
|
||||
---
|
||||
|
||||
# Delegation
|
||||
|
||||
What did I unnecessarily do myself?
|
||||
|
||||
-
|
||||
|
||||
What should be delegated next week?
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# Learning
|
||||
|
||||
Books
|
||||
|
||||
Articles
|
||||
|
||||
Podcasts
|
||||
|
||||
Lessons learned
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# Process Improvements
|
||||
|
||||
Something that annoyed me this week.
|
||||
|
||||
How can I make sure it never happens again?
|
||||
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
# CEO Questions
|
||||
|
||||
If the CEO walked in Monday morning, what questions might they ask?
|
||||
|
||||
1.
|
||||
|
||||
2.
|
||||
|
||||
3.
|
||||
|
||||
Do I already know the answers?
|
||||
|
||||
---
|
||||
|
||||
# Top Priorities Next Week
|
||||
|
||||
1.
|
||||
|
||||
2.
|
||||
|
||||
3.
|
||||
|
||||
---
|
||||
|
||||
# Personal Reflection
|
||||
|
||||
Energy (1-10):
|
||||
|
||||
Stress (1-10):
|
||||
|
||||
Biggest accomplishment:
|
||||
|
||||
Biggest mistake:
|
||||
|
||||
One thing to improve next week:
|
||||
|
||||
---
|
||||
|
||||
# Parking Lot
|
||||
|
||||
Random ideas to revisit later.
|
||||
|
||||
-
|
||||
|
||||
-
|
||||
|
||||
|
||||
# CTO Development
|
||||
|
||||
Leadership
|
||||
|
||||
-
|
||||
|
||||
Technology
|
||||
|
||||
-
|
||||
|
||||
Business
|
||||
|
||||
-
|
||||
|
||||
Finance
|
||||
|
||||
-
|
||||
|
||||
Communication
|
||||
|
||||
-
|
||||
|
||||
One thing I did this week that made me more like a CTO:
|
||||
|
||||
-
|
||||
|
||||
One thing I did this week that kept me acting like an individual contributor:
|
||||
|
||||
-
|
||||
Vendored
BIN
Binary file not shown.
@@ -0,0 +1,635 @@
|
||||
|
||||
**Date:** 2026-07-22
|
||||
**Status:** 💡 Idea
|
||||
|
||||
## The Idea
|
||||
|
||||
Build a company-wide **Data & Analytics capability** where trusted data is directly accessible to authorized departments, while each business unit retains ownership and expertise over its own business domain.
|
||||
|
||||
The Data & Analytics team would not "own all company data." Instead, it would provide the common capability that makes organizational data:
|
||||
|
||||
- Accessible
|
||||
|
||||
- Trusted
|
||||
|
||||
- Consistent
|
||||
|
||||
- Integrated
|
||||
|
||||
- Documented
|
||||
|
||||
- Governed
|
||||
|
||||
- Understandable
|
||||
|
||||
- Actionable
|
||||
|
||||
|
||||
Each department would retain its business expertise and ownership, while working closely with a dedicated member of the Data & Analytics team who understands that department, its website, projects, objectives, and data.
|
||||
|
||||
The long-term goal is not simply to build more Power BI reports.
|
||||
|
||||
It is to build the organization's **measurement system**, allowing departments and leadership to understand organizational performance from trusted data.
|
||||
|
||||
## Problem / Opportunity
|
||||
|
||||
The current organization has a relatively new data culture and historically operates through departmental silos.
|
||||
|
||||
There is currently ambiguity around:
|
||||
|
||||
- Who owns data
|
||||
|
||||
- Who can access data
|
||||
|
||||
- Who interprets data
|
||||
|
||||
- Who defines KPIs
|
||||
|
||||
- Who distributes information
|
||||
|
||||
- Which reports are authoritative
|
||||
|
||||
- Who decides whether performance is good or bad
|
||||
|
||||
|
||||
Marketing has historically positioned itself as an intermediary for organizational analytics. Departments may be expected to go through Marketing to obtain or interpret their own performance data.
|
||||
|
||||
This creates a risk of **information gatekeeping**.
|
||||
|
||||
For example, even when centralized reports are available to departments directly, Marketing may prefer that departments request information through Marketing first.
|
||||
|
||||
This model creates unnecessary dependencies:
|
||||
|
||||
```text
|
||||
Department
|
||||
↓
|
||||
Marketing
|
||||
↓
|
||||
Data / Reports
|
||||
↓
|
||||
Marketing interpretation
|
||||
↓
|
||||
Department
|
||||
```
|
||||
|
||||
It also creates a potential conflict when data reveals uncomfortable results.
|
||||
|
||||
A recent cross-platform video analytics report made previously difficult-to-see performance information directly visible. Some departments were resistant to having poor performance exposed to upper management.
|
||||
|
||||
This demonstrates why business ownership should not automatically mean control over whether organizational performance information can be seen.
|
||||
|
||||
Another issue became clear when the VP asked:
|
||||
|
||||
> "What are the KPIs?"
|
||||
|
||||
The report successfully solved the **data availability problem**, but the organization had not yet clearly established which metrics actually indicate whether video performance is succeeding or failing.
|
||||
|
||||
This represents an opportunity to move beyond reporting toward true Data Governance and performance measurement.
|
||||
|
||||
## Why It Matters
|
||||
|
||||
A strong Data & Analytics operating model would reduce departmental silos and make trusted information directly available to the people who need it.
|
||||
|
||||
Instead of asking:
|
||||
|
||||
> "Who controls the numbers?"
|
||||
|
||||
the organization should be able to ask:
|
||||
|
||||
> "What do the numbers tell us, and what should we do about them?"
|
||||
|
||||
The business value includes:
|
||||
|
||||
- Better executive decision-making
|
||||
|
||||
- Greater transparency
|
||||
|
||||
- Less information gatekeeping
|
||||
|
||||
- Consistent KPI definitions
|
||||
|
||||
- Increased trust in reports
|
||||
|
||||
- Faster access to information
|
||||
|
||||
- More effective self-service analytics
|
||||
|
||||
- Better collaboration between Data and business departments
|
||||
|
||||
- Better understanding of organizational performance
|
||||
|
||||
- Reduced duplication of reports and analysis
|
||||
|
||||
- Less dependence on individual departments to distribute information
|
||||
|
||||
- Better accountability when performance is poor
|
||||
|
||||
- Cross-departmental visibility
|
||||
|
||||
|
||||
The long-term objective is for leadership to understand the health of the entire organization using trusted data.
|
||||
|
||||
## Who Benefits?
|
||||
|
||||
- Executive leadership
|
||||
|
||||
- News
|
||||
|
||||
- Education
|
||||
|
||||
- Marketing
|
||||
|
||||
- Finance
|
||||
|
||||
- HR
|
||||
|
||||
- IT
|
||||
|
||||
- Legal
|
||||
|
||||
- Digital / Product
|
||||
|
||||
- Other business departments
|
||||
|
||||
- Data & Analytics team
|
||||
|
||||
|
||||
Ultimately, every department should benefit from having direct access to trusted information and an analytical partner who understands its business.
|
||||
|
||||
## Possible Approach
|
||||
|
||||
### 1. Business Domains Own Their Business
|
||||
|
||||
Departments retain ownership of their respective business domains.
|
||||
|
||||
Examples:
|
||||
|
||||
```text
|
||||
HR → HR / Employee domain
|
||||
Finance → Financial domain
|
||||
Marketing → Marketing domain
|
||||
News → News domain
|
||||
Education → Education domain
|
||||
IT → Technology / Operations domain
|
||||
Legal → Legal / Compliance domain
|
||||
```
|
||||
|
||||
Business ownership means departments understand their operations and participate in defining what their business metrics mean.
|
||||
|
||||
It does **not** automatically mean that they control who may see organizational performance information.
|
||||
|
||||
Ownership, access, reporting, interpretation, and governance are separate responsibilities.
|
||||
|
||||
### 2. Data & Analytics Provides the Shared Capability
|
||||
|
||||
The Data & Analytics function should be responsible for establishing and maintaining the organization's shared analytics capability.
|
||||
|
||||
Responsibilities could include:
|
||||
|
||||
- Data integration
|
||||
|
||||
- Analytics architecture
|
||||
|
||||
- Power BI / reporting
|
||||
|
||||
- Data quality
|
||||
|
||||
- Data lineage
|
||||
|
||||
- Metadata
|
||||
|
||||
- KPI documentation
|
||||
|
||||
- Shared definitions
|
||||
|
||||
- Cross-domain analytics
|
||||
|
||||
- Analytical methodology
|
||||
|
||||
- Self-service analytics
|
||||
|
||||
- Data access implementation
|
||||
|
||||
- Data governance standards
|
||||
|
||||
|
||||
The objective is not:
|
||||
|
||||
> "All data belongs to Data & Analytics."
|
||||
|
||||
Instead:
|
||||
|
||||
> **Business units own their business domains. Data & Analytics makes organizational data trustworthy, integrated, consistently measured, understandable, and accessible to authorized users.**
|
||||
|
||||
### 3. Dedicated Data / Technology Partners
|
||||
|
||||
Each department already has a dedicated team member who works closely with it on its website, projects, technology, and evolution.
|
||||
|
||||
This relationship should evolve into an **embedded Data / Technology partnership**.
|
||||
|
||||
```text
|
||||
Data & Analytics
|
||||
│
|
||||
┌──────────────┼──────────────┐
|
||||
│ │ │
|
||||
Team Member Team Member Team Member
|
||||
↕ ↕ ↕
|
||||
News Education Other Dept.
|
||||
```
|
||||
|
||||
These team members should develop enough domain knowledge to understand and interpret the department's analytics.
|
||||
|
||||
They should not merely provide numbers.
|
||||
|
||||
They should be able to:
|
||||
|
||||
- Explain what happened
|
||||
|
||||
- Identify patterns
|
||||
|
||||
- Investigate changes
|
||||
|
||||
- Challenge assumptions
|
||||
|
||||
- Understand the department's digital environment
|
||||
|
||||
- Connect technical events with analytics
|
||||
|
||||
- Recommend further investigation
|
||||
|
||||
- Work with departmental experts to understand why something happened
|
||||
|
||||
|
||||
The business department still retains accountability for business decisions.
|
||||
|
||||
### 4. Shared Interpretation
|
||||
|
||||
Interpretation should not automatically belong to Marketing.
|
||||
|
||||
Instead:
|
||||
|
||||
**Data & Analytics asks:**
|
||||
|
||||
> What happened?
|
||||
|
||||
> Where did it happen?
|
||||
|
||||
> What patterns exist?
|
||||
|
||||
> Is the data reliable?
|
||||
|
||||
**Data + Department together ask:**
|
||||
|
||||
> Why did it happen?
|
||||
|
||||
The department contributes business context because it understands its operations.
|
||||
|
||||
The embedded Data/Technology partner contributes analytical and technical expertise because they understand both the data and the department.
|
||||
|
||||
**Department / Leadership decides:**
|
||||
|
||||
> Is this performance acceptable?
|
||||
|
||||
> What should we do about it?
|
||||
|
||||
Marketing can contribute Marketing expertise where relevant, but should not automatically become the interpretation layer for News, Education, or other departments.
|
||||
|
||||
### 5. Self-Service by Default
|
||||
|
||||
Authorized users should not need to request basic information from Marketing or Data if trusted reports already exist.
|
||||
|
||||
The desired model is:
|
||||
|
||||
```text
|
||||
Trusted Data & Analytics
|
||||
│
|
||||
┌─────────────┼─────────────┐
|
||||
↓ ↓ ↓
|
||||
News Education Marketing
|
||||
↕ ↕ ↕
|
||||
Data Partner Data Partner Data Partner
|
||||
```
|
||||
|
||||
Not:
|
||||
|
||||
```text
|
||||
Department → Marketing → Data → Marketing → Department
|
||||
```
|
||||
|
||||
The goal is not to replace Marketing as the gatekeeper with Data as the new gatekeeper.
|
||||
|
||||
The goal is to **remove unnecessary gatekeeping entirely**.
|
||||
|
||||
### 6. Establish KPI Governance
|
||||
|
||||
Reports should distinguish between:
|
||||
|
||||
**Metrics**
|
||||
|
||||
Numbers that describe what happened.
|
||||
|
||||
and:
|
||||
|
||||
**KPIs**
|
||||
|
||||
Metrics specifically selected to determine whether the organization is succeeding against an objective.
|
||||
|
||||
For example, a video analytics report may contain dozens of metrics.
|
||||
|
||||
Leadership may ultimately decide that only a small number represent organizational success.
|
||||
|
||||
The process should become:
|
||||
|
||||
```text
|
||||
Business Objective
|
||||
↓
|
||||
Agreed KPI
|
||||
↓
|
||||
Business Definition
|
||||
↓
|
||||
Documented Calculation
|
||||
↓
|
||||
Trusted Data Source
|
||||
↓
|
||||
Power BI / Analytics
|
||||
↓
|
||||
Department Interpretation
|
||||
↓
|
||||
Leadership Decision
|
||||
```
|
||||
|
||||
Data & Analytics should facilitate this process but should not independently invent corporate KPIs.
|
||||
|
||||
Questions to establish for important KPIs:
|
||||
|
||||
- What business objective does this KPI measure?
|
||||
|
||||
- Who owns its business definition?
|
||||
|
||||
- How exactly is it calculated?
|
||||
|
||||
- Which systems contribute data?
|
||||
|
||||
- What are its limitations?
|
||||
|
||||
- How frequently is it refreshed?
|
||||
|
||||
- Who may access it?
|
||||
|
||||
- Who approves changes?
|
||||
|
||||
- Where is the authoritative version?
|
||||
|
||||
- What supporting metrics explain changes?
|
||||
|
||||
|
||||
### 7. Position Marketing's Data Analyst Correctly
|
||||
|
||||
Marketing having a Data Analyst is not inherently a problem.
|
||||
|
||||
The important question is the analyst's mandate.
|
||||
|
||||
A Marketing Data Analyst could appropriately specialize in:
|
||||
|
||||
- Marketing campaigns
|
||||
|
||||
- Acquisition
|
||||
|
||||
- Audience segmentation
|
||||
|
||||
- Marketing effectiveness
|
||||
|
||||
- Advertising performance
|
||||
|
||||
- Marketing KPIs
|
||||
|
||||
|
||||
The concern would be if the role evolves into:
|
||||
|
||||
> The organizational analyst responsible for interpreting News, Education, Digital, Streaming, and other departments.
|
||||
|
||||
Marketing should be one business domain within the broader Data & Analytics ecosystem, not the mandatory gateway to organizational information.
|
||||
|
||||
Do not make the organizational argument:
|
||||
|
||||
> "Marketing shouldn't have an analyst."
|
||||
|
||||
Instead establish the broader model in which that analyst naturally becomes a **Marketing domain specialist**.
|
||||
|
||||
### 8. Expand Beyond Audience Analytics
|
||||
|
||||
The current video analytics work can become the foundation rather than the final destination.
|
||||
|
||||
Long term, gradually integrate authorized information from additional domains.
|
||||
|
||||
```text
|
||||
ORGANIZATIONAL HEALTH
|
||||
|
||||
Financial Audience People Operations
|
||||
│ │ │ │
|
||||
Revenue Reach Headcount SLA
|
||||
Budget Viewing Turnover Uptime
|
||||
Costs Retention Hiring Delivery
|
||||
│ │ │ │
|
||||
└──────────────┴──────┬──────┴──────────────┘
|
||||
↓
|
||||
Executive Decisions
|
||||
```
|
||||
|
||||
Potential domains include:
|
||||
|
||||
**Finance**
|
||||
|
||||
- Revenue
|
||||
|
||||
- Budget
|
||||
|
||||
- Actual vs forecast
|
||||
|
||||
- Costs
|
||||
|
||||
|
||||
**HR**
|
||||
|
||||
- Headcount
|
||||
|
||||
- Hiring
|
||||
|
||||
- Turnover
|
||||
|
||||
- Workforce trends
|
||||
|
||||
|
||||
**IT**
|
||||
|
||||
- SLA
|
||||
|
||||
- Incidents
|
||||
|
||||
- Uptime
|
||||
|
||||
- Project delivery
|
||||
|
||||
- Service requests
|
||||
|
||||
|
||||
**Legal**
|
||||
|
||||
- Compliance indicators
|
||||
|
||||
- Contracts
|
||||
|
||||
- Rights / licensing where applicable
|
||||
|
||||
|
||||
**Audience / Content**
|
||||
|
||||
- Reach
|
||||
|
||||
- Consumption
|
||||
|
||||
- Engagement
|
||||
|
||||
- Retention
|
||||
|
||||
- Content performance
|
||||
|
||||
|
||||
The goal is not one enormous Power BI dashboard.
|
||||
|
||||
The goal is an interconnected **organizational data ecosystem**.
|
||||
|
||||
### 9. Respect Sensitive Data Ownership
|
||||
|
||||
Expanding into HR, Finance and Legal should not mean requesting unrestricted access to everything.
|
||||
|
||||
These departments may legitimately need strict controls around sensitive information.
|
||||
|
||||
Instead:
|
||||
|
||||
> The department retains ownership and appropriate access control while participating in the organization's governed analytics ecosystem.
|
||||
|
||||
For example, HR may expose approved workforce metrics without exposing individual salaries or unnecessary personal information.
|
||||
|
||||
This reduces resistance and avoids presenting Data & Analytics as an attempt to take control away from departments.
|
||||
|
||||
## Effort
|
||||
|
||||
**Estimated complexity:** High
|
||||
|
||||
This is not primarily a Power BI or technical project.
|
||||
|
||||
It requires:
|
||||
|
||||
- Organizational change
|
||||
|
||||
- Executive sponsorship
|
||||
|
||||
- Data Governance
|
||||
|
||||
- Departmental cooperation
|
||||
|
||||
- Clear responsibilities
|
||||
|
||||
- Trust
|
||||
|
||||
- Political navigation
|
||||
|
||||
- Technical architecture
|
||||
|
||||
- Gradual cultural change
|
||||
|
||||
|
||||
Implementation should therefore be incremental rather than presented as one large transformation project.
|
||||
|
||||
## Risks / Questions
|
||||
|
||||
- Marketing currently has strong relationships with the VP and CEO.
|
||||
|
||||
- Marketing has already received approval to hire a Data Analyst focused on interpretation without consultation with the existing Data & Analytics function.
|
||||
|
||||
- Marketing may perceive direct self-service analytics as reducing its organizational influence.
|
||||
|
||||
- Departments may resist transparency when data reveals poor performance.
|
||||
|
||||
- HR and Finance may resist participation because of concerns around control and sensitive information.
|
||||
|
||||
- Departments may interpret "central Data & Analytics" as an attempt to take ownership of their data.
|
||||
|
||||
- KPI ownership is currently unclear.
|
||||
|
||||
- Leadership may not yet recognize the distinction between metrics and KPIs.
|
||||
|
||||
- There may be no formal Data Governance mandate.
|
||||
|
||||
- Data access and business ownership may currently be confused.
|
||||
|
||||
- Embedded team members need sufficient analytical and business knowledge to become credible partners.
|
||||
|
||||
- Who ultimately resolves disagreements over KPI definitions?
|
||||
|
||||
- Who should sponsor Data Governance at the executive level?
|
||||
|
||||
- How should cross-department KPIs be owned?
|
||||
|
||||
- What should the formal mandate of Data & Analytics become?
|
||||
|
||||
|
||||
## Next Step
|
||||
|
||||
Use the existing **cross-platform video analytics report** as the first practical example of this operating model.
|
||||
|
||||
Do not initially attempt to restructure the organization or challenge Marketing's analyst position.
|
||||
|
||||
Instead, follow up on the VP's question:
|
||||
|
||||
> **"What are the KPIs?"**
|
||||
|
||||
Work with leadership and the relevant departments to identify:
|
||||
|
||||
1. What are our business objectives for video?
|
||||
|
||||
2. Which metrics indicate whether we are succeeding?
|
||||
|
||||
3. Who owns the business definition of each KPI?
|
||||
|
||||
4. How should each KPI be calculated?
|
||||
|
||||
5. Which supporting metrics help explain performance?
|
||||
|
||||
|
||||
Document the agreed definitions and implement them consistently in the existing report.
|
||||
|
||||
This creates a small, concrete example of Data Governance and demonstrates the value of the broader operating model.
|
||||
|
||||
From there, gradually extend the model to additional domains rather than trying to win the abstract argument over **"Who is Data?"**
|
||||
|
||||
The long-term strategy is:
|
||||
|
||||
> **Don't fight to be called Data. Build the organizational Data & Analytics capability until its role becomes self-evident.**
|
||||
|
||||
## Related
|
||||
|
||||
- [[Data Governance]]
|
||||
|
||||
- [[Data Quality]]
|
||||
|
||||
- [[Data Lineage]]
|
||||
|
||||
- [[Semantic Layer]]
|
||||
|
||||
- [[Business Glossary]]
|
||||
|
||||
- [[KPI]]
|
||||
|
||||
- [[Data Owner]]
|
||||
|
||||
- [[Data Steward]]
|
||||
|
||||
- [[Power BI]]
|
||||
|
||||
- [[Data Culture]]
|
||||
|
||||
- [[Self-Service Analytics]]
|
||||
|
||||
- [[CTO]]
|
||||
Reference in New Issue
Block a user