SlideShare a Scribd company logo
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
Integrating Salesforce With Business Intelligence and Data Warehouses
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

More Related Content

PDF
Real-time SQL Access to Your Salesforce.com Data Using Progress Data Direct
PDF
Real-time SQL Access for Your Salesforce.com Data
PDF
High Scale Relational Storage at Salesforce Built with Apache HBase and Apach...
PPTX
CData Power BI Connectors
PDF
Deploying OBIEE in the Cloud - Oracle Openworld 2014
PPTX
SQL for Web APIs - Simplifying Data Access for API Consumers
PDF
Deploying Full Oracle BI Platforms to Oracle Cloud - OOW2015
PPTX
Overview of Oracle Product Portfolio (focus on Platform) - April, 2017
Real-time SQL Access to Your Salesforce.com Data Using Progress Data Direct
Real-time SQL Access for Your Salesforce.com Data
High Scale Relational Storage at Salesforce Built with Apache HBase and Apach...
CData Power BI Connectors
Deploying OBIEE in the Cloud - Oracle Openworld 2014
SQL for Web APIs - Simplifying Data Access for API Consumers
Deploying Full Oracle BI Platforms to Oracle Cloud - OOW2015
Overview of Oracle Product Portfolio (focus on Platform) - April, 2017

What's hot (20)

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

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

PDF
Introduction to Building E-Commerce Solutions on Heroku and Salesforce
PDF
Blazing new trails with salesforce data nov 16, 2021
PDF
Getting Started With Apex REST Services
PPTX
Salesforce Integration Patterns
PPTX
Ibis 2015 final template
PPTX
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
PDF
Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...
PPTX
Azure Data Factory for Azure Data Week
PPTX
A Complete BI Solution in About an Hour!
PDF
1696153390685.pdf
PPTX
Integrating SFDC and Oracle ERP with IBM Websphere CastIron Appliance
PPTX
Integrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast Iron
PDF
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
PDF
Webcast slides for "Low Risk and High Reward in App Decomm with InfoArchive a...
PDF
In-memory ColumnStore Index
PPTX
Oracle database 12c_and_DevOps
PDF
What's New in Apache Hive 3.0?
PDF
What's New in Apache Hive 3.0 - Tokyo
PPTX
Operational foundation for the sql server dba
PDF
ITB2017 - Slaying the ORM dragons with cborm
Introduction to Building E-Commerce Solutions on Heroku and Salesforce
Blazing new trails with salesforce data nov 16, 2021
Getting Started With Apex REST Services
Salesforce Integration Patterns
Ibis 2015 final template
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
Relational Database Stockholm Syndrome (Neal Murray, 6 Point 6) London 2019 C...
Azure Data Factory for Azure Data Week
A Complete BI Solution in About an Hour!
1696153390685.pdf
Integrating SFDC and Oracle ERP with IBM Websphere CastIron Appliance
Integrating Salesforce.com and Oracle ERP Using IBM WebSphere Cast Iron
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
Oracle database 12c_and_DevOps
What's New in Apache Hive 3.0?
What's New in Apache Hive 3.0 - Tokyo
Operational foundation for the sql server dba
ITB2017 - Slaying the ORM dragons with cborm
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
Machine learning based COVID-19 study performance prediction
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Encapsulation theory and applications.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
KodekX | Application Modernization Development
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
cuic standard and advanced reporting.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Approach and Philosophy of On baking technology
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
Machine learning based COVID-19 study performance prediction
Review of recent advances in non-invasive hemoglobin estimation
Digital-Transformation-Roadmap-for-Companies.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Encapsulation theory and applications.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
KodekX | Application Modernization Development
20250228 LYD VKU AI Blended-Learning.pptx
MIND Revenue Release Quarter 2 2025 Press Release
cuic standard and advanced reporting.pdf
The AUB Centre for AI in Media Proposal.docx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Approach and Philosophy of On baking technology
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
NewMind AI Weekly Chronicles - August'25 Week I
Spectral efficient network and resource selection model in 5G networks
Advanced methodologies resolving dimensionality complications for autism neur...
Building Integrated photovoltaic BIPV_UPV.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Chapter 3 Spatial Domain Image Processing.pdf

Integrating Salesforce With Business Intelligence and Data Warehouses