Book Image

Developing Robust Date and Time Oriented Applications in Oracle Cloud

By : Michal Kvet
Book Image

Developing Robust Date and Time Oriented Applications in Oracle Cloud

By: Michal Kvet

Overview of this book

Proper date and time management is critical for the development and reliability of Oracle Databases and cloud environments, which are among the most rapidly expanding technologies today. This knowledge can be applied to cloud technology, on premises, application development, and integration to emphasize regional settings, UTC coordination, or different time zones. This practical book focuses on code snippets and discusses the existing functionalities and limitations, along with covering data migration to the cloud by emphasizing the importance of proper date and time management. This book helps you understand the historical background and evolution of ANSI standards. You’ll get to grips with data types, constructor principles, and existing functionalities, and focus on the limitations of regional parameters and time zones, which help in expanding business to other parts of the world. You’ll also explore SQL injection threats, temporal database architecture, using Flashback Technology to reconstruct valid database images from the past, time zone management, and UTC synchronization across regions. By the end of this book, you’ll be able to create and manage temporal systems, prevent SQL injection attacks, use existing functionalities and define your own robust solutions for date management, and apply time zone and region rules.
Table of Contents (26 chapters)
1
Part 1: Discovering Oracle Cloud
4
Part 2: Understanding the Roots of Date and Time
7
Part 3: Modeling, Storing, and Managing Date and Time
12
Part 4: Modeling Validity Intervals
17
Part 5: Building Robust and Secure Temporal Solutions
20
Part 6: Expanding a Business Worldwide Using Oracle Cloud

Identifying the number of days in a month using LAST_DAY

The LAST_DAY function returns the last day of the month based on the input date value (date_val). This is easy, right? January has 31 days and December has 31 days. However, what about February? Refer to the leap year. Thus, as is evident, this particular function is really useful and it must be available.

The syntax of this function can be seen in the following code block:

LAST_DAY(<date_val>)

The following statement provides you with the last day of October:

select LAST_DAY(TO_DATE('10.1.2022', 'DD.MM.YYYY'))
  from dual;
--> 31.01.2022

Naturally, it also manages leap years. The year 2023 is not a leap year, but the year 2024 is a leap year:

select LAST_DAY(TO_DATE('15.2.2023', 'DD.MM.YYYY'))
  from dual;
--> 28.2.2023
select LAST_DAY(TO_DATE('15.2.2024', 'DD.MM.YYYY'))
  from dual;
--> 29.2.2024

When...