在 SQL Server 2008 管理控制台中导入 CSV
我正在尝试在 SQL Server 管理控制台中导入 CSV 文件。 CSV 以逗号分隔。
我有一些列在双引号内有逗号,似乎 SQL Server 将值拆分为 2 列。
我该如何解决这个问题?
我希望你能明白我的意思。
提前致谢。
I'm trying to import a CSV file within the SQL Server Management console.
The CSV is comma delimited.
I have some columns that has a comma within double quotes, it seems that SQL Server splits the value in 2 columns.
How can I solve this?
I hope you can understand what I mean.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已将此列的列分隔符自定义为开始
,"
和结束",
您可以在专用的 SSIS 包(SSMS 在下面使用的包)中执行此操作。与使用 bcp/BULK INSERT 格式化文件类似。我现在无法检查,抱歉,SSMS 向导中是否提供了相同的选项
You have customise the column separators for this column as starts
,"
and ends",
You can do this in a dedicated SSIS package (which is what SSMS uses underneath). Similar to format files with bcp/BULK INSERT. I can't check right now sorry if the same option is offered in the SSMS wizard