Skip to content

Commit f5472d0

Browse files
Update content/integrate/redis-data-integration/data-pipelines/transform-examples/formatting-date-and-time-values.md
Co-authored-by: andy-stark-redis <164213578+andy-stark-redis@users.noreply.github.com>
1 parent 51ff789 commit f5472d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/integrate/redis-data-integration/data-pipelines/transform-examples/formatting-date-and-time-values.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Oracle supports the following date and time data types:
3737
- `TIMESTAMP` - the value is represented by Debezium as a 64-bit integer and depends on the number of decimal places of precision of the column, representing fractions of a second. For example, if the column is defined as `TIMESTAMP(6)`, there are six decimal places and so the value is represented as microseconds since epoch (since there are 10^6 microseconds in each second).
3838
You can format it similarly to `DATE`, but you need to divide the value by the appropriate factor based on the precision.
3939

40-
- `TIMESTAMP WITH TIME ZONE` - the value is represented as string representation of the timestamp with time zone information.
40+
- `TIMESTAMP WITH TIME ZONE` - the value is represented as a string containing the timestamp and time zone.
4141

42-
- `TIMESTAMP WITH LOCAL TIME ZONE` - the value is represented as string representation of the timestamp with local time zone information.
42+
- `TIMESTAMP WITH LOCAL TIME ZONE` - the value is represented as a string containing the timestamp and local time zone.
4343

4444
Both `TIMESTAMP WITH TIME ZONE` and `TIMESTAMP WITH LOCAL TIME ZONE` are supported by SQLite and can be formatted using the `STRFTIME` function.
4545

0 commit comments

Comments
 (0)