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.
谁能指导我或教我如何在 Dell Boomi 中执行一个过程,该过程将在 SFTP 服务器中获取所有 *.csv 文件,然后在 SQL Server(数据库表)中创建它们
SFTP 中的示例 CSV 文件:
其中,第一行是表名,第二行是列名,其余是值
注意:该过程应处理超过 10 个 CSV 文件
如果您有固定的表格格式,那么您可以在 Program Command Shape 中编写 SQL 脚本,并根据 .csv 文件的输入和使用 Condition Shape 使它们运行。
否则,如果您没有固定的表模式,那么您需要考虑编写动态 SQL 以在 GO 上创建表的方式。