Core Concept: Consuming Unified Data
Data modeling and identity resolution are just the beginning. The true power of Salesforce Data Cloud (formerly Data 360) lies in its consumption features—how you actually view, analyze, and act on the data you've brought together.
- Data Explorer: This is your query and inspection tool. It allows users to browse raw records across different objects, including Data Model Objects (
DMOs), Data Lake Objects (DLOs), and Calculated Insights. You can configure columns and drill deep into individual records. - Profile Explorer: While Data Explorer looks at raw objects, Profile Explorer gives you a holistic, unified 360-degree view of a single customer. It stitches together the
Unified Individualwith their engagement history, contact points, and insights. - Calculated Insights: These are multi-dimensional metrics computed over your unified data using a SQL-like interface. Examples include Customer Lifetime Value (LTV), purchase frequency, or custom engagement scores. Note: The SQL here is strictly analytical and read-oriented. You compute metrics; you do not run transactional database writes.
- Segmentation: This tool allows marketers to build highly specific audiences by filtering against the
Unified Individualusing profile attributes, time-series engagement events, and the Calculated Insights you've built. - Activation (The "Act" Pillar): Segments are useless if they stay trapped in Data Cloud. Activation publishes your segment—along with necessary attributes—to a target destination. This could be Marketing Cloud, advertising platforms, Salesforce CRM, or triggered Flows.
Consuming Unified Data in Salesforce Data Cloud ├─ Data Explorer ────── Browse/inspect raw records across DMOs, DLOs, and Insights. ├─ Profile Explorer ─── View the full 360-degree profile of ONE Unified Individual. ├─ Calculated Insights SQL-computed, multidimensional metrics (LTV, frequency). ├─ Segmentation ─────── Filter Unified Individuals by attributes, engagement, or insights. └─ Activation ───────── Publish the segment to Marketing, Ads, CRM, or Flow (the 'Act' pillar).
- Rule: A Calculated Insight defines the measure. A Segment selects the people. An Activation sends them somewhere.
- Gain: Empowers marketers to build complex, metric-driven audiences using clicks (not code), based on robust data models created by data architects.
- Price: People often use "segment" and "insight" interchangeably in conversation. Architecturally, they are distinct and operate in a specific sequence.
- Limits: Data Cloud's query tool is for read-only analysis and metric generation. You cannot use it to run
UPDATEqueries to fix bad data. - Pro Tip: Always spot-check your audience with Profile Explorer before you hit activate. If a segment looks wrong, it usually points to a flawed upstream data mapping.
- At Volume: The size of your segment dictates your downstream activation cost and processing volume. Always calculate audience size before promising a massive campaign to stakeholders.
UPDATE statements to fix incorrect records. Bad data must be fixed at the source or in the ingestion layer.
Core Q&A
Q: Your data is fully unified. The business now wants to target "high-value customers who lapsed in the last 30 days" with an email campaign. Which Data Cloud features do you chain together to achieve this?
A: You will use three consecutive features:
- First (Calculated Insight): You build a Calculated Insight using SQL to define what a "high-value customer" actually means (e.g., computing Customer Lifetime Value or purchase frequency across unified data).
- Second (Segmentation): You create a Segment against the
Unified Individual. You filter where the Calculated Insight (LTV) is high, AND combine it with time-series Engagement data (no purchase events in the last 30 days). - Third (Activation): You Activate that segment. You select Marketing Cloud as the target and include any specific personalization attributes the campaign needs. Marketing Cloud receives the audience and triggers the journey to send the email.
Bonus point: Mention that you would use Data Explorer to validate the underlying insight records and Profile Explorer to spot-check a few individuals to ensure the audience is accurate before activating.
Scenario-Based Follow-ups
Q1: A junior developer asks for permission to run an UPDATE SQL query in Data Cloud to fix some misspelled city names. What do you tell them?
A1: You tell them no, because it's not possible. Data Cloud's SQL capabilities are purely analytical and read-oriented. It is designed to explore data and build Calculated Insights, not to execute transactional database writes. If data is incorrect, corrections belong upstream. You must fix the misspelled cities in the original source system or during the transformation/ingestion phase so that the corrected values naturally flow through the Data Lake Objects (DLOs) into the Data Model Objects (DMOs) on the next scheduled data run.
Q2: In one sentence each, what is the exact difference between Data Explorer and Profile Explorer?
A2: Data Explorer is a broad, tabular inspection tool used to browse and query thousands of raw records across various individual objects (like DMOs and DLOs). Profile Explorer is a highly specific, customer-centric UI that displays the fully stitched together, 360-degree view of a single Unified Individual, combining their identifiers, events, and insights in one place.