SlideShare a Scribd company logo
Building Reports That Fly
Sean Regan, salesforce.com, @SFDCSRegan
John Tan, salesforce.com, @johntansfdc
Irena Miziolek, NTT Centerstance
Jeannette Liu-Deza, NTT Centerstance
Safe Harbor
Safe harbor statement under the Private Securities Litigation Reform Act of 1995:
This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties
materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results
expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be
deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other
financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any
statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.
The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new
functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our
operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any
litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our
relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our
service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to
larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is
included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent
fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor
Information section of our Web site.
Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently
available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions
based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these
forward-looking statements.
Your company uses
Salesforce/Force.com …
You are a developer or architect
maintaining your org …
Slow reports return unreliable
data that hurts user productivity
and leads to mistakes …
You need to make these reports
faster and trusted …
Agenda - Building reports that fly!
1. Governance
• Configuration Access
• Sharing Access
• Data Architecture
2. Frequency
• Dashboard & Report Refreshes
3. Efficient Reports
• Tuning Reports
• Data Archiving/Aggregation
4. Customer Case Study
Sean Regan
Architect Evangelist
@SFDCSregan
John C. Tan
Architect Evangelist
@johntansfdc
View Our Content On Developerforce

http://developer.force.com/architect
Irena Miziolek &
Jeannette Liu-Deza
Technical & Solution Architects
NTT Centerstance
How Many Of You Have …?
Run a Salesforce report …

and waited forever?
1. Governance
Governance

Configuration access
Even Pilots Need Help
Restrict Report And List View Creation
Report & list view governance helps you …
• Increase user adoption
• Increase employee productivity
• Decrease employee mistakes
• Save money
Governance

Sharing Access
Architect Sharing Based On Business Requirements
Global Organization Sharing
What’s the impact of sharing access?
Governance

Data Architecture
Is the correct end result really enough?
Understand Your Schema
When It Isn’t Necessary, Get Rid Of it.
Architect Your Data Model For Performance

VS.
2. Frequency
Frequency

Dashboard/Report Refreshes
More Is Not Always Better
Push Data To Users: Force.com Streaming API
Workflow Email Alerts

Chatter Feeds

Scheduled Reports

Visualforce Pages
Key Takeaways
✓ Governance ensures efficiency & accuracy
✓ Know your object model
✓ Push data to users to drive workflow
✓ Architect your sharing model based on business requirements
3. Efficient reports
Efficient reports
• Tuning reports
• Data archiving/aggregation
Efficient reports

Tuning reports
What is the Force.com query optimizer?
Generates the most efficient query based on:
▪ Statistics
▪ Indexes / Skinny Tables
▪ Sharing
Best Practice: One+ Selective Filter Per report
Selective Filters: Four Components
1. Filters - add filters to reduce data
2. Operators - avoid 2 inefficient filter operators
3. Thresholds – ensure filter meets selectivity threshold
4. Index Creation - index the filter field
Filters Reduce The Scope Of Reports
Fields That Often Make Good Filters
▪ Date fields
▪ Picklists
▪ Fields with wide and even distribution of values
Non-Deterministic Formula Fields Aren’t Good Filters
Can’t index
For example:
▪ References related object
▪ CASE(MyUser__r.UserType__c,1,”Gold”,”Silver”)
▪ Create separate field and use trigger to populate

