SlideShare a Scribd company logo
1 of 29
Analysis Services Tabular Model
#SQLSatLima
BIG Thanks to SQLSatLima sponsors
#SQLSatLima
Sponsor sessions at 16:50
Don’t miss them, they might be getting distributing
some awesome prizes!
KEMP
ER CLOUD 4U
Also Games XBOX One & Raffle prizes at 17:30
#SQLSatLima
Hola, soy Jorge Muchaypiña
Business Intelligence Specialist
◦ MTA Database Fundamentals
◦ MCSA SQL Server 2012/2014
◦ MCSE Business Intelligence
◦ MCSE Data Management and Analytics
◦ MCSA Database Development SQL 2016
◦ Scrum Master
◦ Itil Foundations
Speaker en SQL Pass Lima y Latinoamérica.
Blog : https://jorgemuchaypina.wordpress.com/
Correo: jomichel2003@Hotmail.com
#SQLSatLima
Agenda
◦ Introducción a Tabular Model
◦ Diseñando un Modelo Tabular
◦ Enriqueciéndolo
◦ Consultando con DAX
◦ Administración y Seguridad
◦ Estrategia de Analysis Services Tabular Model
Introduccion a Analysis Services
#SQLSatLima
Analysis Services – En Perspectiva
1996
1998
2000
2001
2003
2005
2008
2012
2014
PowerPivot for Excel 2010
“Vertipaq”
Tabular Model
xVelocity, In-Memory
2011
2016
#SQLSatLima
Power Pivot and Tabular
Vertipaq xVelocity
In-Memory tabular compression and
analysis engine of Power Pivot
xVelocity in-memory analytics engine
xVelocity memory optimized ColumnStore index
#SQLSatLima
xVelocity in-memory
analytics engine
xVelocity
xVelocity Relational
Tabular ColumnStore IndexPower Pivot
Xvelocity en SQL Server
#SQLSatLima
Capa de Consultas
#SQLSatLima
SQL Server como un Datawarehouse – On Premiese
SQL Server
Analysis Services
SQL Server Database Engine
Microsoft SQL Server Integration Services
SQL Server Master Data Services
 1011000110
