SlideShare a Scribd company logo
1 of 14
Download to read offline
Globalcode	– Open4education
Big Data – SQL In The Big Data Era
Rafael Aguiar
Data Science Engineer @InLocoMedia
Globalcode	– Open4education
Agenda
Contexto
Definição de Big Data
Um mapa do ecossistema
Apache Hive
Apache Hue
Por onde começar
Globalcode	– Open4education
Mobile Ad Network
baseada em localização
de alta precisão (1-3m)
Terabytes de dados
comprimidos/mês
Como entender padrões
de visita?
Como recomendar
melhores anúncios?
Globalcode	– Open4education
Big Data
“Datasets whose size is beyond the ability of typical database
software tools to capture, store, manage, and analyze.”
McKinsey (2011)
Globalcode	– Open4education
Ecossistema
Globalcode	– Open4education
Apache Hive
The Apache Hive data warehouse software
facilitates reading, writing, and managing large
datasets residing in distributed storage using SQL.
It provides:
Tools to enable easy access to data via SQL, thus
enabling data warehousing tasks such as
extract/transform/load (ETL), reporting, and data
analysis.
A mechanism to impose structure on a variety of
data formats
Query execution via Apache Tez, Apache Spark,
or MapReduce
Globalcode	– Open4education
Apache Hive
Globalcode	– Open4education
Apache Hive
Quando usar o Hive?
Você já sabe SQL e quer começar a processar
grandes datasets sem quebrar a cabeça
Você precisa rodar um job rapidamente e não tem
tempo hábil para escrever um código limpo e
otimizado
Globalcode	– Open4education
Apache Hive
CREATE TABLE tdc_participants
(
name STRING,
age INT,
skills ARRAY <STRING>,
likes_beer BOOLEAN,
home_town STRING
)
ROW FORMAT SERDE
'org.apache.hadoop.hive.serde2.
OpenCSVSerde'
WITH SERDEPROPERTIES (
"separatorChar" = ",",
"quoteChar" = "'",
"escapeChar" = ""
)
STORED AS TEXTFILE;
SELECT home_town, count(*)
FROM tdc_participants
WHERE array_contains(skills, "big-data")
AND likes_beer = TRUE
GROUP BY home_town;
Globalcode	– Open4education
Apache Hive
CREATE TEMPORARY FUNCTION st_linestring AS "com.esri.hadoop.hive.ST_LineString";
CREATE TEMPORARY FUNCTION st_setsrid AS "com.esri.hadoop.hive.ST_SetSRID";
CREATE TEMPORARY FUNCTION st_geodesiclengthwgs84 AS "com.esri.hadoop.hive.ST_GeodesicLengthWGS84";
CREATE TABLE location (id STRING, lat DOUBLE, lng DOUBLE, epoch BIGINT) {...};
SET hivevar:PLACE_OF_INTEREST= named_struct("lat",1.0, "lng", 1.0);
SET hivevar:MAX_DISTANCE = 10;
SET hivevar:SPATIAL_REF_ID = 4326;
SELECT count(distinct id)
From location
WHERE location.lat IS NOT NULLAND
location.lng IS NOT NULLAND
st_geodesiclengthwgs84(
st_setsrid(
st_linestring(
${hivevar:PLACE_OF_INTEREST}.lng,
${hivevar:PLACE_OF_INTEREST}.lat,
location.lng,
location.lat),
${hivevar:SPATIAL_REF_ID})) < ${hivevar:MAX_DISTANCE};
Globalcode	– Open4education
Apache Hue
http://demo.gethue.com/
Globalcode	– Open4education
Por onde começar
https://hive.apache.org/
http://gethue.com/
Programming Hive, by Edward Capriolo
https://github.com/Prokopp/the-free-hive-book
Globalcode	– Open4education
Rafael Aguiar
rafael@inlocomedia.com
@rafadaguiar
#TDCHive
Globalcode	– Open4education
Obrigado!

More Related Content

What's hot

