Oracle DBTIMEZONE function
How to get the value of the Database time zone?
DBTIMEZONE function returns the value of the database time zone.
Parameters:
No parameters or arguments.
Syntax:
DBTIMEZONE
Return type:
The return type is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name. It depends on how the user specified the database time zone value in the most recent CREATE DATABASE or ALTER DATABASE statement.
Pictorial Presentation

Example: Oracle DBTIMEZONE function
The following statement assumes that the database time zone is set to UTC time zone:
SQL> SELECT DBTIMEZONE FROM DUAL;
Sample Output:
DBTIMEZONE ------------- +00:00
Previous:
CURRENT_TIMESTAMP
Next:
EXTRACT(datetime)
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join