将 YYYYMM 格式的日期批量插入 MS SQL 表中的日期字段

bulk insert a date in YYYYMM format to date field in MS SQL table(将 YYYYMM 格式的日期批量插入 MS SQL 表中的日期字段)
本文介绍了将 YYYYMM 格式的日期批量插入 MS SQL 表中的日期字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个大文本文件(超过 3 亿条记录).有一个字段包含 YYYYMM 格式的日期.目标字段是日期类型,我使用的是 MS SQL 2008 R2 服务器.由于数据量巨大,我更喜欢使用批量插入.这是我已经完成的:

I have a large text file (more than 300 million records). There is a field containing date in YYYYMM format. Target field is of date type and I'm using MS SQL 2008 R2 server. Due to huge amount of data I'd prefer to use bulk insert. Here's what I've already done:

bulk insert Tabela_5
from 'c:users...	able5.csv'
with
(
    rowterminator = '
',
    fieldterminator = ',',
    tablock
)
select * from Tabela_5

201206 在服务器上原来是 2020-12-06 ,而我希望它是 2012-06-01(我不在乎这一天).有没有办法将这种格式的日期批量插入到日期类型的字段中?

201206 in file turns out to be 2020-12-06 on server, whereas I'd like it to be 2012-06-01 (I don't care about the day). Is there a way to bulk insert date in such format to a field of date type?

亲切的问候马切伊皮图查

kind regards maciej pitucha

推荐答案

没有办法在批量插入上执行此操作.您有 2 个选项.

There isn't a way to do this on Bulk Insert. You have 2 options.

  1. 将日期作为 varchar 字段插入,然后运行查询以转换将日期写入 DateTime 字段
  2. 使用 SSIS

这篇关于将 YYYYMM 格式的日期批量插入 MS SQL 表中的日期字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)