An exploration in analysis and visualization
An exploration in analysis and visualizationAn exploration in analysis and visualization
An exploration in analysis and visualizationDorai Thodla
 
Getting the most out of Impala - Best practices for infrastructure optimization
Getting the most out of Impala - Best practices for infrastructure optimizationGetting the most out of Impala - Best practices for infrastructure optimization
Getting the most out of Impala - Best practices for infrastructure optimizationBigstep
 
Introduction to Big Data & Hadoop
Introduction to Big Data & Hadoop Introduction to Big Data & Hadoop
Introduction to Big Data & Hadoop iACT Global
 
Big data? No. Big Decisions are What You Want
Big data? No. Big Decisions are What You WantBig data? No. Big Decisions are What You Want
Big data? No. Big Decisions are What You WantStuart Miniman
 
The Linked Data Advantage
The Linked Data AdvantageThe Linked Data Advantage
The Linked Data AdvantageSqrrl
 
Privacy-Preserving Multi-keyword Top-k Similarity Search Over Encrypted Data
Privacy-Preserving Multi-keyword Top-k Similarity Search Over Encrypted DataPrivacy-Preserving Multi-keyword Top-k Similarity Search Over Encrypted Data
Privacy-Preserving Multi-keyword Top-k Similarity Search Over Encrypted DataCloudTechnologies
 
Big Data Ecosystem
Big Data EcosystemBig Data Ecosystem
Big Data EcosystemIvo Vachkov
 
Hadoop for bay area big data developer
Hadoop for bay area big data developerHadoop for bay area big data developer
Hadoop for bay area big data developer19scottmiller
 
Getting Started with Splunk Breakout Session
Getting Started with Splunk Breakout SessionGetting Started with Splunk Breakout Session
Getting Started with Splunk Breakout SessionSplunk
 
Spark for bay area big data developer
Spark for bay area big data developerSpark for bay area big data developer
Spark for bay area big data developer19scottmiller
 
Cassandra for bay area big data developer
Cassandra for bay area big data developerCassandra for bay area big data developer
Cassandra for bay area big data developer19scottmiller
 
Introduction to hadoop
Introduction to hadoopIntroduction to hadoop
Introduction to hadoopGanesh Sanap
 
Introduction To Big Data Analytics On Hadoop - SpringPeople
Introduction To Big Data Analytics On Hadoop - SpringPeopleIntroduction To Big Data Analytics On Hadoop - SpringPeople
Introduction To Big Data Analytics On Hadoop - SpringPeopleSpringPeople
 
ArchivalWare GS with FME
ArchivalWare GS with FMEArchivalWare GS with FME
ArchivalWare GS with FMESafe Software
 
Hopper energyservices
Hopper energyservicesHopper energyservices
Hopper energyserviceshopperdev
 
Is Hadoop a Necessity for Data Science
Is Hadoop a Necessity for Data ScienceIs Hadoop a Necessity for Data Science
Is Hadoop a Necessity for Data ScienceEdureka!
 
Journey in Country of Data Access Governance - Data works summit 2019 Barcelona
Journey in Country of Data Access Governance - Data works summit 2019 BarcelonaJourney in Country of Data Access Governance - Data works summit 2019 Barcelona
Journey in Country of Data Access Governance - Data works summit 2019 BarcelonaMagnus Runesson
 
Graphics for big data reference architecture blog
Graphics for big data reference architecture blogGraphics for big data reference architecture blog
Graphics for big data reference architecture blogSunil Soares
 

What's hot (20)

An exploration in analysis and visualization
An exploration in analysis and visualizationAn exploration in analysis and visualization
An exploration in analysis and visualization
 
Getting the most out of Impala - Best practices for infrastructure optimization
Getting the most out of Impala - Best practices for infrastructure optimizationGetting the most out of Impala - Best practices for infrastructure optimization
Getting the most out of Impala - Best practices for infrastructure optimization
 
Introduction to Big Data & Hadoop
Introduction to Big Data & Hadoop Introduction to Big Data & Hadoop
Introduction to Big Data & Hadoop
 
