問題タブ [ssis-2005]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ssis - コンマ区切りのcsvファイルをSSISのテーブルにロードする
以下の形式のデータを含む csv ファイルがあります。
ファイル: サンプル.csv
ID、名前、住所
1,Abcd,street1,3rdcross,xxxx
2,Cfre,2ndmain,3rdstreet,yyy
3、ASDF、4thメイン、1stクロス、zzz
以下のようにデータをテーブルにロードする必要があります。
表: サンプル
ID 名前 アドレス
1 Abcd street1,3rdcross,xxxx
2 Cfre 2ndmain,3rdstreet,yyy
3 Asdf 4thmain,1stcross,zzz
SSIS を使用してこれを達成する方法は?
コンマ区切り文字を使用すると、住所列は 3 つの列に分割されます。