In Oracle Database, the DBTIMEZONE
function returns the value of the database time zone.
Category: Oracle
How to Check the Date Format of your Oracle Session
When working with functions that return dates, Oracle Database returns these dates based on the value of the NLS_DATE_FORMAT
parameter.
There is also an NLS_TIMESTAMP_FORMAT
parameter and an NLS_TIMESTAMP_TZ_FORMAT
parameter, both of which have a datetime format mask that can be specified separately.
All of these parameters have their default values derived from the NLS_TERRITORY
parameter (which by default, is operating system-dependent).
How to Check the Values of the NLS Parameters in Oracle Database
In Oracle Database, the NLS (National Language Support) parameters determine the locale-specific behaviour on both the client and the server.
These parameters can be set in various places, such as at the database level, in an initialization parameter file, in environment variables, at the session level, and even within some functions.
You can check the value of the NLS parameters with the following views.
Continue readingADD_MONTHS() Function in Oracle
In Oracle Database, the ADD_MONTHS()
function adds a given number of months to a date, and returns the result.
Methods of Setting NLS Parameters and their Priorities (Oracle Database)
Oracle Database includes a bunch of NLS (National Language Support) parameters that determine the locale-specific behaviour on both the client and the server.
These NLS parameters can be set in various places, each of which has a predetermined precedence order in relation to the others. The following table outlines these methods, as well as their priority in relation to the others.
Continue readingHow to Change the Language for your Oracle Session
In Oracle Database, the NLS_LANGUAGE
initialization parameter specifies the default language of the database.
This language is used for messages, day and month names, symbols for AD, BC, a.m., and p.m., and the default sorting mechanism.
The NLS_LANGUAGE
parameter also determines the default values of the NLS_DATE_LANGUAGE
and NLS_SORT
parameters.
This article outlines how to change the value of the NLS_LANGUAGE
and NLS_DATE_LANGUAGE
parameters.
CURRENT_DATE Function in Oracle
In Oracle Database, the CURRENT_DATE
function returns the current date in the session time zone, in a value in the Gregorian calendar of data type DATE
.
How to Return a List of Supported Languages in Oracle
When using Oracle Database, you can find out what languages are supported by querying the V$NLS_VALID_VALUES
view.
This view lists all valid values for NLS parameters, including supported languages.
Continue readingHow to Return a List of Supported Territories in Oracle
When using Oracle Database, you can find out what territories are supported by querying the V$NLS_VALID_VALUES
view.
This view lists all valid values for NLS parameters, including supported territories.
Continue readingCURRENT_TIMESTAMP() Function in Oracle
In Oracle Database, the CURRENT_TIMESTAMP()
function returns the current date and time in the session time zone, in a value of data type TIMESTAMP WITH TIME ZONE
.
It’s similar to LOCALTIMESTAMP
, except that LOCALTIMESTAMP
returns a TIMESTAMP
value.