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: _Job

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

The _Job data view in Salesforce Marketing Cloud (SFMC) provides comprehensive information about each email send job. This data view is crucial for tracking and reporting on the performance, configuration, and delivery of every email you send from your account.

In this blog, we’ll break down the fields in the _Job data view, explore its practical use cases, and share SQL queries to help you make the most of your send job data.


What is the _Job Data View?

The _Job data view tracks metadata related to email sends in SFMC. It includes timing details, user information, configuration data, and other attributes related to both standard and triggered email sends.

Key Benefits of _Job Data View

  • Campaign Diagnostics: Review job status, send times, and email metadata.
  • Advanced Reporting: Combine with engagement data for performance dashboards.
  • Trigger & Automation Tracking: Analyze automated vs. one-off sends.
  • Audit History: Track who scheduled and modified each job.

Fields in _Job Data View & Their Uses

FieldTypeDescription & Use Case
AccountIDNumberThe SFMC account that initiated the job. Important for multi-account setups.
AccountUserIDNumberID of the user who initiated the send. Use to track send origin.
JobIDNumberUnique identifier for each send job. Core field for joining with other data views.
EmailIDNumberInternal ID of the email content used.
FromNameText(130)The sender’s name used in the email. Used for compliance and branding review.
FromEmailEmailThe sender’s email address.
SchedTimeDateThe time the job was scheduled. Useful for comparing against actual delivery.
PickupTimeDateThe time the job began execution.
DeliveredTimeDateThe time the email was delivered. Used for performance tracking.
TriggererSendDefinitionObjectIDText(36)Triggered send object ID. Useful in Journey Builder and automation reporting.
TriggeredSendCustomerKeyText(36)Key used to identify the triggered send definition.
EventIDText(50)Unique event ID associated with the job.
IsMultipartBooleanIndicates if the email was sent as multipart MIME (HTML + plain text).
JobTypeText(50)Type of job (e.g., TriggeredSend, SingleSend, GuidedSend). Helps classify campaign types.
JobStatusText(50)Current status of the job (e.g., Complete, Cancelled).
ModifiedByNumberID of the user who last modified the job.
ModifiedDateDateDate the job was last updated.
EmailNameText(100)The name of the email asset used in the job.
EmailSubjectText(200)Subject line of the email.
IsWrappedBooleanIndicates if links were wrapped for tracking purposes.
TestEmailAddrEmailEmail used in test sends (if applicable).
CategoryText(100)Job category or label used for classification.
BccEmailEmailBCC email addresses used in the send.
OriginalSchedTimeDateThe originally intended scheduled time. Useful for identifying delays.
CreatedDateDateThe date the job was created.
CharacterSetText(30)The character encoding used in the email.
IPAddressText(50)Always returns null. Reserved for future use.
SalesForceTotalSubscriberCountNumberNumber of Salesforce CRM subscribers in the send.
SalesForceErrorSubscriberCountNumberNumber of Salesforce subscribers who encountered send errors.
SendTypeText(128)Send mechanism used (e.g., triggered, batch, automation).
DynamicEmailSubjectTextIf applicable, the dynamic subject line generated for the job.
SuppressTrackingBooleanIndicates if tracking was disabled for the job.
SendClassificationTypeText(32)Type of classification applied to the job.
SendClassificationText(36)Send classification used (e.g., Commercial, Transactional).
ResolveLinksWithCurrentDataBooleanIndicates whether dynamic links were resolved with live data.
EmailSendDefinitionText(36)Reference to the email send definition used.
DeduplicateByEmailBooleanWhether deduplication by email address was applied.

When and Why to Use _Job Data View?

When to Use?

  • After campaign launch for job diagnostics and performance audits.
  • When analyzing automation and journey sends.
  • When building dashboards and send summaries.
  • To review send settings and metadata for compliance or optimization.

Why Use It?

  • Complete Visibility: Access all send-level metadata.
  • Performance Analysis: Compare job timing with engagement.
  • Compliance and Governance: Validate job configurations.
  • Troubleshooting: Investigate delivery delays and configuration errors.

