问:我在一个名为 xyz 的文件夹中有多个文本文件,我在 sqlserver 中创建了一个没有任何表的新数据库。这里我的问题是根据名为表的文本文件将所有这些文本文件导入新数据库中使用ssis 包。有人知道吗,请告诉我步骤。
A: Step 1: Use foreach loop iterator to pick all files in the specific folder.
Step 2: By using script task get the column name from text file and create the tables in you database. Keep the table name in the SSIS variable.
Step 3: Choose any destination task and insert the data into the newly created tables.
我使用foreach
了循环容器并选择了文本文件的路径。在第 2 步中,我无法编写用于列导入的脚本。我有几个名为员工的文本文件有列id ,name
,另一个部门有deptno ,location
。实际上我也是初学者。sql server and ssis
有人知道请帮助我。