Skip to content
Marketing Automation

Marketing Automation

Discover more in every scroll

  • Home
  • About Myself
  • Consultation
  • Trainings
  • Contact
  • Guides
    • AmpScript Guide
  • Blogs
    • Dataviews
    • Synchronized Data Extensions
    • Email Studio

Salesforce Marketing Cloud Data Views: _EnterpriseAttribute

Posted on March 29, 2025March 30, 2025 by admin

The _EnterpriseAttribute data view in Salesforce Marketing Cloud (SFMC) allows Enterprise 2.0 accounts to query subscriber data along with their profile attributes. It is exclusive to Enterprise accounts and must be used from the Parent account, not from individual Business Units (BUs).

This blog explores how to use the _EnterpriseAttribute data view, its key features, and how it can support segmentation and personalization at scale.


What is the _EnterpriseAttribute Data View?

The _EnterpriseAttribute data view returns data for subscribers stored at the Enterprise level, including any custom profile attributes defined within the Parent Business Unit. These profile attributes become columns in this data view automatically when created.

Key Benefits of _EnterpriseAttribute Data View

  • Centralized Profile Management: Access and analyze subscriber attributes across all BUs.
  • Personalization at Scale: Use rich profile data to tailor email content.
  • Enterprise-Level Segmentation: Build queries that span across BUs using centralized profile attributes.
  • Dynamic Data Access: Automatically reflects new profile attributes as additional columns.

Field in _EnterpriseAttribute Data View & Its Use

FieldTypeDescription & Use Case
_SubscriberIDNumberUnique internal subscriber ID. Used to join with other system data views such as _Subscribers, _Sent, or _Open.

Note: Additional columns will appear automatically based on the custom profile attributes created in the Enterprise 2.0 account. These are not predefined but dynamically added.


When and Why to Use _EnterpriseAttribute Data View?

When to Use?

  • When building enterprise-wide audience segments.
  • When personalizing content using subscriber profile fields.
  • When evaluating or auditing profile attribute completeness.
  • When centralizing data strategy and governance at the Parent level.

Why Use It?

  • Dynamic Structure: Automatically reflects newly added profile attributes.
  • Improved Efficiency: One query retrieves consistent data across BUs.
  • Scalability: Ideal for large organizations managing millions of subscribers.
  • Custom Targeting: Enables filtering by custom fields like location, language, preferences, and more.

10 Example Scenarios and Queries

Assuming profile attributes like FirstName, LastName, Country, and PreferredLanguage exist in your account.

1. Retrieve All Subscriber IDs and Names

SELECT _SubscriberID, FirstName, LastName 
FROM _EnterpriseAttribute

Use Case: Basic profile data extraction.

2. Segment Subscribers by Country

SELECT _SubscriberID, Country 
FROM _EnterpriseAttribute 
WHERE Country = 'UK'

Use Case: Country-based targeting.

3. Identify Subscribers with Missing Profile Fields

SELECT _SubscriberID 
FROM _EnterpriseAttribute 
WHERE PreferredLanguage IS NULL

Use Case: Data hygiene and enrichment opportunities.

4. Extract Subscribers by Preferred Language

SELECT _SubscriberID, PreferredLanguage 
FROM _EnterpriseAttribute 
WHERE PreferredLanguage = 'Spanish'

Use Case: Multilingual campaign targeting.

5. Join with _Subscribers for Status and Email

SELECT ea._SubscriberID, s.EmailAddress, s.Status 
FROM _EnterpriseAttribute ea 
JOIN _Subscribers s 
ON ea._SubscriberID = s.SubscriberID

Use Case: Full subscriber view with profile + status.

6. Count of Subscribers by Country

SELECT Country, COUNT(*) AS SubscriberCount 
FROM _EnterpriseAttribute 
GROUP BY Country

Use Case: Audience distribution reporting.

7. Build Target List for Welcome Series

SELECT _SubscriberID 
FROM _EnterpriseAttribute 
WHERE FirstName IS NOT NULL AND PreferredLanguage = 'English'

Use Case: Segment for onboarding automation.

8. Subscribers with Specific First Name

SELECT _SubscriberID, FirstName 
FROM _EnterpriseAttribute 
WHERE FirstName = 'Emma'

Use Case: Personal or test segment targeting.

9. Retrieve Email Preference Values (if tracked)

SELECT _SubscriberID, EmailOptInStatus 
FROM _EnterpriseAttribute 
WHERE EmailOptInStatus = 'Opted In'

Use Case: Filter for marketing-compliant audience.

10. Compare Country and Language Preference

SELECT _SubscriberID, Country, PreferredLanguage 
FROM _EnterpriseAttribute 
WHERE Country = 'France' AND PreferredLanguage != 'French'

Use Case: Discover data mismatches or localization opportunities.


Conclusion

The _EnterpriseAttribute data view is a powerful tool for marketers working in enterprise-level Salesforce Marketing Cloud environments. With dynamic access to profile data and centralized visibility across business units, this view empowers data-driven segmentation, personalization, and analysis.

Use it alongside _Subscribers, _Sent, and _Open to create unified subscriber profiles and performance dashboards.

Posted in Blogs, DataviewsTagged _EnterpriseAttribute explained, centralized profile data Salesforce, Enterprise 2.0 Salesforce, marketing cloud parent account queries, Marketing Cloud profile attributes, Salesforce Marketing Cloud, Salesforce Marketing Cloud enterprise-level targeting, Salesforce profile attributes reporting, SFMC _EnterpriseAttribute data view, SFMC audience personalization, SFMC data views SQL queries, SFMC dynamic segmentation, SFMC subscriber segmentation, subscriber profile management SFMC

Post navigation

Previous: Salesforce Marketing Cloud Data Views: _Coupon
Next: Salesforce Marketing Cloud Data Views: _Subscribers

About Myself

Suhas Ganjare

Suhas Ganjare

CRM and Digital Consultant

Suhas Ganjare is a passionate cricketer, Salesforce Marketing Cloud Developer & Consultant, and a skilled Salesforce Certified Data Cloud Consultant. With expertise in Eloqua Marketing Automation, Salesforce Administration, and digital marketing, Suhas has built a diverse career helping businesses streamline and elevate their marketing strategies. An accomplished professional, Suhas combines technical proficiency with creative insight to deliver data-driven campaigns and automation solutions that drive meaningful engagement. Beyond his professional pursuits, Suhas is an author and an avid sports enthusiast, finding inspiration and balance on the cricket field.

Trending Topics

  • Salesforce Marketing Cloud Email Studio: Complete Guide to Layouts for Email Templates
  • Salesforce Marketing Cloud Email Studio: Complete Guide to Email Templates
  • Salesforce Marketing Cloud Email Studio – Full Guide to Content Builder Blocks
  • 🔍 What is a Template-Based Email in SFMC?
  • Email Studio and Content Builder – Marketing Cloud Basics Explained

Related Posts

  • Blogs
  • Dataviews
3 min read

Salesforce Marketing Cloud Data Views: SendLog

  • admin
  • March 30, 2025
  • Blogs
  • Dataviews
4 min read

Salesforce Marketing Cloud Data Views: _Click

  • admin
  • March 29, 2025
  • Blogs
  • Dataviews
4 min read

Salesforce Marketing Cloud Data Views: _JourneyActivity (Journey Builder)

  • admin
  • March 29, 2025
  • Blogs
4 min read

The Vital Role of Responsive Email Template Development in Modern Marketing

  • admin
  • July 19, 2023
Copyright © 2025 Marketing Automation