Big data? No. Big Decisions are What You Want
Big data? No. Big Decisions are What You WantBig data? No. Big Decisions are What You Want
Big data? No. Big Decisions are What You Want
 
The Linked Data Advantage
The Linked Data AdvantageThe Linked Data Advantage
The Linked Data Advantage
 
Privacy-Preserving Multi-keyword Top-k Similarity Search Over Encrypted Data
Privacy-Preserving Multi-keyword Top-k Similarity Search Over Encrypted DataPrivacy-Preserving Multi-keyword Top-k Similarity Search Over Encrypted Data
Privacy-Preserving Multi-keyword Top-k Similarity Search Over Encrypted Data
 
Big Data Ecosystem
Big Data EcosystemBig Data Ecosystem
Big Data Ecosystem
 
Hadoop for bay area big data developer
Hadoop for bay area big data developerHadoop for bay area big data developer
Hadoop for bay area big data developer
 
Getting Started with Splunk Breakout Session
Getting Started with Splunk Breakout SessionGetting Started with Splunk Breakout Session
Getting Started with Splunk Breakout Session
 
Big data
Big dataBig data
Big data
 
Spark for bay area big data developer
Spark for bay area big data developerSpark for bay area big data developer
Spark for bay area big data developer
 
Cassandra for bay area big data developer
Cassandra for bay area big data developerCassandra for bay area big data developer
Cassandra for bay area big data developer
 
Introduction to hadoop
Introduction to hadoopIntroduction to hadoop
Introduction to hadoop
 
Introduction To Big Data Analytics On Hadoop - SpringPeople
Introduction To Big Data Analytics On Hadoop - SpringPeopleIntroduction To Big Data Analytics On Hadoop - SpringPeople
Introduction To Big Data Analytics On Hadoop - SpringPeople
 
ArchivalWare GS with FME
ArchivalWare GS with FMEArchivalWare GS with FME
ArchivalWare GS with FME
 
Hopper energyservices
Hopper energyservicesHopper energyservices
Hopper energyservices
 
Is Hadoop a Necessity for Data Science
Is Hadoop a Necessity for Data ScienceIs Hadoop a Necessity for Data Science
Is Hadoop a Necessity for Data Science
 
SQRRL threat hunting platform
SQRRL threat hunting platformSQRRL threat hunting platform
SQRRL threat hunting platform
 
Journey in Country of Data Access Governance - Data works summit 2019 Barcelona
Journey in Country of Data Access Governance - Data works summit 2019 BarcelonaJourney in Country of Data Access Governance - Data works summit 2019 Barcelona
Journey in Country of Data Access Governance - Data works summit 2019 Barcelona
 
Graphics for big data reference architecture blog
Graphics for big data reference architecture blogGraphics for big data reference architecture blog
Graphics for big data reference architecture blog
 

Viewers also liked

ERC_certificates_and_letters_1450289948
ERC_certificates_and_letters_1450289948ERC_certificates_and_letters_1450289948
ERC_certificates_and_letters_1450289948Ahmed A. Karar Ali
 
Studio interieur Anneleen Vermunicht
Studio interieur Anneleen VermunichtStudio interieur Anneleen Vermunicht
Studio interieur Anneleen Vermunichtanneleen1990
 
καλό ταξίδι, κυρία ζωρζ
καλό ταξίδι, κυρία ζωρζκαλό ταξίδι, κυρία ζωρζ
καλό ταξίδι, κυρία ζωρζ43DIM
 
Instituto gonzalo garcía
Instituto gonzalo garcíaInstituto gonzalo garcía
Instituto gonzalo garcíaNohemi Linares
 
Connie siskowski
Connie siskowskiConnie siskowski
Connie siskowskiKaren Popp
 
Advancesensit
AdvancesensitAdvancesensit
AdvancesensitAnam Shah
 
Journal club: CheckMate025 trial
Journal club: CheckMate025 trialJournal club: CheckMate025 trial
Journal club: CheckMate025 trialAhmed A. Karar Ali
 
