인셔셔RSS 관심 있는 블로그, 뉴스, 기술 정보를 효율적으로 추적하고 읽으세요
원문 읽기 InertiaRSS에서 열기

추천 피드

D
DataBreaches.Net
N
Netflix TechBlog - Medium
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Y
Y Combinator Blog
博客园 - 聂微东
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
小众软件
小众软件
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
B
Blog
H
Help Net Security
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客
月光博客
月光博客
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Tracking Data Extract vs Data Views: Get Data Out of SFMC
SapotaCorp · 2026-05-24 · via DEV Community

Client wants their analyst team to have every tracking event in their data warehouse. Clicking CSV export from Tracking for each send doesn't scale. Two SFMC-native tools handle bulk tracking exports:

  1. Tracking Data Extract - automated exports to SFTP on a schedule
  2. SQL Query Activity against Data Views - query tracking directly within SFMC

Both work. Which depends on where the data needs to land.

Option 1: Tracking Data Extract

Automation Studio > Data Extract Activity > Tracking Extract type. Pick the data type and date range; SFMC writes a CSV to the Safehouse. Then File Transfer Activity pushes it to the client's SFTP.

Types supported:

  • Sent
  • Opens
  • Clicks
  • Bounces
  • Unsubscribes
  • Complaints (spam reports)
  • Not Sent

Typical automation:

Schedule (daily or weekly)
  -> Data Extract Activity (Tracking Extract, date range: yesterday)
  -> File Transfer Activity (push CSV to client SFTP)

Enter fullscreen mode Exit fullscreen mode

Output is flat CSV with one row per event. Analysts load into their warehouse and query.

Retention advantage: Tracking Extract can pull years of data if it hasn't aged out. Some events retain 2 years in SFMC - extract them before they age out.

Option 2: SQL Query Activity against Data Views

Data Views are SFMC's system tables storing tracking data. Query with SQL Query Activity, write results to a DE.

Data View

Contains

_Sent

Every email attempted

_Open

Every open event

_Click

Every click event

_Bounce

Every bounce, with BounceType

_Unsubscribe

Every unsubscribe

_Complaint

Every spam report

_Job

Send job metadata

_Subscribers

All Subscribers list

Example: subscribers who opened any email in the last 30 days:

SELECT DISTINCT SubscriberKey, EmailAddress
FROM _Open
WHERE EventDate >= DATEADD(DAY, -30, GETDATE())

Enter fullscreen mode Exit fullscreen mode

Writes to a DE. Use the DE as:

  • Audience for a re-engagement campaign
  • Source for additional SQL analysis
  • Input to a File Drop for external systems

When to pick which

Need

Tool

Export to client's data warehouse

Tracking Data Extract + File Transfer

Build internal SFMC segments from tracking

SQL Query Activity

One-time historical pull

Tracking Data Extract

Ongoing segmentation based on engagement

SQL Query Activity

Data for analysts outside SFMC

Tracking Data Extract

Keep everything inside SFMC

SQL Query Activity

Retention limits

  • Data Views default retention: 6 months
  • Some event data: up to 2 years (depending on contract)
  • Tracking Data Extract range: limited to what's retained - can't pull what's gone

Rule: set up archive automation early in the engagement. Weekly extract of _Open, _Click, _Sent, _Bounce into the client's warehouse or into archive DEs. By month six, you have everything backed up.

Archive pattern

If the client wants 2+ years of tracking queryable inside SFMC:

Weekly archive automation:
  Schedule (Monday 2am)
  -> SQL Query Activity: SELECT * FROM _Open WHERE EventDate BETWEEN X AND Y INTO Archive_Open DE
  -> SQL Query Activity: Same for _Click, _Sent, _Bounce

Enter fullscreen mode Exit fullscreen mode

Archive DEs grow over time but don't age out. Queries across archive + live data give unlimited retention.

For warehouse archive (outside SFMC):

Daily export:
  Schedule (daily 1am)
  -> Data Extract Activity (each tracking type, yesterday's data)
  -> File Transfer Activity (push to client SFTP)

Enter fullscreen mode Exit fullscreen mode

Either pattern works. Pick based on where downstream analysis happens.

Common mistakes

Not archiving early

Client asks at month 10 for last year's campaign data. It's gone. Data View retention ended at month 6.

Fix: start archive on day one, not when someone asks.

Trying to query Data Views from outside SFMC

Data Views are internal SFMC system tables. You can't connect a BI tool directly. Must export first.

Assuming all Data Views retain equally

_Sent retains differently than _Open and both differ from _Subscribers. Read the docs for your specific account's retention before promising a date range.

Joining Data Views without indexes

SQL Query Activities on Data Views against large volumes (millions of rows) can time out if the query doesn't use the supported join patterns. Keep queries simple and filtered; use primary keys whenever possible.

Pattern: Re-engagement campaign from Data Views

Common use case - find subscribers who haven't opened in 90 days and include them in a re-engagement journey:

SELECT s.SubscriberKey, s.EmailAddress
FROM _Subscribers s
LEFT JOIN (
  SELECT DISTINCT SubscriberKey
  FROM _Open
  WHERE EventDate >= DATEADD(DAY, -90, GETDATE())
) o ON s.SubscriberKey = o.SubscriberKey
WHERE s.Status = 'Active' AND o.SubscriberKey IS NULL
INTO ReEngagement_Candidates_DE

Enter fullscreen mode Exit fullscreen mode

Schedule weekly. Journey Builder reads from ReEngagement_Candidates_DE and triggers the re-engagement series.

Takeaway

Tracking Data Extract for exports to client warehouses and external systems. SQL Query Activity against Data Views for internal segmentation and in-SFMC analysis. Both work alongside each other on most engagements. Set up archive automations early - the alternative is telling the client their year-old campaign data is gone.


Architecting SFMC data export and archive strategy? Our Salesforce team ships tracking data pipelines with retention planning on production engagements. Get in touch ->

See our full platform services for the stack we cover.