2

I have a Flat file (.csv)

ID, Name
1, ABC
2, CDE
3, DEF

I want to the Insert these columns into the target Oracle Table with the sysdate to be inserted into the Load_Dt Column

Create Table Temp1
(Load_Dt Date,
ID Number,
Name Varchar2(10));

Environment:

  • SSIS 2008 R2
  • Oracle 10g
  • Attunity V 1.2
Hadi
  • 36,233
  • 13
  • 65
  • 124
Ras Knorr
  • 43
  • 6

2 Answers2

0

One way to do this is with the Derived Column Transformation.

Tab Alleman
  • 31,483
  • 7
  • 36
  • 52
0

In the DataFlow Task add a Derived Column Transformation

Add a new column of type DT_DBTIMESTAMP with the expression:

(DT_DBTIMESTAMP)GETDATE()

Read more about Derived Column Transformation in this Microsoft Docs article

Hadi
  • 36,233
  • 13
  • 65
  • 124