Ch12 inventory
Ch12   inventoryCh12   inventory
Ch12 inventoryAnam Shah
 

Viewers also liked (13)

ERC_certificates_and_letters_1450289948
ERC_certificates_and_letters_1450289948ERC_certificates_and_letters_1450289948
ERC_certificates_and_letters_1450289948
 
Studio interieur Anneleen Vermunicht
Studio interieur Anneleen VermunichtStudio interieur Anneleen Vermunicht
Studio interieur Anneleen Vermunicht
 
Presentation 2
Presentation  2Presentation  2
Presentation 2
 
καλό ταξίδι, κυρία ζωρζ
καλό ταξίδι, κυρία ζωρζκαλό ταξίδι, κυρία ζωρζ
καλό ταξίδι, κυρία ζωρζ
 
Instituto gonzalo garcía
Instituto gonzalo garcíaInstituto gonzalo garcía
Instituto gonzalo garcía
 
Connie siskowski
Connie siskowskiConnie siskowski
Connie siskowski
 
Presentation 3
Presentation 3Presentation 3
Presentation 3
 
Pokus
PokusPokus
Pokus
 
Advancesensit
AdvancesensitAdvancesensit
Advancesensit
 
Journal club: CheckMate025 trial
Journal club: CheckMate025 trialJournal club: CheckMate025 trial
Journal club: CheckMate025 trial
 
Constitution of usa
Constitution of usa Constitution of usa
Constitution of usa
 
food irradiation
food irradiation food irradiation
food irradiation
 
Ch12 inventory
Ch12   inventoryCh12   inventory
Ch12 inventory
 

Similar to SQL In The Big Data Era

Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Milos Milovanovic
 
Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Darko Marjanovic
 
How Big Data ,Cloud Computing ,Data Science can help business
How Big Data ,Cloud Computing ,Data Science can help businessHow Big Data ,Cloud Computing ,Data Science can help business
How Big Data ,Cloud Computing ,Data Science can help businessAjay Ohri
 
Big Data Practice_Planning_steps_RK
Big Data Practice_Planning_steps_RKBig Data Practice_Planning_steps_RK
Big Data Practice_Planning_steps_RKRajesh Jayarman
 
Comparison among rdbms, hadoop and spark
Comparison among rdbms, hadoop and sparkComparison among rdbms, hadoop and spark
Comparison among rdbms, hadoop and sparkAgnihotriGhosh2
 
Big Data Open Source Technologies
Big Data Open Source TechnologiesBig Data Open Source Technologies
Big Data Open Source Technologiesneeraj rathore
 
Tools and techniques for data science
Tools and techniques for data scienceTools and techniques for data science
Tools and techniques for data scienceAjay Ohri
 
Big data and Hadoop overview
Big data and Hadoop overviewBig data and Hadoop overview
Big data and Hadoop overviewNitesh Ghosh
 
Modern data warehouse
Modern data warehouseModern data warehouse
Modern data warehouseStephen Alex
 
Modern data warehouse
Modern data warehouseModern data warehouse
Modern data warehouseStephen Alex
 
Big Data Technologies.pdf
Big Data Technologies.pdfBig Data Technologies.pdf
Big Data Technologies.pdfRAHULRAHU8
 
The Open Data Lake Platform Brief - Data Sheets | Whitepaper
The Open Data Lake Platform Brief - Data Sheets | WhitepaperThe Open Data Lake Platform Brief - Data Sheets | Whitepaper
The Open Data Lake Platform Brief - Data Sheets | WhitepaperVasu S
 
Career opportunities in open source framework
Career opportunities in open source frameworkCareer opportunities in open source framework
Career opportunities in open source frameworkedunextgen
 
Career opportunities in open source framework
Career opportunities in open source framework Career opportunities in open source framework
Career opportunities in open source framework edunextgen
 

Similar to SQL In The Big Data Era (20)

Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014
 
Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014Hadoop and IoT Sinergija 2014
Hadoop and IoT Sinergija 2014
 
