Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用摄取实用程序将数据从 csv 文件加载到 db2 目标表中。我看到标题行被拒绝并显示错误消息。是否有任何选项(类似于导入实用程序中的 skipcount)来跳过标题行以避免收到被拒绝的消息?
您可以将命名管道与INGEST一起使用。
像这样的东西:
mkfifo mypipe tail -n +2 data.csv > mypipe
然后从mypipe读取。