SlideShare una empresa de Scribd logo
1 de 25
Descargar para leer sin conexión
Integrating Salesforce with Business
Intelligence & Data Warehouses
Tim Deagan, CORT Business Services
@TimDeagan
All about CORT Business Services. A Berkshire Hathaway Company
CORT, a Berkshire Hathaway Company, is the world’s largest provider of rental furniture and much,
much more. When life creates transition, CORT swings into action. Whether you are relocating
permanently or temporarily and in need of a place to live, furnishings and local knowledge, a business
needing swing space furnishings or a new identity, or just looking for total flexibility and lifestyle options,
CORT finds innovative solutions that make practical sense. When you have a special event, as a
company or individual, like a corporate gala, wedding, trade show, product launch or company meeting,
CORT is there to make your event special and memorable. .

▪ ~1000 Salesforce licenses
▪ Customer for 5 years
▪ Force.com active developers
▪ 59 Custom Objects, ~650,000 API requests/day
Salesforce data is great in the Cloud, until you need
it down to earth for…
▪ Enterprise Data Integration
• Cross System Reporting
• Moving Data within the Enterprise

▪ Reporting across more objects that Salesforce supports
• More than four object relationships (~= JOINS)

▪ Advanced Historical Data Queries
Bring your Salesforce data into an RDBMS
▪ Query and Report with your internal tools
• SQL, not SOQL
• ODBC to MS Excel, MS Access, etc.

▪ Populate your Data Warehouse with Salesforce fact data
• Objects become raw tables
• ETL into ROLAP, OLAP, HOLAP, MOLAP, DOLAP
CORT uses DBAmp

http://www.forceamp.com/
DBAmp Functionality
▪ A SQL Server Linked Server to Salesforce production and sandbox
instances via HTTPS
▪ Real-time CRUD access
▪ Replication procedures to maintain local copies of Salesforce data
▪ Uses Salesforce API security
▪ Salesforce org based license (usable on unlimited servers)
▪ Great on-line support by the author
Two methods for real-time data access
SQL & SOQL
▪ SQL (technically Transact SQL or T-SQL)
• Uses ‘4-part’ naming convention
– ServerAlias.Catalog.Schema.LinkedTable
– Salesforce…Contact (Linked_Server_Name…Table)

• PRO
– Allows full range of SQL manipulation

• CON
– Pulls entire table into memory prior to executing WHERE clause or SQL
functions
Two methods for real-time data access
SQL & SOQL
▪ SOQL (technically SOQL via OPENQUERY)
• OpenQuery executes the passed query on the linked server
• PRO
– Higher performance

• CON
– To pass parameters, you must use a stored procedure that builds the query
string and executes it
CRUD access
CREATE & READ
▪ Create == Insert (Tables cannot be created)
• INSERT INTO Salesforce...Note (Body, IsPrivate, ParentId, Title) VALUES
('Body of Note 2','false', '00130000005ZsG8AAK','ToDelete')
• Stored procedure sf_bulkops provides batched bulk inserts

