Hi Folx,
I am new to SQL Server and I am struggling with source data for a table with two db_datetime columns. The data can be inserted using native SQL, but errors when I build a Data Flow Container.
Versions:
Microsoft SQL Server Integration Services Designer
Version 9.00.1399.00
Microsoft SQL Server Management Studio
9.00.1399.00
Error:
[Flat File Source [1]] Error: The "output column "extraction_date" (24)" failed because error code 0xC0209084 occurred, and the error row disposition on "output column "extraction_date" (24)" specifies failure on error. An error occurred on the specified object of the specified component.
Source Row:
101|100|2006/12/19 23:50:01.00|2006/12/19 23:50:01.00|||
How I got here (in approximate order...):
- Using ETL I created a Container in which I created a Package
- Created a Flat File Connection
- Created a Flat File Source
- Edited the columns on the Flat File Connection
- database timestamp [DT_DBTIMESTAMP]
- NOTE: corresponding columns on destination table in SQL Server Management Studio are of type datetime
- Created an OLE DB Destination
- Executed the package which returned the above named error.
Questions:
01. What is the proper format for my source data
02. Could this be a memory issue If so, how do I diagnose it
In advance, thanks for your help.
Bill
ps: be kind to me...not only am i an old guy, but i'm a unix guy too...
Native SQL that works:
insert into "transaction"
(transaction_id,
org_id,
extraction_date,
create_date,
transaction_size,
profile_count,
version_count)
values
(101,100,
'2006/12/19 23:50:01',
'2006/12/19 23:50:01',
NULL,
NULL,
NULL)