SQL Server Data Quality
Services
Microsoft SQL Azure
and the Windows Azure
Marketplace
Microsoft SharePoint
Server
Microsoft PowerPivot
Technologies
Microsoft Excel
• Data Mining Add-In
• PowerPivot Add-In
• MDS Add-In
Power View
SQL Server
Reporting Services
Reports, KPIs, and Dashboards
DataWarehousingBusinessIntelligence
#SQLSatLima
Develop
Ecosistema del Desarrollo Tabular
Workspace Tabular
Deploy
Configure
Query
Deployed Tabular
Diseñando un Modelo Tabular
#SQLSatLima
Setting Up The Project
Clock-wise rule of thumb
1. Configure Model.bim properties
2. Configure Project Properties
3. Import from Data Source
(Don’t forget to add the Solution to Source Control)
#SQLSatLima
Mejoras para el UX
1. Marking date table as
date
2. Column Properties
a. Column Name
b. Date Format
c. Data Type
d. Description
e. Hidden
f. Sort By Column
g. Data Category
h. Default Field Set
i. Default Image
j. Default Label
k. Keep Unique Rows
l. Row identifier
m.Summarize By
n. Table Detail Position
Consultando con DAX
#SQLSatLima
EVALUATE
[DEFINE
{MEASURE <tableName>[<name>] =
<expression>}
EVALUATE <table>
[ORDER BY {<expression> [{ASC | DESC}]}[,
…]
[START AT {<value>|<parameter>} [, …]]]
Retrieve data from table expression.
T-SQL
Equivalent
SELECT * FROM <table>
Note Formatting configured in Tabular Model is lost
#SQLSatLima
EVALUATE
is similar to
SELECT * FROM [dbo].[FactInternetSales]
EVALUATE
'InternetSales'
#SQLSatLima
EVALUATE
#SQLSatLima
SUMMARIZE
SUMMARIZE(<table>, <groupBy_columnName>[,
<groupBy_columnName>]…[, <name>,
<expression>]…)
Returns requested aggregated values over a set of groups
T-SQL
Equivalent
SELECT <columns>, <aggregated columns> FROM <table>
GROUP BY <columns>
Type Statistical Function
#SQLSatLima
SUMMARIZE
is similar to …
EVALUATE
SUMMARIZE (
'InternetSales',
'Product'[Product Name],
"Sales", SUM ( 'InternetSales'[Sales Amount] ),
"Revenue", 'InternetSales'[Revenue]
)
#SQLSatLima
SUMMARIZE
SELECT
p.[EnglishProductName],
SUM(f.[SalesAmount]) AS Sales,
SUM(f.[SalesAmount] - f.[ProductStandardCost] -
f.[Freight] - f.[TaxAmt]) AS Revenue
FROM [dbo].[FactInternetSales] f
INNER JOIN [dbo].[DimProduct] p
ON p.[ProductKey] = f.[ProductKey]
GROUP BY
p.[EnglishProductName];
#SQLSatLima
SUMMARIZE
Administración y Seguridad
#SQLSatLima
Processing Partitions
Multiple mutually exclusive partitions
Eliminate unnecessary processing and
processor load on the AS servers
VertiPaq SE
In-Memory
Process
Query
C u r r e n t
June 2013
April 2013
May 2013
…
In-Memory
PartitionsProcess
#SQLSatLima
Database Roles
Database Roles
•Control access to model and data
Permissions Description
None Members cannot modify or query data
Read Members can query data, but can’t change database or see database
Read and Process Members can query data and process database, but can’t change database
or see database model
Process Members can process database, but can’t change database, see database
model or query data
Administrator Members can do everything to database .
Estrategia de SSAS: Tabular Model
#SQLSatLima
Factors To Consider
complexity
scalability
reporting tools
security
data sources
#SQLSatLima
GRACIAS…!!!

More Related Content

Similar to SQL Saturday Lima - Analysis Services

Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction Mark Ginnebaugh
 
Oracle vs. SQL Server- War of the Indices
Oracle vs. SQL Server- War of the IndicesOracle vs. SQL Server- War of the Indices
Oracle vs. SQL Server- War of the IndicesKellyn Pot'Vin-Gorman
 
Database queries
Database queriesDatabase queries
Database querieslaiba29012
 
Tips & Tricks SQL in the City Seattle 2014
Tips & Tricks SQL in the City Seattle 2014Tips & Tricks SQL in the City Seattle 2014
Tips & Tricks SQL in the City Seattle 2014Ike Ellis
 
SQL PASS 2017 - Building one million predictions per second using SQL Server ...
SQL PASS 2017 - Building one million predictions per second using SQL Server ...SQL PASS 2017 - Building one million predictions per second using SQL Server ...
SQL PASS 2017 - Building one million predictions per second using SQL Server ...Amit Banerjee
 
chap 7.ppt(sql).ppt
chap 7.ppt(sql).pptchap 7.ppt(sql).ppt
chap 7.ppt(sql).pptarjun431527
 
Database Foundation Training
Database Foundation TrainingDatabase Foundation Training
Database Foundation TrainingFranky Lao
 
Adbms 21 sql 99 schema definition constraints and queries
Adbms 21 sql 99 schema definition constraints and queriesAdbms 21 sql 99 schema definition constraints and queries
Adbms 21 sql 99 schema definition constraints and queriesVaibhav Khanna
 
U-SQL Meta Data Catalog (SQLBits 2016)
U-SQL Meta Data Catalog (SQLBits 2016)U-SQL Meta Data Catalog (SQLBits 2016)
U-SQL Meta Data Catalog (SQLBits 2016)Michael Rys
 
Getting started with Pandas Cheatsheet.pdf
Getting started with Pandas Cheatsheet.pdfGetting started with Pandas Cheatsheet.pdf
Getting started with Pandas Cheatsheet.pdfSudhakarVenkey
 
[JSS2015] Nouveautés SQL Server 2016:Sécurité,Temporal & Stretch Tables
[JSS2015] Nouveautés SQL Server 2016:Sécurité,Temporal & Stretch Tables[JSS2015] Nouveautés SQL Server 2016:Sécurité,Temporal & Stretch Tables
[JSS2015] Nouveautés SQL Server 2016:Sécurité,Temporal & Stretch TablesGUSS
 

Similar to SQL Saturday Lima - Analysis Services (20)

Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
 
Oracle vs. SQL Server- War of the Indices
Oracle vs. SQL Server- War of the IndicesOracle vs. SQL Server- War of the Indices
Oracle vs. SQL Server- War of the Indices
 
01 basic orders
01   basic orders01   basic orders
01 basic orders
 
Database queries
Database queriesDatabase queries
Database queries
 
mis4200notes4_2.ppt
mis4200notes4_2.pptmis4200notes4_2.ppt
mis4200notes4_2.ppt
 
Tips & Tricks SQL in the City Seattle 2014
Tips & Tricks SQL in the City Seattle 2014Tips & Tricks SQL in the City Seattle 2014
Tips & Tricks SQL in the City Seattle 2014
 
Rdbms day3
Rdbms day3Rdbms day3
Rdbms day3
 
SQL PASS 2017 - Building one million predictions per second using SQL Server ...
SQL PASS 2017 - Building one million predictions per second using SQL Server ...SQL PASS 2017 - Building one million predictions per second using SQL Server ...
SQL PASS 2017 - Building one million predictions per second using SQL Server ...
 
Chap 7
Chap 7Chap 7
Chap 7
 
chap 7.ppt(sql).ppt
chap 7.ppt(sql).pptchap 7.ppt(sql).ppt
chap 7.ppt(sql).ppt
 
Database Foundation Training
Database Foundation TrainingDatabase Foundation Training
Database Foundation Training
 
Adbms 21 sql 99 schema definition constraints and queries
Adbms 21 sql 99 schema definition constraints and queriesAdbms 21 sql 99 schema definition constraints and queries
Adbms 21 sql 99 schema definition constraints and queries
 
MySQL for beginners
MySQL for beginnersMySQL for beginners
MySQL for beginners
 
SQL Inteoduction to SQL manipulating of data
SQL Inteoduction to SQL manipulating of data   SQL Inteoduction to SQL manipulating of data
SQL Inteoduction to SQL manipulating of data
 
Do You Have the Time
Do You Have the TimeDo You Have the Time
Do You Have the Time
 
MYSQL.ppt
MYSQL.pptMYSQL.ppt
MYSQL.ppt
 
My Sql concepts
My Sql conceptsMy Sql concepts
My Sql concepts
 
U-SQL Meta Data Catalog (SQLBits 2016)
U-SQL Meta Data Catalog (SQLBits 2016)U-SQL Meta Data Catalog (SQLBits 2016)
U-SQL Meta Data Catalog (SQLBits 2016)
 
Getting started with Pandas Cheatsheet.pdf
Getting started with Pandas Cheatsheet.pdfGetting started with Pandas Cheatsheet.pdf
Getting started with Pandas Cheatsheet.pdf
 
[JSS2015] Nouveautés SQL Server 2016:Sécurité,Temporal & Stretch Tables
[JSS2015] Nouveautés SQL Server 2016:Sécurité,Temporal & Stretch Tables[JSS2015] Nouveautés SQL Server 2016:Sécurité,Temporal & Stretch Tables
[JSS2015] Nouveautés SQL Server 2016:Sécurité,Temporal & Stretch Tables
 

More from jorge Muchaypiña

Azure days - Power BI Premium per User
Azure days - Power BI Premium per UserAzure days - Power BI Premium per User
Azure days - Power BI Premium per Userjorge Muchaypiña
 
Microsoft ignite 2021 data culture
Microsoft ignite 2021   data cultureMicrosoft ignite 2021   data culture
Microsoft ignite 2021 data culturejorge Muchaypiña
 
Businessintelligence vs businessanalytics
Businessintelligence vs businessanalyticsBusinessintelligence vs businessanalytics
Businessintelligence vs businessanalyticsjorge Muchaypiña
 
SQL Server Analysis Services
SQL Server Analysis ServicesSQL Server Analysis Services
SQL Server Analysis Servicesjorge Muchaypiña
 
Global azure bootcamp SQL Azure End to End
Global azure bootcamp   SQL Azure End to End Global azure bootcamp   SQL Azure End to End
Global azure bootcamp SQL Azure End to End jorge Muchaypiña
 
Business intelligence vs business analytics
Business intelligence vs business analyticsBusiness intelligence vs business analytics
Business intelligence vs business analyticsjorge Muchaypiña
 
24 Horas Pass Spanish - minería de texto y análisis de sentimiento(cognitive...
24 Horas Pass Spanish -  minería de texto y análisis de sentimiento(cognitive...24 Horas Pass Spanish -  minería de texto y análisis de sentimiento(cognitive...
24 Horas Pass Spanish - minería de texto y análisis de sentimiento(cognitive...jorge Muchaypiña
 
SQL Saturday Costa Rica BI - Text mining con r en power bi
SQL Saturday Costa Rica BI - Text mining con r en power biSQL Saturday Costa Rica BI - Text mining con r en power bi
SQL Saturday Costa Rica BI - Text mining con r en power bijorge Muchaypiña
 
Microsoft flow integrado con sql server y power bi
Microsoft flow integrado con sql server y power biMicrosoft flow integrado con sql server y power bi
Microsoft flow integrado con sql server y power bijorge Muchaypiña
 
Text Mining con R en PowerBI - Global Spanish
Text Mining con R en PowerBI -  Global Spanish Text Mining con R en PowerBI -  Global Spanish
Text Mining con R en PowerBI - Global Spanish jorge Muchaypiña
 
Stretch data base - Jorge Muchaypiña G.
Stretch data base - Jorge Muchaypiña G.Stretch data base - Jorge Muchaypiña G.
Stretch data base - Jorge Muchaypiña G.jorge Muchaypiña
 
Text mining con r en power bi - Jorge Muchaypiña G.
Text mining con r en power bi - Jorge Muchaypiña G.Text mining con r en power bi - Jorge Muchaypiña G.
Text mining con r en power bi - Jorge Muchaypiña G.jorge Muchaypiña
 
Text Mining con R en SQL Server 2016
Text Mining con R en SQL Server 2016Text Mining con R en SQL Server 2016
Text Mining con R en SQL Server 2016jorge Muchaypiña
 
Mas alla de los datos con sql server reporting services 2016 - SQL Saturday B...
Mas alla de los datos con sql server reporting services 2016 - SQL Saturday B...Mas alla de los datos con sql server reporting services 2016 - SQL Saturday B...
Mas alla de los datos con sql server reporting services 2016 - SQL Saturday B...jorge Muchaypiña
 
Azure SQL DataLake - SQL Saturday Bogota
Azure SQL DataLake - SQL Saturday BogotaAzure SQL DataLake - SQL Saturday Bogota
Azure SQL DataLake - SQL Saturday Bogotajorge Muchaypiña
 
Global Azure Bootcamp - Jorge Muchaypiña G.
Global Azure Bootcamp - Jorge Muchaypiña G.Global Azure Bootcamp - Jorge Muchaypiña G.
Global Azure Bootcamp - Jorge Muchaypiña G.jorge Muchaypiña
 

More from jorge Muchaypiña (19)

Azure days - Power BI Premium per User
Azure days - Power BI Premium per UserAzure days - Power BI Premium per User
Azure days - Power BI Premium per User
 
Microsoft ignite 2021 data culture
Microsoft ignite 2021   data cultureMicrosoft ignite 2021   data culture
Microsoft ignite 2021 data culture
 
Businessintelligence vs businessanalytics
Businessintelligence vs businessanalyticsBusinessintelligence vs businessanalytics
Businessintelligence vs businessanalytics
 
SQL Server Analysis Services
SQL Server Analysis ServicesSQL Server Analysis Services
SQL Server Analysis Services
 
Global azure bootcamp SQL Azure End to End
Global azure bootcamp   SQL Azure End to End Global azure bootcamp   SQL Azure End to End
Global azure bootcamp SQL Azure End to End
 
Business intelligence vs business analytics
Business intelligence vs business analyticsBusiness intelligence vs business analytics
Business intelligence vs business analytics
 
24 Horas Pass Spanish - minería de texto y análisis de sentimiento(cognitive...
24 Horas Pass Spanish -  minería de texto y análisis de sentimiento(cognitive...24 Horas Pass Spanish -  minería de texto y análisis de sentimiento(cognitive...
24 Horas Pass Spanish - minería de texto y análisis de sentimiento(cognitive...
 
SQL Saturday Costa Rica BI - Text mining con r en power bi
SQL Saturday Costa Rica BI - Text mining con r en power biSQL Saturday Costa Rica BI - Text mining con r en power bi
SQL Saturday Costa Rica BI - Text mining con r en power bi
 
Microsoft flow integrado con sql server y power bi
Microsoft flow integrado con sql server y power biMicrosoft flow integrado con sql server y power bi
Microsoft flow integrado con sql server y power bi
 
Introduccion a PowerBI
Introduccion a PowerBIIntroduccion a PowerBI
Introduccion a PowerBI
 
Text Mining con R en PowerBI - Global Spanish
Text Mining con R en PowerBI -  Global Spanish Text Mining con R en PowerBI -  Global Spanish
Text Mining con R en PowerBI - Global Spanish
 
Stretch data base - Jorge Muchaypiña G.
Stretch data base - Jorge Muchaypiña G.Stretch data base - Jorge Muchaypiña G.
Stretch data base - Jorge Muchaypiña G.
 
Text mining con r en power bi - Jorge Muchaypiña G.
Text mining con r en power bi - Jorge Muchaypiña G.Text mining con r en power bi - Jorge Muchaypiña G.
Text mining con r en power bi - Jorge Muchaypiña G.
 
Text Mining con R en SQL Server 2016
Text Mining con R en SQL Server 2016Text Mining con R en SQL Server 2016
Text Mining con R en SQL Server 2016
 
Mas alla de los datos con sql server reporting services 2016 - SQL Saturday B...
Mas alla de los datos con sql server reporting services 2016 - SQL Saturday B...Mas alla de los datos con sql server reporting services 2016 - SQL Saturday B...
Mas alla de los datos con sql server reporting services 2016 - SQL Saturday B...
 
Azure SQL DataLake - SQL Saturday Bogota
Azure SQL DataLake - SQL Saturday BogotaAzure SQL DataLake - SQL Saturday Bogota
Azure SQL DataLake - SQL Saturday Bogota
 
Global Azure Bootcamp - Jorge Muchaypiña G.
Global Azure Bootcamp - Jorge Muchaypiña G.Global Azure Bootcamp - Jorge Muchaypiña G.
Global Azure Bootcamp - Jorge Muchaypiña G.
 
SQL Azure Datawarehouse
SQL Azure DatawarehouseSQL Azure Datawarehouse
SQL Azure Datawarehouse
 
Azure SQL Database
Azure SQL DatabaseAzure SQL Database
Azure SQL Database
 

Recently uploaded

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
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
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
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
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
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
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
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
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley 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
 
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
 

Recently uploaded (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
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
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
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...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
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...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
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
 
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
 

SQL Saturday Lima - Analysis Services