10 Example Scenarios and Queries

1. Retrieve All Completed Jobs from the Last 30 Days

SELECT JobID, EmailName, EmailSubject, DeliveredTime 
FROM _Job 
WHERE JobStatus = 'Complete' 
AND DeliveredTime >= DATEADD(day, -30, GETDATE())

Use Case: Analyze recently completed email sends.

2. List Jobs with Dynamic Subject Lines

SELECT JobID, EmailName, DynamicEmailSubject 
FROM _Job 
WHERE DynamicEmailSubject IS NOT NULL

Use Case: Track performance of dynamic content testing.

3. Compare Scheduled vs. Delivered Times

SELECT JobID, SchedTime, DeliveredTime 
FROM _Job 
WHERE DeliveredTime IS NOT NULL

Use Case: Identify delivery delays.

4. Retrieve All Triggered Sends

SELECT JobID, TriggeredSendCustomerKey, EmailName 
FROM _Job 
WHERE JobType = 'TriggeredSend'

Use Case: Filter for Journey Builder and triggered campaigns.

5. BCC Monitoring and Compliance

SELECT JobID, EmailName, BccEmail 
FROM _Job 
WHERE BccEmail IS NOT NULL

Use Case: Track compliance with BCC use policies.

6. Count of Jobs by Status

SELECT JobStatus, COUNT(*) AS TotalJobs 
FROM _Job 
GROUP BY JobStatus

Use Case: Understand current job statuses across your instance.

7. Email Send Volume by User

SELECT AccountUserID, COUNT(*) AS TotalJobs 
FROM _Job 
GROUP BY AccountUserID

Use Case: Attribute sends to users for accountability.

8. Track Jobs with Suppressed Tracking

SELECT JobID, EmailName 
FROM _Job 
WHERE SuppressTracking = 1

Use Case: Identify jobs where engagement tracking is turned off.

9. Identify Jobs with Salesforce CRM Errors

SELECT JobID, SalesForceErrorSubscriberCount 
FROM _Job 
WHERE SalesForceErrorSubscriberCount > 0

Use Case: Troubleshoot CRM integration issues.

10. Join _Job with _Sent for Job-Level Reporting

SELECT j.JobID, j.EmailName, s.SubscriberKey, s.EventDate 
FROM _Job j 
JOIN _Sent s 
ON j.JobID = s.JobID

Use Case: Combine send metadata with engagement details.


Conclusion

The _Job data view in SFMC is an essential resource for email send tracking, diagnostics, and analysis. With detailed metadata on timing, configuration, classification, and email content, it enables marketers and analysts to deeply understand the setup and success of every send.

Use _Job in combination with _Sent, _Open, _Click, _Bounce, and _Complaint to create a full-funnel campaign performance dashboard.

Posted in Blogs, DataviewsTagged _Job data view explained, email job configuration SFMC, email job diagnostics Salesforce, Marketing Cloud email metadata, Marketing Cloud email send tracking, Marketing Cloud send delay analysis, Salesforce Marketing Cloud, SFMC _Job data view, SFMC campaign performance tracking, SFMC dynamic subject lines, SFMC job status analysis, SFMC job status monitoring, SFMC SQL queries, triggered send job reporting

Post navigation

Previous: Salesforce Marketing Cloud Data Views: _BusinessUnitUnsubscribes
Next: Salesforce Marketing Cloud Data Views: _SurveyResponse

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
4 min read

Salesforce Marketing Cloud Data Views: _SMSSubscriptionLog (MobileConnect)

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

Salesforce Marketing Cloud Data Views: _ListSubscribers

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

Understanding Salesforce Data Cloud: A Simple Guide for Everyone

  • admin
  • December 25, 2024
  • Blogs
  • Dataviews
4 min read

Salesforce Marketing Cloud Data Views: _Coupon

  • admin
  • March 29, 2025
Copyright © 2025 Marketing Automation