Book Image

Salesforce Data Architecture and Management

By : Ahsan Zafar
Book Image

Salesforce Data Architecture and Management

By: Ahsan Zafar

Overview of this book

As Salesforce orgs mature over time, data management and integrations are becoming more challenging than ever. Salesforce Data Architecture and Management follows a hands-on approach to managing data and tracking the performance of your Salesforce org. You’ll start by understanding the role and skills required to become a successful data architect. The book focuses on data modeling concepts, how to apply them in Salesforce, and how they relate to objects and fields in Salesforce. You’ll learn the intricacies of managing data in Salesforce, starting from understanding why Salesforce has chosen to optimize for read rather than write operations. After developing a solid foundation, you’ll explore examples and best practices for managing your data. You’ll understand how to manage your master data and discover what the Golden Record is and why it is important for organizations. Next, you'll learn how to align your MDM and CRM strategy with a discussion on Salesforce’s Customer 360 and its key components. You’ll also cover data governance, its multiple facets, and how GDPR compliance can be achieved with Salesforce. Finally, you'll discover Large Data Volumes (LDVs) and best practices for migrating data using APIs. By the end of this book, you’ll be well-versed with data management, data backup, storage, and archiving in Salesforce.
Table of Contents (14 chapters)
1
Section 1: Data Architecture and Data Management Essentials
5
Section 2: Salesforce Data Governance and Master Data Management
9
Section 3: Large Data Volumes (LDVs) and Data Migrations

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Changing the criterion to LastModifiedDate will fix the issue."

A block of code is set as follows:

SELECT Id, Name, Description, LastRunDate, LastModifiedBy.Name
FROM Report
WHERE LastRunDate < 2019-06-01T00:00:00Z
ORDER BY LastRunDate DESC
LIMIT 50

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

SELECT Id, Name, Description, LastRunDate, LastModifiedBy.Name
FROM Report
WHERE LastRunDate < 2019-06-01T00:00:00Z
ORDER BY LastRunDate DESC
LIMIT 50

Any command-line input or output is written as follows:

ping -f -n 25 -l 1200 na111.salesforce.com
ping -f -n 25 -l 1300 na111.salesforce.com
ping -n 25 -l 1400 na111.salesforce.com

Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: "In Developer Console, click on the Logs tab."

Tips or important notes

Appear like this.