gpt4 book ai didi

oracle - Oracle的dump(systimestamp)字节的含义

转载 作者:行者123 更新时间:2023-12-03 06:55:51 24 4
gpt4 key购买 nike

我试图了解数据库上设置的时间戳中的字节的含义。如何计算它们以生成更具可读性的日期?

我使用以下查询来获取我需要的数据:

SELECT systimestamp
,DUMP (systimestamp)
,sessiontimezone
FROM dual;

上面查询的输出是:

+-------------------------------------+-----------------------------------------------------------------+------------------+
| systimestamp | dump(systimestamp) | sessiontimezone |
+-------------------------------------+-----------------------------------------------------------------+------------------+
| 31-JUL-15 08.55.06.157047000 +00:00 | Typ=188 Len=20: 223,7,7,31,8,55,6,0,216,88,92,9,0,0,5,0,0,0,0,0 | Europe/Bucharest |
+-------------------------------------+-----------------------------------------------------------------+------------------+

我在网上找到了一些资源来解释字节的含义 ( here ),但规则与我的场景不匹配。

例如:223 不是世纪 + 100 等。

我尝试这样做的原因是因为我在将 timestamp(3) 列中的值与 systimestamp 进行比较时遇到问题,并且我我正在尝试编写一个脚本来验证我的问题/解决方案是否相同 as explained here .

感谢任何帮助。

最佳答案

有多种表面相似但内部不同的日期时间数据类型。 systimestamp 是类型 188(并且具有时区信息);时间戳文字的类型为 187(不含时区信息)和 188(含时区信息);普通时间戳列的类型为 180:

select dump(systimestamp) from dual;

DUMP(SYSTIMESTAMP)
--------------------------------------------------------------------------------
Typ=188 Len=20: 223,7,7,31,9,50,28,11,128,203,79,35,1,0,5,0,0,0,0,0

select dump(timestamp '2015-07-31 08:55:06.157047 +00:00') from dual;

DUMP(TIMESTAMP'2015-07-3108:55:06.157047+00:00')
---------------------------------------------------------------
Typ=188 Len=20: 223,7,7,31,8,55,6,0,216,88,92,9,0,0,5,0,0,0,0,0

select dump(timestamp '2015-07-31 08:55:06.157047') from dual;

DUMP(TIMESTAMP'2015-07-3108:55:06.157047')
---------------------------------------------------------------
Typ=187 Len=20: 223,7,7,31,8,55,6,0,216,88,92,9,0,0,3,0,0,0,0,0

create table t (ts timestamp);
insert into t (ts) values (timestamp '2015-07-31 08:55:06.157047');
select dump(ts) from t;

DUMP(TS)
--------------------------------------------------------------------------------
Typ=180 Len=11: 120,115,7,31,9,56,7,9,92,88,216

其中,只有时间戳列使用您链接到的文章中的内部格式,使用超过 100 的年份表示法。

对于其他的,第一个字节是基数256修饰符,第二个字节是基数256年份;所以你可以将其解释为

223 + (7 * 256) = 2015

您可以在 My Oracle Support 文档 69028.1 中了解有关内部存储的更多信息。这以及评论中链接的早期答案,指的是两种日期类型,但时间戳的处理方式相同,精确到秒,其余的一些可以推断为类型 187/188 - 小数秒部分:

Byte 1 - Base 256 year modifier: 223
2 - Base 256 year: 7 (256 * 7 = 1792 + 223 = 2015)
3 - Month: 7
4 - Day: 31
5 - Hours: 8
6 - Minutes: 55
7 - Seconds: 6
8 - Unused?
9 - Base 256 nanoseconds: 216
10 - Base 256 ns modifier 1: 256 * 88 = 22528
11 - Base 256 ns modifier 2: 256 * 256 * 92 = 6029312
12 - Base 256 ns modifier 3: 256 * 256 * 256 * 9 = 150994944
=> actual nanoseconds = 216 + 22528 + 6029312 + 150994944
=> 157047000
13-20 - Time zone data?

对于类型 120,秒的小数部分相同,但字节相反。

关于oracle - Oracle的dump(systimestamp)字节的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31742258/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com