SlideShare a Scribd company logo
1 of 53
Download to read offline
Temporal Database
Linh Chau
Software Engineer
November 8th, 2017
22
Agenda
▪ Introduction
▪ Bi-temporality
▪ Example
▪ Q&A
33
What is temporal database?
44
Traditional way
ID Name Price (x1000 VND)
1 Coconut Oil 650
2 Honey 220
3 Medical Oil 120
55
Traditional way
▪ Store only current state of data.
▪ Modify data will overlap the existing data.
66
Questions
▪ How to retrieve history data?
▪ What happen if you delete data by accident?
▪ What if I need to retrieve the data in the past, or insert a reserved data for
future use?
→ We need something like time period to attach to the data, this is temporal
data.
A temporal database is a database with built-in support for handling data
involving time.
77
Temporal database
▪ Time period is attached to the data (time varying data).
▪ Express when the data is valid or stored in the database.
▪ Divided into two approaches:
▪ Time period when the data is true in the real world (valid time).
▪ Time period when data is stored in database (transaction time).
88
Valid time approach
ID Name Price (x1000 VND)
1 Coconut Oil 650
2 Honey 220
3 Medical Oil 120
99
Valid time approach
ID Name Price Valid From Valid Till
2 Honey 250 01/01/2016 01/09/2017
2 Honey 220 01/09/2017 02/02/2020
2 Honey 300 03/03/2025 04/04/2050
2 Honey 500 06/09/3000 09/06/3005
1010
Valid time approach
▪ Records the time when a fact is true in the real world.
▪ Represents data in the past, current for future
▪ Enables queries that show the state of the fact at a given time.
1111
Transaction time approach
ID Name Price
Valid
From
Valid Till
Known
From
Known
Till
2 Honey 250 01/01/2016 01/09/2017 08/08/2017 31/12/9999
2 Honey 220 01/09/2017 02/02/2020 08/08/2017 31/12/9999
2 Honey 300 03/03/2025 04/04/2050 08/08/2017 31/12/9999
2 Honey 500 06/09/3000 09/06/3005 08/08/2017 08/11/2017
2 Honey 5000 06/09/3000 09/06/3005 08/11/2017 31/12/9999
1212
Transaction time approach
▪ Records the time period during which a database entry is accepted as
correct.
▪ Enables queries that show the state of the database at a given time.
▪ Only occur in the past or up to the current time.
▪ In a transaction time table, records are never deleted.
1313
Bi-temporality
1414
Bi-Temporality
07.01 13.02 27.05 25.07
10.01
15.02
07.06
19.06
Validity
Knowing
China
Switzerland
Japan
Vietnam
1515
Bi-Temporality
07.01 13.02 27.05 25.07
10.01
15.02
07.06
19.06
Validity
Knowing
China
Switzerland
Japan
Vietnam
1616
Bi-Temporality
▪ In bi-temporality, we take care both point of view the validity and point of
view of the change.
▪ Through them, we get the exact valid information of the system at specific
time.
▪ No physical delete of the row in database.
1717
Use cases
▪ You want to reprint of a customer’s invoices of July 2017.
▪ What was the profit last year?
▪ Where do you enter the new address of this customer since the first next
month?
▪ The client wants to book a reservation of your hotel next year.
1818
Application domains
▪ Financial apps: portfolio management, accounting, banking.
▪ Record-keeping: personal, medical, inventory management.
▪ Scheduling apps: airline, train, hotel reservation...
▪ CRM apps (customer history / future)
⇒ Time varying data has always been in business requirements.
1919
Example
2020
Insert
Insert record “A”, valid from 01.01.2016.
2121
Insert
Valid
Know
2222
Insert
sysdate
Valid
Know
01.01.2016
2323
Insert
sysdate
Valid
Know
01.01.2016
A
2424
Insert
Action Data Valid From Valid Till Known From Known Till
Insert A 01.01.2016 31.12.9999 sysdate 31.12.9999
▪ 01.01.2016: when the data is valid
▪ 31.12.9999: infinity
▪ sysdate: “now”
2525
Delete
“Remove” record “A”
2626
Delete
sysdate1
Valid
Know
01.01.2016
A
2727
Delete
sysdate1
Valid
Know
01.01.2016
A
sysdate2
2828
Delete
Action Data Valid From Valid Till Known From Known Till
Update A - - - sysdate
▪ “-”: no change
2929
Close
Update record “A”, set valid until 06.06.2016.
3030
Close
sysdate1
Valid
Know
01.01.2016
A
3131
Close
sysdate1
Valid
Know
01.01.2016
A
A
sysdate2
06.06.2016
3232
Close
Action Data Valid From Valid Till Known From Known Till
Update A - - - sysdate
Insert A 01.01.2016 06.06.2016 sysdate 31.12.9999
3333
Update future with infinity
Update record by value “B”, effect from 06.06.2016.
3434
Update future with infinity
sysdate1
Valid
Know
01.01.2016
A
3535
Update future with infinity
sysdate1
Valid
Know
01.01.2016
A
A
sysdate2
06.06.2016
B
3636
Update future with infinity
Action Data Valid From Valid Till Known From Known Till
Update A - - - sysdate
Insert A 01.01.2016 06.06.2016 sysdate 31.12.9999
Insert B 06.06.2016 31.12.9999 sysdate 31.12.9999
3737
Update the past with infinity
Update record by value “C”, effect from 03.03.2016.
3838
Update the past with infinity
sysdate1
Valid
Know
01.01.2016
A
A
sysdate2
06.06.2016
B
3939
Update the past with infinity
sysdate1
Valid
Know
01.01.2016
A
A
sysdate2
06.06.2016
B
sysdate3
C
03.03.2016
4040
Update the past with infinity
Action Data Valid From Valid Till Known From Known Till
Update A - - - sysdate
Update B - - - sysdate
Insert A 01.01.2016 03.03.2016 sysdate 31.12.9999
Insert C 03.03.2016 31.12.9999 sysdate 31.12.9999
4141
Update the past with close date after first update
Update record by value “C”, effect from 03.03.2016 to 09.09.2016.
4242
Update the past with close date after first update
sysdate1
Valid
Know
01.01.2016
A
A
sysdate2
06.06.2016
B
4343
Update the past with close date after first update
sysdate1
Valid
Know
01.01.2016
A
A
sysdate2
06.06.2016
B
sysdate3
C
03.03.2016 09.09.2016
B
4444
Update the past with close date after first update
Action Data Valid From Valid Till Known From Known Till
Update A - - - sysdate
Update B - - - sysdate
Insert C 03.03.2016 09.09.2016 sysdate 31.12.9999
Insert A 01.01.2016 03.03.2016 sysdate 31.12.9999
Insert B 09.09.2016 31.12.9999 sysdate 31.12.9999
4545
Update the past with close date before first update
Update record by value “C”, effect from 03.03.2016 to 04.04.2016
4646
Update the past with close date before first update
sysdate1
Valid
Know
01.01.2016
A
A
sysdate2
06.06.2016
B
4747
Update the past with close date before first update
sysdate1
Valid
Know
01.01.2016
A
A
sysdate2
06.06.2016
B
sysdate3
C
03.03.2016 09.09.2016
A A
04.04.2016
4848
Update the past with close date before first update
Action Data Valid From Valid Till Known From Known Till
Update A - - - sysdate
Keep B - - - -
Insert C 03.03.2016 04.04.2016 sysdate 31.12.9999
Insert A 01.01.2016 03.03.2016 sysdate 31.12.9999
Insert A 04.04.2016 06.06.2016 sysdate 31.12.9999
4949
When to use
Ask yourself two questions:
▪ Does your business need to know the situation as it was known at a particular
date?
▪ Does your business use information that was effective in the past or will become
effective in the future?
⇒ If you answer YES on one or both of these question then your data varies
over time and you could consider adopting a temporal approach.
5050
Q&A
5151
5252
References
▪ http://www.datasciencecentral.com/profiles/blogs/temporal-databases-why-
you-should-care-and-how-to-get-started (3 parts)
▪ https://www.linkedin.com/pulse/emerging-data-design-bitemporal-mike-
lapenna (2 parts)
▪ Kudos to my ex-colleagues.
5353
IT SecurityNEVISIT Consulting Application
Management
Software Solutions
Linh Chau, Software Engineer
linh.chau@adnovum.ch
www.adnovum.ch