▪ Read == Select
• Select * from Salesforce...Contact
• Select * from openquery(Salesforce, ‘Select Id, CreatedDate, CreatedById
from Account’)
CRUD access
UPDATE & DELETE
▪ Update
• Update Salesforce…Account Set AnnualRevenue = 4000 Where
Id='00130000005ZsG8AAK'
• Update OPENQUERY(Salesforce, 'Select Id, AnnualRevenue from Account
where Id=''00130000005ZsG8AAK'' ') set AnnualRevenue = 4000

▪ Delete (Rows, not tables)
• Delete from Salesforce…Account Where Id='00130000005ZsG8AAK'
• Delete openquery(Salesforce,''Select Id from Account where
Id=''00130000005ZsG8AAK'' ‘)
Replicating Salesforce data locally
Incremental scheduled updates (hourly, daily, weekly, etc.)
▪ Stored Procedures for REFRESH and REPLICATE
• SF_Refresh brings over changes
• SF_Replicate brings over complete tables

▪ Schema changes are automatically detected and brought over
▪ Archived and deleted rows can be pulled over
▪ DRAMATICALLY faster queries than real time SQL or SOQL
▪ Local backup of Salesforce
How we use this
system at CORT
CORT Architecture
▪ Tech Stack
• SQL Server 2008 R2, SQL Server 2012
• SQL Server Reporting Services (SSRS)
• SQL Server Integration Services (SSIS)

▪ ROLAP (Relational Online Analytical Processing) Environment
• No cubes
• Nightly jobs crunching data into user friendly tables and views (some denormalization)
• SSRS reports providing CSV for Excel usage as well as straight reporting
• Combines data from ERP, CRM, eCommerce, Call Center and Financials
Examples at CORT
Find and delete unnecessary custom fields
▪ Created “Field Usage” reports
▪ Developed a ‘hit list’ and eliminated hundreds of unnecessary fields,
merging the data into existing fields as appropriate

Emergency restores
▪ Over-eager Salesforce bulk loader user crufted 10,000+ records
▪ We restored the relevant data from a SQL Server backup
Examples at CORT
Upload data from other systems
▪ Revenue data from our National Accounts portal needed to be
linked to Salesforce accounts
• SQL was written to get the National Account data, cross link it to the
Salesforce Account ID and upload the revenue nightly to Salesforce so
salespeople can see it

▪ Data from our HR system is used to mod or delete User records in
Salesforce.
• Systems are kept in sync with nightly job
Examples at CORT
Salesforce as a CMS
▪ Our District Policies are maintained
by the Districts in Salesforce
• SSRS Report publishes the Policies to
Truck Drivers and Warehouse workers
without Salesforce licenses
Examples at CORT
Creation of complicated associations
▪ Our call center gets sales credit for the leases they ‘touch’
▪ This is determined by any one of a number of activities
▪ Requires determining if they were the Opp owner at any point in the
past
▪ We created a View in SQL Server that identifies all the Opportunties
that they get credit for touching…
Were they ever
the opp owner?

Were they the
initial opp owner?

Did they ever
own the lead that
became the opp?

Did they create
the lead that
became the opp?
Examples at CORT
We wanted to segregate a line of business into a new Salesforce
instance/org.
▪ Extract all relevant Salesforce data (opps, leads, contacts, accounts,
attachments, etc.) for the LOB into SQL Server
▪ Create tables of all ID based relationships
• 415 fields containing keys

▪ Upload records to the new org
▪ Find new object IDs
▪ Change all references to the old IDs to the new IDs in SQL Server
▪ Update records with correct relationship IDs
How much data are we talking about?
dbo.Account
dbo.CallCenter
dbo.AccountContactRole
dbo.Campaign
dbo.AccountFeed
dbo.CAMPAIGNCAL__Campaign_Color__c
dbo.AccountHistory
dbo.CampaignFeed
dbo.AccountPartner
dbo.CampaignMember
dbo.AccountShare
dbo.CampaignMemberStatus
dbo.AccountTeamMember
dbo.CampaignShare
dbo.AdditionalNumber
dbo.Case
dbo.ApexClass
dbo.CaseComment
dbo.ApexComponent
dbo.CaseContactRole
dbo.ApexLog
dbo.CaseFeed
dbo.ApexPage
dbo.CaseHistory
dbo.ApexTestQueueItem
dbo.CaseShare
dbo.ApexTestResult
dbo.CaseSolution
dbo.ApexTrigger
dbo.CaseStatus
dbo.ApplicationNameValue__c
dbo.CaseTeamMember
dbo.Approval
dbo.CaseTeamRole
dbo.APXT_CMTR__Conga_Merge_Template__c
dbo.CaseTeamTemplate
dbo.APXT_CMTR__Conga_Merge_Template__Share dbo.CaseTeamTemplateMember
dbo.Asset
dbo.CaseTeamTemplateRecord
dbo.AssetFeed
dbo.CategoryData
dbo.AssignmentRule
dbo.CategoryNode
dbo.AsyncApexJob
dbo.ChatterActivity
dbo.Attachment
dbo.ClientBrowser
dbo.AuthProvider
dbo.CMC_Services__c
dbo.Blacklist_Audit__c
dbo.CMC_Services__History
dbo.Blacklisted_Word__c
dbo.CollaborationGroup
dbo.BLND_DFAC_Shared_View__c
dbo.CollaborationGroupFeed
dbo.BLND_DFCS_Carousel__c
dbo.CollaborationGroupMember
dbo.BLND_DFCS_Slide__c
dbo.CollaborationGroupMemberRequest
dbo.BLND_DFDT_Action_Item__c
dbo.CollaborationInvitation
dbo.BLND_DFDT_Discussion__c
dbo.College__c
dbo.BLND_DFDT_Highlight__c
dbo.College__History
dbo.BLND_DFDT_Issue__c
dbo.Community
dbo.BLND_DFDT_Linker__c
dbo.Contact
dbo.BLND_DFDT_Project__c
dbo.ContactFeed
dbo.BLND_DFDT_Resource__c
dbo.ContactHistory
dbo.BLND_DFDT_Task__c
dbo.ContactShare
dbo.BLND_DFFF_Form__c
dbo.ContentDocument
dbo.BLND_DFFF_Page__c
dbo.ContentDocumentFeed
dbo.BLND_DFTE_Expense__c
dbo.ContentDocumentHistory
dbo.BLND_DFTE_Time__c
dbo.ContentVersion
dbo.BLND_DFTT_Document__c
dbo.ContentVersionHistory
dbo.BLND_DFTT_Entity_Info__c
dbo.ContentWorkspace
dbo.BLND_DFTT_Folder__c
dbo.ContentWorkspaceDoc
dbo.BrandTemplate
dbo.Contract
dbo.BusinessHours
dbo.ContractContactRole
dbo.BusinessProcess
dbo.ContractFeed

dbo.ContractHistory

dbo.ContractStatus
dbo.Corporate_Housing__c
dbo.Corporate_Housing__Share
dbo.CORT_Location__c
dbo.CORT_Location__History
dbo.CORT_Showroom__c
dbo.Coupon_Code__c
dbo.Coupon_Code__History
dbo.Credit__c
dbo.Credit__History
dbo.CronTrigger
dbo.CurrencyType
dbo.Customer_Profile__c
dbo.Customer_Profile__History
dbo.Dashboard
dbo.DashboardComponent
dbo.DashboardComponentFeed
dbo.DashboardFeed
dbo.DatedConversionRate
dbo.DFSS_SnapShot_Item__c
dbo.DFSS_SnapShot_Push__c
dbo.District_Policy__c
dbo.District_Policy__History
dbo.Document
dbo.DocumentAttachmentMap
dbo.Domain
dbo.DomainSite
dbo.dsfs__DocuSign_Envelope__c
dbo.dsfs__DocuSign_Envelope_Document__c
dbo.dsfs__DocuSign_Envelope_Recipient__c
dbo.dsfs__DocuSign_Recipient_Status__c
dbo.dsfs__DocuSign_Recipient_Status__History
dbo.dsfs__DocuSign_Status__c
dbo.dsfs__DocuSign_Status__History
dbo.dsfs__DocuSignAccountConfiguration__c
dbo.EmailMessage
dbo.EmailServicesAddress
dbo.EmailServicesFunction
dbo.EmailTemplate
dbo.EntitySubscription
dbo.Evaluation_Phone__c
dbo.Evaluation_Phone__History
dbo.Event
dbo.EventAttendee
dbo.EventFeed
dbo.EventRelation
dbo.Events__c
dbo.Events__History

dbo.Exhibit_House_Client_del_del__History
dbo.FeedComment
dbo.FieldPermissions
dbo.FiscalYearSettings
dbo.Folder
dbo.ForecastShare
dbo.General_Contractor__c
dbo.General_Contractor__History
dbo.Group
dbo.GroupMember
dbo.HashtagDefinition
dbo.Holiday
dbo.Housing_Market__c
dbo.Housing_Market__Share
dbo.Idea
dbo.IdeaComment
dbo.Lead
dbo.LeadFeed
dbo.LeadHistory
dbo.LeadShare
dbo.LeadStatus
dbo.Lease_Types__c
dbo.Lease_Types__Share
dbo.LineitemOverride
dbo.LoginHistory
dbo.LoginIp
dbo.MailmergeTemplate
dbo.Market__c
dbo.Market__Share
dbo.National_Account__c
dbo.National_Account__History
dbo.NewsFeed
dbo.Note
dbo.ObjectPermissions
dbo.Opportunity
dbo.OpportunityCompetitor
dbo.OpportunityContactRole
dbo.OpportunityFeed
dbo.OpportunityFieldHistory
dbo.OpportunityHistory
dbo.OpportunityLineItem
dbo.OpportunityOverride
dbo.OpportunityPartner
dbo.OpportunityShare
dbo.OpportunityStage
dbo.OpportunityTeamMember
dbo.Organization
dbo.OrganizationProperty

dbo.Exhibit_House_Client_del_del__c

dbo.OrgWideEmailAddress

dbo.Partner
dbo.PartnerRole
dbo.Period
dbo.PermissionSet
dbo.PermissionSetAssignment
dbo.Pricebook2
dbo.Pricebook2History
dbo.PricebookEntry
dbo.ProcessInstance
dbo.ProcessInstanceStep
dbo.ProcessInstanceWorkitem
dbo.product_issue_tracker__c
dbo.product_issue_tracker__History
dbo.product_sku__c
dbo.product_sku__History
dbo.Product2
dbo.Product2Feed
dbo.Profile
dbo.Profile_Contact_Role__c
dbo.Profile_Contact_Role__History
dbo.Project__c
dbo.Project__History
dbo.purchase_order__c
dbo.purchase_order__History
dbo.PushTopic
dbo.QtlContactRole__c
dbo.QuantityForecast
dbo.QuantityForecastHistory
dbo.QueueSobject
dbo.Quote
dbo.Quote_To_Lease__c
dbo.Quote_To_Lease__History
dbo.QuoteDocument
dbo.QuoteLineItem
dbo.RecordType
dbo.Referral_Payment_Account__c
dbo.Referral_Payment_Account__History
dbo.Referral_Payment_Transaction__c
dbo.Referral_Payment_Transaction__History
dbo.Referral_Payment_Vendor__c
dbo.Referral_Payment_Vendor__History
dbo.Report
dbo.ReportFeed
dbo.RevenueForecast
dbo.RevenueForecastHistory
dbo.Scontrol
dbo.screenstepslive__ScreenStepsLiveSettings__c
dbo.screenstepslive__ScreenStepsLiveTags__c

25GB of data in lots of Tables!

dbo.SelfServiceUser
dbo.SetupEntityAccess
dbo.SFDC_520_Approval_Request__c
dbo.SFDC_520_Quote__c
dbo.SFDC_520_QuoteLine__c
dbo.SFGA__Ad_Group__c
dbo.SFGA__Ad_Group__Share
dbo.SFGA__Google_Campaign__c
dbo.SFGA__Google_Campaign__Share
dbo.SFGA__Keyword__c
dbo.SFGA__Keyword__Share
dbo.SFGA__Search_Phrase__c
dbo.SFGA__Search_Phrase__Share
dbo.SFGA__Text_Ad__c
dbo.SFGA__Text_Ad__Share
dbo.SFGA__Version_33_0_3__c
dbo.SFGA__Version_33_0_3__Share
dbo.Site
dbo.SiteDomain
dbo.SiteFeed
dbo.SiteHistory
dbo.Solution
dbo.SolutionFeed
dbo.SolutionHistory
dbo.SolutionStatus
dbo.StaticResource
dbo.TableRefreshTime
dbo.Task
dbo.TaskFeed
dbo.TaskPriority
dbo.TaskStatus
dbo.Topic
dbo.User
dbo.User_Load
dbo.UserAccountTeamMember
dbo.UserFeed
dbo.UserLicense
dbo.UserPreference
dbo.UserRole
dbo.UserTeamMember
dbo.VASSnaps
dbo.vendor__c
dbo.vendor__History
dbo.Venue__c
dbo.WebLink
dbo.xtma_Email_Result__c
dbo.xtma_Individual_Email_Result__c
dbo.xtma_Link_Detail__c
DBAmp creates all
the Foreign Key
constraints that allow
diagramming.
However, pulling all
the tables into an
ERD makes for a
VERY LARGE
diagram!
Tim Deagan
CORT Business Services
Executive Director, Product
Architecture
@TimDeagan
Integrating Salesforce With Business Intelligence and Data Warehouses

Más contenido relacionado

La actualidad más candente

Microsoft SQL Server - Parallel Data Warehouse Presentation
Microsoft SQL Server - Parallel Data Warehouse PresentationMicrosoft SQL Server - Parallel Data Warehouse Presentation
Microsoft SQL Server - Parallel Data Warehouse PresentationMicrosoft Private Cloud
 
SharePoint Intersections - SP10 - Getting Started with Office 365 - Identity,...
SharePoint Intersections - SP10 - Getting Started with Office 365 - Identity,...SharePoint Intersections - SP10 - Getting Started with Office 365 - Identity,...
SharePoint Intersections - SP10 - Getting Started with Office 365 - Identity,...Dan Usher
 
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...Edureka!
 
Azure IaaS-PaaS Migrations - Lessons Learned
Azure IaaS-PaaS Migrations - Lessons LearnedAzure IaaS-PaaS Migrations - Lessons Learned
Azure IaaS-PaaS Migrations - Lessons LearnedJohn Calvert
 
Snowflake for Data Engineering
Snowflake for Data EngineeringSnowflake for Data Engineering
Snowflake for Data EngineeringHarald Erb
 
Dive into Microsoft SharePoint Server 2016 Upgrade, Migration and beyond
Dive into Microsoft SharePoint Server 2016 Upgrade, Migration and beyondDive into Microsoft SharePoint Server 2016 Upgrade, Migration and beyond
Dive into Microsoft SharePoint Server 2016 Upgrade, Migration and beyondJason Himmelstein
 
What is the Oracle PaaS Cloud for Developers (Oracle Cloud Day, The Netherlan...
What is the Oracle PaaS Cloud for Developers (Oracle Cloud Day, The Netherlan...What is the Oracle PaaS Cloud for Developers (Oracle Cloud Day, The Netherlan...
What is the Oracle PaaS Cloud for Developers (Oracle Cloud Day, The Netherlan...Lucas Jellema
 
OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c Tuning Fea...
OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c Tuning Fea...OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c Tuning Fea...
OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c Tuning Fea...Alex Zaballa
 
Microsoft Flow best practices European Collaboration Summit 2018
Microsoft Flow best practices European Collaboration Summit 2018Microsoft Flow best practices European Collaboration Summit 2018
Microsoft Flow best practices European Collaboration Summit 2018serge luca
 
Azure Databricks is Easier Than You Think
Azure Databricks is Easier Than You ThinkAzure Databricks is Easier Than You Think
Azure Databricks is Easier Than You ThinkIke Ellis
 
2019 - OOW - Database Migration Methods from On-Premise to Cloud
2019 - OOW - Database Migration Methods from On-Premise to Cloud2019 - OOW - Database Migration Methods from On-Premise to Cloud
2019 - OOW - Database Migration Methods from On-Premise to CloudMarcus Vinicius Miguel Pedro
 
Migrating on premises workload to azure sql database
Migrating on premises workload to azure sql databaseMigrating on premises workload to azure sql database
Migrating on premises workload to azure sql databasePARIKSHIT SAVJANI
 
Jean-René Roy : The Modern DBA
Jean-René Roy : The Modern DBAJean-René Roy : The Modern DBA
Jean-René Roy : The Modern DBAMSDEVMTL
 
Sql Server Tuning for SharePoint : what every consultant must know (Office 36...
Sql Server Tuning for SharePoint : what every consultant must know (Office 36...Sql Server Tuning for SharePoint : what every consultant must know (Office 36...
Sql Server Tuning for SharePoint : what every consultant must know (Office 36...serge luca
 
RDX Insights Presentation - Microsoft Business Intelligence
RDX Insights Presentation - Microsoft Business IntelligenceRDX Insights Presentation - Microsoft Business Intelligence
RDX Insights Presentation - Microsoft Business IntelligenceChristopher Foot
 
Systems on the edge - your stepping stones into Oracle Public PaaS Cloud - AM...
Systems on the edge - your stepping stones into Oracle Public PaaS Cloud - AM...Systems on the edge - your stepping stones into Oracle Public PaaS Cloud - AM...
Systems on the edge - your stepping stones into Oracle Public PaaS Cloud - AM...Lucas Jellema
 
XML Publisher (www.aboutoracleapps.com)
XML Publisher (www.aboutoracleapps.com)XML Publisher (www.aboutoracleapps.com)
XML Publisher (www.aboutoracleapps.com)Chris Martin
 

La actualidad más candente (20)

Microsoft SQL Server - Parallel Data Warehouse Presentation
Microsoft SQL Server - Parallel Data Warehouse PresentationMicrosoft SQL Server - Parallel Data Warehouse Presentation
Microsoft SQL Server - Parallel Data Warehouse Presentation
 
SharePoint Intersections - SP10 - Getting Started with Office 365 - Identity,...
SharePoint Intersections - SP10 - Getting Started with Office 365 - Identity,...SharePoint Intersections - SP10 - Getting Started with Office 365 - Identity,...
SharePoint Intersections - SP10 - Getting Started with Office 365 - Identity,...
 
oracle openworld review UX presentation 2016
oracle openworld review UX presentation 2016oracle openworld review UX presentation 2016
oracle openworld review UX presentation 2016
 
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
 
Azure IaaS-PaaS Migrations - Lessons Learned
Azure IaaS-PaaS Migrations - Lessons LearnedAzure IaaS-PaaS Migrations - Lessons Learned
Azure IaaS-PaaS Migrations - Lessons Learned
 
OBIEE On Cloud
OBIEE On CloudOBIEE On Cloud
OBIEE On Cloud
 
Snowflake for Data Engineering
Snowflake for Data EngineeringSnowflake for Data Engineering
Snowflake for Data Engineering
 
Dive into Microsoft SharePoint Server 2016 Upgrade, Migration and beyond
Dive into Microsoft SharePoint Server 2016 Upgrade, Migration and beyondDive into Microsoft SharePoint Server 2016 Upgrade, Migration and beyond
Dive into Microsoft SharePoint Server 2016 Upgrade, Migration and beyond
 
What is the Oracle PaaS Cloud for Developers (Oracle Cloud Day, The Netherlan...
What is the Oracle PaaS Cloud for Developers (Oracle Cloud Day, The Netherlan...What is the Oracle PaaS Cloud for Developers (Oracle Cloud Day, The Netherlan...
What is the Oracle PaaS Cloud for Developers (Oracle Cloud Day, The Netherlan...
 
OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c Tuning Fea...
OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c Tuning Fea...OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c Tuning Fea...
OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c Tuning Fea...
 
Microsoft Flow best practices European Collaboration Summit 2018
Microsoft Flow best practices European Collaboration Summit 2018Microsoft Flow best practices European Collaboration Summit 2018
Microsoft Flow best practices European Collaboration Summit 2018
 
Azure Databricks is Easier Than You Think
Azure Databricks is Easier Than You ThinkAzure Databricks is Easier Than You Think
Azure Databricks is Easier Than You Think
 
2019 - OOW - Database Migration Methods from On-Premise to Cloud
2019 - OOW - Database Migration Methods from On-Premise to Cloud2019 - OOW - Database Migration Methods from On-Premise to Cloud
2019 - OOW - Database Migration Methods from On-Premise to Cloud
 
Migrating on premises workload to azure sql database
Migrating on premises workload to azure sql databaseMigrating on premises workload to azure sql database
Migrating on premises workload to azure sql database
 
Jean-René Roy : The Modern DBA
Jean-René Roy : The Modern DBAJean-René Roy : The Modern DBA
Jean-René Roy : The Modern DBA
 
Sql Server Tuning for SharePoint : what every consultant must know (Office 36...
Sql Server Tuning for SharePoint : what every consultant must know (Office 36...Sql Server Tuning for SharePoint : what every consultant must know (Office 36...
Sql Server Tuning for SharePoint : what every consultant must know (Office 36...
 
RDX Insights Presentation - Microsoft Business Intelligence
RDX Insights Presentation - Microsoft Business IntelligenceRDX Insights Presentation - Microsoft Business Intelligence
RDX Insights Presentation - Microsoft Business Intelligence
 
Systems on the edge - your stepping stones into Oracle Public PaaS Cloud - AM...
Systems on the edge - your stepping stones into Oracle Public PaaS Cloud - AM...Systems on the edge - your stepping stones into Oracle Public PaaS Cloud - AM...
Systems on the edge - your stepping stones into Oracle Public PaaS Cloud - AM...
 
XML Publisher (www.aboutoracleapps.com)
XML Publisher (www.aboutoracleapps.com)XML Publisher (www.aboutoracleapps.com)
XML Publisher (www.aboutoracleapps.com)
 
Oow2016 review--paas-microservices-
Oow2016 review--paas-microservices-Oow2016 review--paas-microservices-
Oow2016 review--paas-microservices-
 

Similar a Integrating Salesforce With Business Intelligence and Data Warehouses

Introduction to Building E-Commerce Solutions on Heroku and Salesforce
Introduction to Building E-Commerce Solutions on Heroku and SalesforceIntroduction to Building E-Commerce Solutions on Heroku and Salesforce
Introduction to Building E-Commerce Solutions on Heroku and SalesforceSalesforce Developers
 
Blazing new trails with salesforce data nov 16, 2021
Blazing new trails with salesforce data   nov 16, 2021Blazing new trails with salesforce data   nov 16, 2021
Blazing new trails with salesforce data nov 16, 2021Safe Software
 
Getting Started With Apex REST Services
Getting Started With Apex REST ServicesGetting Started With Apex REST Services
Getting Started With Apex REST ServicesSalesforce Developers
 
Salesforce Integration Patterns
Salesforce Integration PatternsSalesforce Integration Patterns
Salesforce Integration Patternsusolutions
 
Ibis 2015 final template
Ibis 2015 final templateIbis 2015 final template
Ibis 2015 final templateSumit Sarkar
 
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...Cyber Group
 
Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...
Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...
Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...confluent
 
Azure Data Factory for Azure Data Week
Azure Data Factory for Azure Data WeekAzure Data Factory for Azure Data Week
Azure Data Factory for Azure Data WeekMark Kromer
 
A Complete BI Solution in About an Hour!
A Complete BI Solution in About an Hour!A Complete BI Solution in About an Hour!
A Complete BI Solution in About an Hour!Aaron King
 
Integrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast Iron
Integrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast IronIntegrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast Iron
Integrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast IronProlifics
 
Integrating SFDC and Oracle ERP with IBM Websphere CastIron Appliance
Integrating SFDC and Oracle ERP with IBM Websphere CastIron ApplianceIntegrating SFDC and Oracle ERP with IBM Websphere CastIron Appliance
Integrating SFDC and Oracle ERP with IBM Websphere CastIron ApplianceSandeep Chellingi
 
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...Tom Rieger
 
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...Tracy Blackburn
 
In-memory ColumnStore Index
In-memory ColumnStore IndexIn-memory ColumnStore Index
In-memory ColumnStore IndexSolidQ
 
Oracle database 12c_and_DevOps
Oracle database 12c_and_DevOpsOracle database 12c_and_DevOps
Oracle database 12c_and_DevOpsMaria Colgan
 
What's New in Apache Hive 3.0?
What's New in Apache Hive 3.0?What's New in Apache Hive 3.0?
What's New in Apache Hive 3.0?DataWorks Summit
 
What's New in Apache Hive 3.0 - Tokyo
What's New in Apache Hive 3.0 - TokyoWhat's New in Apache Hive 3.0 - Tokyo
What's New in Apache Hive 3.0 - TokyoDataWorks Summit
 
Operational foundation for the sql server dba
Operational foundation for the sql server dbaOperational foundation for the sql server dba
Operational foundation for the sql server dbaPeterShore4
 
ITB2017 - Slaying the ORM dragons with cborm
ITB2017 - Slaying the ORM dragons with cbormITB2017 - Slaying the ORM dragons with cborm
ITB2017 - Slaying the ORM dragons with cbormOrtus Solutions, Corp
 

Similar a Integrating Salesforce With Business Intelligence and Data Warehouses (20)

Introduction to Building E-Commerce Solutions on Heroku and Salesforce
Introduction to Building E-Commerce Solutions on Heroku and SalesforceIntroduction to Building E-Commerce Solutions on Heroku and Salesforce
Introduction to Building E-Commerce Solutions on Heroku and Salesforce
 
Blazing new trails with salesforce data nov 16, 2021
Blazing new trails with salesforce data   nov 16, 2021Blazing new trails with salesforce data   nov 16, 2021
Blazing new trails with salesforce data nov 16, 2021
 
Getting Started With Apex REST Services
Getting Started With Apex REST ServicesGetting Started With Apex REST Services
Getting Started With Apex REST Services
 
Salesforce Integration Patterns
Salesforce Integration PatternsSalesforce Integration Patterns
Salesforce Integration Patterns
 
Ibis 2015 final template
Ibis 2015 final templateIbis 2015 final template
Ibis 2015 final template
 
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
 
Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...
Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...
Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...
 
Azure Data Factory for Azure Data Week
Azure Data Factory for Azure Data WeekAzure Data Factory for Azure Data Week
Azure Data Factory for Azure Data Week
 
A Complete BI Solution in About an Hour!
A Complete BI Solution in About an Hour!A Complete BI Solution in About an Hour!
A Complete BI Solution in About an Hour!
 
1696153390685.pdf
1696153390685.pdf1696153390685.pdf
1696153390685.pdf
 
Integrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast Iron
Integrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast IronIntegrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast Iron
Integrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast Iron
 
Integrating SFDC and Oracle ERP with IBM Websphere CastIron Appliance
Integrating SFDC and Oracle ERP with IBM Websphere CastIron ApplianceIntegrating SFDC and Oracle ERP with IBM Websphere CastIron Appliance
Integrating SFDC and Oracle ERP with IBM Websphere CastIron Appliance
 
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
 
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
 
In-memory ColumnStore Index
In-memory ColumnStore IndexIn-memory ColumnStore Index
In-memory ColumnStore Index
 
Oracle database 12c_and_DevOps
Oracle database 12c_and_DevOpsOracle database 12c_and_DevOps
Oracle database 12c_and_DevOps
 
What's New in Apache Hive 3.0?
What's New in Apache Hive 3.0?What's New in Apache Hive 3.0?
What's New in Apache Hive 3.0?
 
What's New in Apache Hive 3.0 - Tokyo
What's New in Apache Hive 3.0 - TokyoWhat's New in Apache Hive 3.0 - Tokyo
What's New in Apache Hive 3.0 - Tokyo
 
Operational foundation for the sql server dba
Operational foundation for the sql server dbaOperational foundation for the sql server dba
Operational foundation for the sql server dba
 
ITB2017 - Slaying the ORM dragons with cborm
ITB2017 - Slaying the ORM dragons with cbormITB2017 - Slaying the ORM dragons with cborm
ITB2017 - Slaying the ORM dragons with cborm
 

Más de Salesforce Developers

Sample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce DevelopersSample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce DevelopersSalesforce Developers
 
Maximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component PerformanceMaximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component PerformanceSalesforce Developers
 
Local development with Open Source Base Components
Local development with Open Source Base ComponentsLocal development with Open Source Base Components
Local development with Open Source Base ComponentsSalesforce Developers
 
TrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsTrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsSalesforce Developers
 
Why developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX IndiaWhy developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX IndiaSalesforce Developers
 
CodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local DevelopmentCodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local DevelopmentSalesforce Developers
 
CodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web ComponentsCodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web ComponentsSalesforce Developers
 
Enterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web ComponentsEnterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web ComponentsSalesforce Developers
 
TrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsTrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsSalesforce Developers
 
Lightning web components - Episode 4 : Security and Testing
Lightning web components  - Episode 4 : Security and TestingLightning web components  - Episode 4 : Security and Testing
Lightning web components - Episode 4 : Security and TestingSalesforce Developers
 
LWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura InteroperabilityLWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura InteroperabilitySalesforce Developers
 
Lightning web components episode 2- work with salesforce data
Lightning web components   episode 2- work with salesforce dataLightning web components   episode 2- work with salesforce data
Lightning web components episode 2- work with salesforce dataSalesforce Developers
 
Lightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionLightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionSalesforce Developers
 
Migrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCPMigrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCPSalesforce Developers
 
Scale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in SalesforceScale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in SalesforceSalesforce Developers
 
Replicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data CaptureReplicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data CaptureSalesforce Developers
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DXSalesforce Developers
 
Integrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS ConnectIntegrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS ConnectSalesforce Developers
 

Más de Salesforce Developers (20)

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

Último

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 

Último (20)

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 

Integrating Salesforce With Business Intelligence and Data Warehouses