Force.com SOQL Best Practices: Nulls and Formula Fields
Use Selective Operators In Filters
Avoid Negative Operators
Query for reciprocal values instead
✖ NOT EQUALS (“closed”)
✔ EQUALS (“open”, “in progress”)
Avoid Filters With A Leading % Wildcard
CONTAINS ‘%searchstring%’
✖ CONTAINS (“district”) – equivalent to LIKE ‘%district%’
✔ STARTS WITH (“district”) – equivalent to LIKE ‘district%’
Ensure Filters Meet Selectivity Thresholds
Standard Index Selectivity Threshold
A standard index is selective when it returns:
▪ < 30% of the first 1 million records
▪ < 15% of returned records after the first 1 million records
▪ No more than 1 million total records
Standard Index Selectivity Threshold
Selectivity threshold for Created Date index
Standard Index Selectivity Threshold
For 750,000 Account records
▪ < 30% of the first 1 million records
▪ 750,000 x .30 = 225,000
Standard Index Selectivity Threshold
For 3,500,000 Account records
▪ < 30% of the first 1 million records
▪ < 15% of returned records after the first 1 million records
▪ (1,000,000 x .30) + (2,500,000 x .15) = 675,000
Standard Index Selectivity Threshold
Over 5,600,000 Account records
▪ No more than 1 million records
▪ 1,000,000
Custom Index Selectivity Threshold
A custom index is selective when it returns:
▪ < 10% of the first million records
▪ < 5% of returned records after the first million records
▪ No more than 333,333 records
Create Indexes Selective Filter Fields
Trusted traveler program
Standard Fields With Indexes
▪ Id
▪ Name
▪ OwnerId
▪ CreatedDate
▪ SystemModstamp
▪ RecordType
▪ Master-detail fields
▪ Lookup fields
Custom Indexes
• Discover common filter conditions
• Determine selective fields in those conditions
• Request custom indexes
A filter condition is selective when …
… it uses an optimizable operator
… it meets the selectivity threshold
… selective fields have indexes
Skinny Tables: Last Resort For Non-optimizable Reports
Skinny Table
▪ Single Object. No cross-object joins
▪ Maximum of 100 fields
▪ Not aggregate/summary data. 1:1 recount between source
and skinny
▪ Skinny updated automatically
▪ Minimal joins
▪ salesforce.com will analyze and create
Tell me more about skinny tables …
Webinar: Inside the Force.com Query Optimizer
Efficient reports

Data Archiving/Aggregation
Data Archiving
Reduce the # of records the query optimizer needs to consider
▪ Determine strategy during design phase
▪ Move older records into a different object
▪ Soft deletes still count towards record count
Data Aggregation
▪ Report on historical data
▪ Save tabular or summary report to a custom object
▪ Use Analytic Snapshots or Batch Apex
▪ Gists:
• Batch Apex Class - https://gist.github.com/johntansfdc/7044473
• Trigger - https://gist.github.com/johntansfdc/7044570
Key Takeaways
✓ Reports should contain at least one selective filter
✓ A filter is selective if…
✓ the field is indexed
✓ the filter does not use an inefficient operator
✓ the filter meets the selectivity theshold

✓ Implement data archiving/aggregation strategies
Introducing customer case
Irena Miziolek &
Jeannette Liu-Deza
Technical & Solution Architects
NTT Centerstance
Agenda
What’s the problem
How to troubleshoot
What’s the solution
Client
Challenge
Reports & dashboards timing out
Errors in Data Loads
Information Overload
In the beginning….
Note: no real data is used in this presentation
Account information is very slow: Sales Rep
Sales information is too overwhelming: Sales Rep
Dashboards are slow or timing out: Execs
Approach to troubleshooting
Reports and dashboards are slow or timing out
Storage usage
Reduce data volume
Reduce data volume

Data Sampling
Frequency

Batch jobs
Compound keys
Workbench
Workbench, Deleted records
Update instead of delete/reload

Full Nightly Delete & Reload
Update/Insert
Upsert
Data loads failing
Error logs
Rollup summary fields
A little
housekeeping
Report tuning
Governance
In the end….
Account information is timely: Sales Rep
Sales information is useful: Sales Rep
Dashboards are responsive: Execs
Storage usage: greatly reduced
The Need for Speed: Building Reports That Fly
Session Summary
Building Reports That Fly
• Govern users access to reports and data
• Manage reporting frequency
• Add at least one selective filter per report
Related DevZone Hands-on, Mini-workshop

Wednesday 1:00-1:45 PM
Thursday

1:00-1:45 PM
We want to hear
from YOU!
Please take a moment to complete our
session survey
Surveys can be found in the “My Agenda”
portion of the Dreamforce app
The Need for Speed: Building Reports That Fly