How Big Data ,Cloud Computing ,Data Science can help business
How Big Data ,Cloud Computing ,Data Science can help businessHow Big Data ,Cloud Computing ,Data Science can help business
How Big Data ,Cloud Computing ,Data Science can help business
 
Big Data Practice_Planning_steps_RK
Big Data Practice_Planning_steps_RKBig Data Practice_Planning_steps_RK
Big Data Practice_Planning_steps_RK
 
Hadoop
HadoopHadoop
Hadoop
 
Big Data
Big DataBig Data
Big Data
 
Comparison among rdbms, hadoop and spark
Comparison among rdbms, hadoop and sparkComparison among rdbms, hadoop and spark
Comparison among rdbms, hadoop and spark
 
paper
paperpaper
paper
 
Big data
Big dataBig data
Big data
 
Big Data Open Source Technologies
Big Data Open Source TechnologiesBig Data Open Source Technologies
Big Data Open Source Technologies
 
Tools and techniques for data science
Tools and techniques for data scienceTools and techniques for data science
Tools and techniques for data science
 
Real time analytics
Real time analyticsReal time analytics
Real time analytics
 
Big data and Hadoop overview
Big data and Hadoop overviewBig data and Hadoop overview
Big data and Hadoop overview
 
Modern data warehouse
Modern data warehouseModern data warehouse
Modern data warehouse
 
Modern data warehouse
Modern data warehouseModern data warehouse
Modern data warehouse
 
Bar camp bigdata
Bar camp bigdataBar camp bigdata
Bar camp bigdata
 
Big Data Technologies.pdf
Big Data Technologies.pdfBig Data Technologies.pdf
Big Data Technologies.pdf
 
The Open Data Lake Platform Brief - Data Sheets | Whitepaper
The Open Data Lake Platform Brief - Data Sheets | WhitepaperThe Open Data Lake Platform Brief - Data Sheets | Whitepaper
The Open Data Lake Platform Brief - Data Sheets | Whitepaper
 
Career opportunities in open source framework
Career opportunities in open source frameworkCareer opportunities in open source framework
Career opportunities in open source framework
 
Career opportunities in open source framework
Career opportunities in open source framework Career opportunities in open source framework
Career opportunities in open source framework
 

More from Rafael Felipe Nascimento de Aguiar (8)

UC San Diego's Big Data Specialization Capstone
UC San Diego's Big Data Specialization CapstoneUC San Diego's Big Data Specialization Capstone
UC San Diego's Big Data Specialization Capstone
 
APRENDIZAGEM DE MÁQUINA PARA PREVISÃO DE DEMANDA EM UM SISTEMA DE COMPARTILHA...
APRENDIZAGEM DE MÁQUINA PARA PREVISÃO DE DEMANDA EM UM SISTEMA DE COMPARTILHA...APRENDIZAGEM DE MÁQUINA PARA PREVISÃO DE DEMANDA EM UM SISTEMA DE COMPARTILHA...
APRENDIZAGEM DE MÁQUINA PARA PREVISÃO DE DEMANDA EM UM SISTEMA DE COMPARTILHA...
 
Análise do Sono de Mamíferos
Análise do Sono de MamíferosAnálise do Sono de Mamíferos
Análise do Sono de Mamíferos
 
Análise de Problemas Big Data
Análise de Problemas Big DataAnálise de Problemas Big Data
Análise de Problemas Big Data
 
Bayes Theorem
Bayes TheoremBayes Theorem
Bayes Theorem
 
Close - A clever way to make new friends
Close - A clever way to make new friendsClose - A clever way to make new friends
Close - A clever way to make new friends
 
Apresentacao PugPE
Apresentacao PugPEApresentacao PugPE
Apresentacao PugPE
 
Trainee World Pitch Deck
Trainee World Pitch DeckTrainee World Pitch Deck
Trainee World Pitch Deck
 

Recently uploaded

Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsPrecisely
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 

Recently uploaded (20)

Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power Systems
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 

SQL In The Big Data Era