More Related Content

Similar to Temporal database

Data Wrangling: Working with Date / Time Data and Visualizing It
Data Wrangling: Working with Date / Time Data and Visualizing ItData Wrangling: Working with Date / Time Data and Visualizing It
Data Wrangling: Working with Date / Time Data and Visualizing Itkanaugust
 
Data Warehousing (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2016-20...
Data Warehousing (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2016-20...Data Warehousing (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2016-20...
Data Warehousing (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2016-20...Mumbai B.Sc.IT Study
 
Modern data warehouse presentation
Modern data warehouse presentationModern data warehouse presentation
Modern data warehouse presentationDavid Rice
 
Cloud Cost Management and Apache Spark with Xuan Wang
Cloud Cost Management and Apache Spark with Xuan WangCloud Cost Management and Apache Spark with Xuan Wang
Cloud Cost Management and Apache Spark with Xuan WangDatabricks
 
Managing Agile Software Development Quantitatively
Managing Agile Software Development QuantitativelyManaging Agile Software Development Quantitatively
Managing Agile Software Development QuantitativelyJayGray
 
Cassandra Day SV 2014: Fundamentals of Apache Cassandra Data Modeling
Cassandra Day SV 2014: Fundamentals of Apache Cassandra Data ModelingCassandra Day SV 2014: Fundamentals of Apache Cassandra Data Modeling
Cassandra Day SV 2014: Fundamentals of Apache Cassandra Data ModelingDataStax Academy
 
Operational Intelligence with WSO2 BAM
Operational Intelligence with WSO2 BAM Operational Intelligence with WSO2 BAM
Operational Intelligence with WSO2 BAM WSO2
 
Amazon GT master data science challenge 2020 presentation
Amazon GT master data science challenge 2020 presentationAmazon GT master data science challenge 2020 presentation
Amazon GT master data science challenge 2020 presentationFan Wu
 
Nagios Conference 2012 - Anders Haal - Why dynamic and adaptive thresholds ma...
Nagios Conference 2012 - Anders Haal - Why dynamic and adaptive thresholds ma...Nagios Conference 2012 - Anders Haal - Why dynamic and adaptive thresholds ma...
Nagios Conference 2012 - Anders Haal - Why dynamic and adaptive thresholds ma...Nagios
 
Lean Six Sigma Course Training Part 4
Lean Six Sigma Course Training Part 4Lean Six Sigma Course Training Part 4
Lean Six Sigma Course Training Part 4Lean Insight
 
Data warehousing PRACTICAL (Sem - VI)
Data warehousing PRACTICAL (Sem - VI)Data warehousing PRACTICAL (Sem - VI)
Data warehousing PRACTICAL (Sem - VI)Satyendra Singh
 
Data Warehouse Like a Tech Startup with Oracle Autonomous Data Warehouse
Data Warehouse Like a Tech Startup with Oracle Autonomous Data WarehouseData Warehouse Like a Tech Startup with Oracle Autonomous Data Warehouse
Data Warehouse Like a Tech Startup with Oracle Autonomous Data WarehouseRittman Analytics
 
Data Privacy Patterns in databricks for data engineering professional certifi...
Data Privacy Patterns in databricks for data engineering professional certifi...Data Privacy Patterns in databricks for data engineering professional certifi...
Data Privacy Patterns in databricks for data engineering professional certifi...TusharAgarwal49094
 
Les objets connectés : de nombreux cas d'usage
Les objets connectés : de nombreux cas d'usage Les objets connectés : de nombreux cas d'usage
Les objets connectés : de nombreux cas d'usage Jedha Bootcamp
 

Similar to Temporal database (15)

Architecting for Big Data with AWS
Architecting for Big Data with AWSArchitecting for Big Data with AWS
Architecting for Big Data with AWS
 
Data Wrangling: Working with Date / Time Data and Visualizing It
Data Wrangling: Working with Date / Time Data and Visualizing ItData Wrangling: Working with Date / Time Data and Visualizing It
Data Wrangling: Working with Date / Time Data and Visualizing It
 
Data Warehousing (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2016-20...
Data Warehousing (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2016-20...Data Warehousing (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2016-20...
Data Warehousing (Practical Questions Paper) [CBSGS - 75:25 Pattern] {2016-20...
 
Modern data warehouse presentation
Modern data warehouse presentationModern data warehouse presentation
Modern data warehouse presentation
 
Cloud Cost Management and Apache Spark with Xuan Wang
Cloud Cost Management and Apache Spark with Xuan WangCloud Cost Management and Apache Spark with Xuan Wang
Cloud Cost Management and Apache Spark with Xuan Wang
 
Managing Agile Software Development Quantitatively
Managing Agile Software Development QuantitativelyManaging Agile Software Development Quantitatively
Managing Agile Software Development Quantitatively
 
Cassandra Day SV 2014: Fundamentals of Apache Cassandra Data Modeling
Cassandra Day SV 2014: Fundamentals of Apache Cassandra Data ModelingCassandra Day SV 2014: Fundamentals of Apache Cassandra Data Modeling
Cassandra Day SV 2014: Fundamentals of Apache Cassandra Data Modeling
 
Operational Intelligence with WSO2 BAM
Operational Intelligence with WSO2 BAM Operational Intelligence with WSO2 BAM
Operational Intelligence with WSO2 BAM
 
Amazon GT master data science challenge 2020 presentation
Amazon GT master data science challenge 2020 presentationAmazon GT master data science challenge 2020 presentation
Amazon GT master data science challenge 2020 presentation
 
Nagios Conference 2012 - Anders Haal - Why dynamic and adaptive thresholds ma...
Nagios Conference 2012 - Anders Haal - Why dynamic and adaptive thresholds ma...Nagios Conference 2012 - Anders Haal - Why dynamic and adaptive thresholds ma...
Nagios Conference 2012 - Anders Haal - Why dynamic and adaptive thresholds ma...
 
Lean Six Sigma Course Training Part 4
Lean Six Sigma Course Training Part 4Lean Six Sigma Course Training Part 4
Lean Six Sigma Course Training Part 4
 
Data warehousing PRACTICAL (Sem - VI)
Data warehousing PRACTICAL (Sem - VI)Data warehousing PRACTICAL (Sem - VI)
Data warehousing PRACTICAL (Sem - VI)
 
Data Warehouse Like a Tech Startup with Oracle Autonomous Data Warehouse
Data Warehouse Like a Tech Startup with Oracle Autonomous Data WarehouseData Warehouse Like a Tech Startup with Oracle Autonomous Data Warehouse
Data Warehouse Like a Tech Startup with Oracle Autonomous Data Warehouse
 
Data Privacy Patterns in databricks for data engineering professional certifi...
Data Privacy Patterns in databricks for data engineering professional certifi...Data Privacy Patterns in databricks for data engineering professional certifi...
Data Privacy Patterns in databricks for data engineering professional certifi...
 
Les objets connectés : de nombreux cas d'usage
Les objets connectés : de nombreux cas d'usage Les objets connectés : de nombreux cas d'usage
Les objets connectés : de nombreux cas d'usage
 

Recently uploaded

The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsMehedi Hasan Shohan
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样umasea
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyFrank van der Linden
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
buds n tech IT solutions
buds n  tech IT                solutionsbuds n  tech IT                solutions
buds n tech IT solutionsmonugehlot87
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
cybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningcybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningVitsRangannavar
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 

Recently uploaded (20)

The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software Solutions
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The Ugly
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
buds n tech IT solutions
buds n  tech IT                solutionsbuds n  tech IT                solutions
buds n tech IT solutions
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
cybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningcybersecurity notes for mca students for learning
cybersecurity notes for mca students for learning
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 

Temporal database