More Related Content

PDF
Publishing Data to REST APIs with Lightning Process Builder
PDF
Using Microsoft Excel in Your Next Internal and External Audit - Learning The...
PPTX
TRINAMIX - AMIT SHARMA - Demantra Vs Oracle Demand Planning
PDF
Effective General Ledger and Journal Entry Fraud Detection Using Data Analytics
PDF
Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques
PDF
Excel Pivot Tables and Graphing for Auditors
PPT
Sage Accpacv5.6 Whats New
PDF
SAP LoadRunner by HP Solution Brief
Publishing Data to REST APIs with Lightning Process Builder
Using Microsoft Excel in Your Next Internal and External Audit - Learning The...
TRINAMIX - AMIT SHARMA - Demantra Vs Oracle Demand Planning
Effective General Ledger and Journal Entry Fraud Detection Using Data Analytics
Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques
Excel Pivot Tables and Graphing for Auditors
Sage Accpacv5.6 Whats New
SAP LoadRunner by HP Solution Brief

What's hot (17)

PPTX
Data Migration Made Easy
PPTX
SAP Dynamic Authorization Management
PPTX
Demantra & ascp
PPTX
AVATA Webinar: Solutions to Common Demantra & ASCP Challenges
DOCX
Resume _Original_Copy PP
PPTX
Compare 3 Accounting and Operational Systems: Financial and Reporting Capabil...
PDF
Demantra case study
PDF
Capture and Feed Telecom Network Data and More Into SAP HANA - Quicky and Aff...
PDF
Application Test Management and Quality Assurance
PPT
Improving the Accuracy of Variable Sales Compensation Forecasts
DOC
Hyperion Implementation Questionaries
PPT
Oracle Hyperion Planning Best Practices
PPTX
Oracle hyperion financial management
PDF
Oracle hfm beginner's guide part i
PDF
Simplify Complex Consolidations and Close Processes with Oracle Financial Con...
PDF
NetSuite and Sage ERP X3 Solution Spotlight
PDF
Oracle FCCS Getting Started Guide II
Data Migration Made Easy
SAP Dynamic Authorization Management
Demantra & ascp
AVATA Webinar: Solutions to Common Demantra & ASCP Challenges
Resume _Original_Copy PP
Compare 3 Accounting and Operational Systems: Financial and Reporting Capabil...
Demantra case study
Capture and Feed Telecom Network Data and More Into SAP HANA - Quicky and Aff...
Application Test Management and Quality Assurance
Improving the Accuracy of Variable Sales Compensation Forecasts
Hyperion Implementation Questionaries
Oracle Hyperion Planning Best Practices
Oracle hyperion financial management
Oracle hfm beginner's guide part i
Simplify Complex Consolidations and Close Processes with Oracle Financial Con...
NetSuite and Sage ERP X3 Solution Spotlight
Oracle FCCS Getting Started Guide II
Ad

Similar to The Need for Speed: Building Reports That Fly (20)

