Is there a better way to parse [Integer].[Integer] style dates in SSIS?(有没有更好的方法来解析 SSIS 中的 [Integer].[Integer] 样式日期?)
问题描述
我正在处理一个 SSIS ELT 脚本,该脚本需要从以 [INTEGER].[INTEGER] (
相关答案
我有很多与这个问题相关的答案:
- CAST 与 ssis 数据流隐式转换差异
- 日期时间的 SSIS 源格式隐式转换
- 导入 Excel 日期时的 SSIS 错误(截断错误)一个>
I'm working on an SSIS ELT script that needs to parse dates from a TSV file that are stored in the format [INTEGER].[INTEGER] (Excel integer dates followed by second since midnight, e.g., 42825.94097; or microseconds since midnight, e.g., 42831.1229166667). I've come up with the following approach:
- Derived Column function to split the input into a date part and a time part
Derived Column function to append the parsed dates together, e.g.,
DATEADD("day",StartTime_Date,DATEADD("second",StartTime_Time,(DT_DATE)"1/1/1900"))
Is there a more elegant way to do this without resorting to a Script Component?
The DT_DATE data type is implemented using an 8-byte floating-point number. Days are represented by whole number increments, starting with 30 December 1899, and midnight as time zero. Hour values are expressed as the absolute value of the fractional part of the number. However, a floating point value cannot represent all real values; therefore, there are limits on the range of dates that can be presented in DT_DATE." Read more
From the description above you can see that you can convert these values implicitly when mapping them to a DT_DATE Column after converting it to a 8-byte floating-point number DT_R8.
Use a derived column transformation to convert this column to 8-byte floating-point number:
(DT_R8)[dateColumn]
Then map it to a DT_DATE column
Or cast it twice:
(DT_DATE)(DT_R8)[dateColumn]
Experiments
i created a SSIS package with one DataFlow Task
The DataFlow Task Contains a Script Component (as Source) that generate one output row (one column of type DT_R8) with the value 42825.94097.
The Script Component is linked to a derived column that convert this column into DT_DATE using the following expression
(DT_DATE)[Column]
the output i get is as shown below
Related answers
I have many answers related with this question:
- CAST vs ssis data flow implicit conversion difference
- SSIS Source Format Implicit Conversion for Datetime
- SSIS Error importing Excel Date (truncation error)
这篇关于有没有更好的方法来解析 SSIS 中的 [Integer].[Integer] 样式日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有更好的方法来解析 SSIS 中的 [Integer].[Integer] 样式日期?
基础教程推荐
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 无法解决整理冲突 2021-01-01
