【发布时间】:2015-10-07 04:53:34
【问题描述】:
我正在生成一个 CSV 文件,该文件将使用 sqlldr 读入数据库,我想知道是否可以将兼容的 cmets 放入文件中?
# Currently I am using comments of this format
# and I want to add some information about where the file came from
但是,sqlldr 将这些报告为 rows not loaded due to data errors,这可能会让任何尝试调试导入过程的用户感到困惑。
我查看了sqlldr documentation,它没有提到任何关于 cmets 的内容。 this question 的答案还概述了 CSV 文件没有自己标准的 cmets,但标准由读取文件的应用程序定义(在本例中为 sqlldr)。
是否有可以与sqlldr 一起使用的兼容评论类型?
【问题讨论】:
标签: csv sql-loader