PPT
Building Reports That Fly
PDF
Follow the evidence: Troubleshooting Performance Issues
PDF
Performance Tuning for Visualforce and Apex
PPTX
Moyez Dreamforce 2017 presentation on Large Data Volumes in Salesforce
PDF
Handling of Large Data by Salesforce
PDF
Inside the Force.com Query Optimizer Webinar
PDF
Data Design Tips for Developing Robust Apps on Force.com
PDF
Avoid Growing Pains: Scale Your App for the Enterprise (October 14, 2014)
PDF
Development Strategies for Enterprise Scale From the Salesforce.com Platform
PPTX
Large Data Volume Salesforce experiences
PDF
Admin Tips, Tricks & Strategies for Data Quality in Salesforce - Francis Pind...
PPTX
Salesforce Data Tips, Tricks & Strategy (Dreamforce 15 Session)
PPT
Meet the Product Managers
PDF
Master the Lightning Report Builder - Service
PDF
Df14 Maintaining your orgs setup for optimal efficiency for dist
PPTX
Large Data Management Strategies
PPTX
Analyze billions of records on Salesforce App Cloud with BigObject
PDF
Webinar: So You Inherited (or Created) a Mess...Now What?
PPTX
Supercharge your Salesforce Reports and Dashboards
PPTX
Success Services - Driving business metrics
Building Reports That Fly
Follow the evidence: Troubleshooting Performance Issues
Performance Tuning for Visualforce and Apex
Moyez Dreamforce 2017 presentation on Large Data Volumes in Salesforce
Handling of Large Data by Salesforce
Inside the Force.com Query Optimizer Webinar
Data Design Tips for Developing Robust Apps on Force.com
Avoid Growing Pains: Scale Your App for the Enterprise (October 14, 2014)
Development Strategies for Enterprise Scale From the Salesforce.com Platform
Large Data Volume Salesforce experiences
Admin Tips, Tricks & Strategies for Data Quality in Salesforce - Francis Pind...
Salesforce Data Tips, Tricks & Strategy (Dreamforce 15 Session)
Meet the Product Managers
Master the Lightning Report Builder - Service
Df14 Maintaining your orgs setup for optimal efficiency for dist
Large Data Management Strategies
Analyze billions of records on Salesforce App Cloud with BigObject
Webinar: So You Inherited (or Created) a Mess...Now What?
Supercharge your Salesforce Reports and Dashboards
Success Services - Driving business metrics
Ad

More from Salesforce Developers (20)

PDF
Sample Gallery: Reference Code and Best Practices for Salesforce Developers
PDF
Maximizing Salesforce Lightning Experience and Lightning Component Performance
PDF
Local development with Open Source Base Components
PPTX
TrailheaDX India : Developer Highlights
PDF
Why developers shouldn’t miss TrailheaDX India
PPTX
CodeLive: Build Lightning Web Components faster with Local Development
PPTX
CodeLive: Converting Aura Components to Lightning Web Components
PPTX
Enterprise-grade UI with open source Lightning Web Components
PPTX
TrailheaDX and Summer '19: Developer Highlights
PDF
Live coding with LWC
PDF
Lightning web components - Episode 4 : Security and Testing
PDF
LWC Episode 3- Component Communication and Aura Interoperability
PDF
Lightning web components episode 2- work with salesforce data
PDF
Lightning web components - Episode 1 - An Introduction
PDF
Migrating CPQ to Advanced Calculator and JSQCP
PDF
Scale with Large Data Volumes and Big Objects in Salesforce
PDF
Replicate Salesforce Data in Real Time with Change Data Capture
PDF
Modern Development with Salesforce DX
PDF
Get Into Lightning Flow Development
PDF
Integrate CMS Content Into Lightning Communities with CMS Connect
Sample Gallery: Reference Code and Best Practices for Salesforce Developers
Maximizing Salesforce Lightning Experience and Lightning Component Performance
Local development with Open Source Base Components
TrailheaDX India : Developer Highlights
Why developers shouldn’t miss TrailheaDX India
CodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Converting Aura Components to Lightning Web Components
Enterprise-grade UI with open source Lightning Web Components
TrailheaDX and Summer '19: Developer Highlights
Live coding with LWC
Lightning web components - Episode 4 : Security and Testing
LWC Episode 3- Component Communication and Aura Interoperability
Lightning web components episode 2- work with salesforce data
Lightning web components - Episode 1 - An Introduction
Migrating CPQ to Advanced Calculator and JSQCP
Scale with Large Data Volumes and Big Objects in Salesforce
Replicate Salesforce Data in Real Time with Change Data Capture
Modern Development with Salesforce DX
Get Into Lightning Flow Development
Integrate CMS Content Into Lightning Communities with CMS Connect

Recently uploaded (20)

PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Encapsulation_ Review paper, used for researhc scholars
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Approach and Philosophy of On baking technology
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Cloud computing and distributed systems.
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Modernizing your data center with Dell and AMD
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Encapsulation_ Review paper, used for researhc scholars
“AI and Expert System Decision Support & Business Intelligence Systems”
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Review of recent advances in non-invasive hemoglobin estimation
Digital-Transformation-Roadmap-for-Companies.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Dropbox Q2 2025 Financial Results & Investor Presentation
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Approach and Philosophy of On baking technology
NewMind AI Weekly Chronicles - August'25 Week I
Spectral efficient network and resource selection model in 5G networks
Cloud computing and distributed systems.
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Understanding_Digital_Forensics_Presentation.pptx
Modernizing your data center with Dell and AMD
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...

The Need for Speed: Building Reports That Fly

  • 1. Building Reports That Fly Sean Regan, salesforce.com, @SFDCSRegan John Tan, salesforce.com, @johntansfdc Irena Miziolek, NTT Centerstance Jeannette Liu-Deza, NTT Centerstance
  • 2. Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
  • 4. You are a developer or architect maintaining your org …
  • 5. Slow reports return unreliable data that hurts user productivity and leads to mistakes …
  • 6. You need to make these reports faster and trusted …
  • 7. Agenda - Building reports that fly! 1. Governance • Configuration Access • Sharing Access • Data Architecture 2. Frequency • Dashboard & Report Refreshes 3. Efficient Reports • Tuning Reports • Data Archiving/Aggregation 4. Customer Case Study
  • 9. John C. Tan Architect Evangelist @johntansfdc
  • 10. View Our Content On Developerforce http://developer.force.com/architect
  • 11. Irena Miziolek & Jeannette Liu-Deza Technical & Solution Architects NTT Centerstance
  • 12. How Many Of You Have …? Run a Salesforce report … and waited forever?
  • 16. Restrict Report And List View Creation
  • 17. Report & list view governance helps you … • Increase user adoption • Increase employee productivity • Decrease employee mistakes • Save money
  • 19. Architect Sharing Based On Business Requirements
  • 21. What’s the impact of sharing access?
  • 23. Is the correct end result really enough?
  • 25. When It Isn’t Necessary, Get Rid Of it.
  • 26. Architect Your Data Model For Performance VS.
  • 29. More Is Not Always Better
  • 30. Push Data To Users: Force.com Streaming API Workflow Email Alerts Chatter Feeds Scheduled Reports Visualforce Pages
  • 31. Key Takeaways ✓ Governance ensures efficiency & accuracy ✓ Know your object model ✓ Push data to users to drive workflow ✓ Architect your sharing model based on business requirements
  • 33. Efficient reports • Tuning reports • Data archiving/aggregation
  • 35. What is the Force.com query optimizer? Generates the most efficient query based on: ▪ Statistics ▪ Indexes / Skinny Tables ▪ Sharing
  • 36. Best Practice: One+ Selective Filter Per report
  • 37. Selective Filters: Four Components 1. Filters - add filters to reduce data 2. Operators - avoid 2 inefficient filter operators 3. Thresholds – ensure filter meets selectivity threshold 4. Index Creation - index the filter field
  • 38. Filters Reduce The Scope Of Reports
  • 39. Fields That Often Make Good Filters ▪ Date fields ▪ Picklists ▪ Fields with wide and even distribution of values
  • 40. Non-Deterministic Formula Fields Aren’t Good Filters Can’t index For example: ▪ References related object ▪ CASE(MyUser__r.UserType__c,1,”Gold”,”Silver”) ▪ Create separate field and use trigger to populate Force.com SOQL Best Practices: Nulls and Formula Fields
  • 42. Avoid Negative Operators Query for reciprocal values instead ✖ NOT EQUALS (“closed”) ✔ EQUALS (“open”, “in progress”)
  • 43. Avoid Filters With A Leading % Wildcard CONTAINS ‘%searchstring%’ ✖ CONTAINS (“district”) – equivalent to LIKE ‘%district%’ ✔ STARTS WITH (“district”) – equivalent to LIKE ‘district%’
  • 44. Ensure Filters Meet Selectivity Thresholds
  • 45. Standard Index Selectivity Threshold A standard index is selective when it returns: ▪ < 30% of the first 1 million records ▪ < 15% of returned records after the first 1 million records ▪ No more than 1 million total records
  • 46. Standard Index Selectivity Threshold Selectivity threshold for Created Date index
  • 47. Standard Index Selectivity Threshold For 750,000 Account records ▪ < 30% of the first 1 million records ▪ 750,000 x .30 = 225,000
  • 48. Standard Index Selectivity Threshold For 3,500,000 Account records ▪ < 30% of the first 1 million records ▪ < 15% of returned records after the first 1 million records ▪ (1,000,000 x .30) + (2,500,000 x .15) = 675,000
  • 49. Standard Index Selectivity Threshold Over 5,600,000 Account records ▪ No more than 1 million records ▪ 1,000,000
  • 50. Custom Index Selectivity Threshold A custom index is selective when it returns: ▪ < 10% of the first million records ▪ < 5% of returned records after the first million records ▪ No more than 333,333 records
  • 51. Create Indexes Selective Filter Fields Trusted traveler program
  • 52. Standard Fields With Indexes ▪ Id ▪ Name ▪ OwnerId ▪ CreatedDate ▪ SystemModstamp ▪ RecordType ▪ Master-detail fields ▪ Lookup fields
  • 53. Custom Indexes • Discover common filter conditions • Determine selective fields in those conditions • Request custom indexes
  • 54. A filter condition is selective when … … it uses an optimizable operator … it meets the selectivity threshold … selective fields have indexes
  • 55. Skinny Tables: Last Resort For Non-optimizable Reports
  • 56. Skinny Table ▪ Single Object. No cross-object joins ▪ Maximum of 100 fields ▪ Not aggregate/summary data. 1:1 recount between source and skinny ▪ Skinny updated automatically ▪ Minimal joins ▪ salesforce.com will analyze and create
  • 57. Tell me more about skinny tables … Webinar: Inside the Force.com Query Optimizer
  • 59. Data Archiving Reduce the # of records the query optimizer needs to consider ▪ Determine strategy during design phase ▪ Move older records into a different object ▪ Soft deletes still count towards record count
  • 60. Data Aggregation ▪ Report on historical data ▪ Save tabular or summary report to a custom object ▪ Use Analytic Snapshots or Batch Apex ▪ Gists: • Batch Apex Class - https://gist.github.com/johntansfdc/7044473 • Trigger - https://gist.github.com/johntansfdc/7044570
  • 61. Key Takeaways ✓ Reports should contain at least one selective filter ✓ A filter is selective if… ✓ the field is indexed ✓ the filter does not use an inefficient operator ✓ the filter meets the selectivity theshold ✓ Implement data archiving/aggregation strategies
  • 63. Irena Miziolek & Jeannette Liu-Deza Technical & Solution Architects NTT Centerstance
  • 64. Agenda What’s the problem How to troubleshoot What’s the solution
  • 66. Challenge Reports & dashboards timing out Errors in Data Loads Information Overload
  • 67. In the beginning…. Note: no real data is used in this presentation
  • 68. Account information is very slow: Sales Rep
  • 69. Sales information is too overwhelming: Sales Rep
  • 70. Dashboards are slow or timing out: Execs
  • 72. Reports and dashboards are slow or timing out
  • 75. Reduce data volume Data Sampling Frequency Batch jobs
  • 79. Update instead of delete/reload Full Nightly Delete & Reload Update/Insert Upsert
  • 87. Account information is timely: Sales Rep
  • 88. Sales information is useful: Sales Rep
  • 93. Building Reports That Fly • Govern users access to reports and data • Manage reporting frequency • Add at least one selective filter per report
  • 94. Related DevZone Hands-on, Mini-workshop Wednesday 1:00-1:45 PM Thursday 1:00-1:45 PM
  • 95. We want to hear from YOU! Please take a moment to complete our session survey Surveys can be found in the “My Agenda” portion of the Dreamforce app