dbTalk Databases Forums  

SSIS An error occurred while attempting to perform a type cast

microsoft.public.sqlserver.dts microsoft.public.sqlserver.dts


Discuss SSIS An error occurred while attempting to perform a type cast in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Bugs Bunny
 
Posts: n/a

Default SSIS An error occurred while attempting to perform a type cast - 05-24-2006 , 04:49 AM






Hi,

I'm using SSIS for the first time but I'm no novice about unicode and
non-unicode.
This time I really don't see why SSIS is bothering me with a DT_STR to
DT_WSTR conversion problems.
I simply need to insert a new column with Derived Column of datatype
nvarchar(2000) based on 3 concatenated varchar columns. (For now I just don't
concatenate because the problem is the implicit or explicit conversion of
DT_STR to DT_WSTR).
In the expression I put the column name of the varchar(...) based column,
the datatype will be unicode DT_WSTR. When I run the package I will get the
error:

Error: 0xC0049066 at DF_fill, Derived Column [4776]: Converting an input
column from type DT_STR to type DT_WSTR failed. An error occurred while
performing the implicit conversion on the input column.
Error: 0xC0209029 at DF_fill, Derived Column [4776]: The "component "Derived
Column" (4776)" failed because error code 0xC0049066 occurred, and the error
row disposition on "output column "LogText" (4825)" specifies failure on
error. An error occurred on the specified object of the specified component.
Error: 0xC0047022 at DF_fill, DTS.Pipeline: The ProcessInput method on
component "Derived Column" (4776) failed with error code 0xC0209029. The
identified component returned an error from the ProcessInput method. The
error is specific to the component, but the error is fatal and will cause the
Data Flow task to stop running.

And when I explicit do the conversion: (DT_WSTR,2000)activiteitcode
I will get the error:

Error: 0xC0049064 at DF_fill, Derived Column [4776]: An error occurred while
attempting to perform a type cast.
Error: 0xC0209029 at DF_fill, Derived Column [4776]: The "component "Derived
Column" (4776)" failed because error code 0xC0049064 occurred, and the error
row disposition on "output column "LogText" (4825)" specifies failure on
error. An error occurred on the specified object of the specified component.
Error: 0xC0047022 at DF_fill, DTS.Pipeline: The ProcessInput method on
component "Derived Column" (4776) failed with error code 0xC0209029. The
identified component returned an error from the ProcessInput method. The
error is specific to the component, but the error is fatal and will cause the
Data Flow task to stop running.


Please help me. I tried mixing the columns of the sources and destinations
and checked the metadatamappings...

Kind regards,
Bugs Bunny

Reply With Quote
  #2  
Old   
Allan Mitchell
 
Posts: n/a

Default Re: SSIS An error occurred while attempting to perform a type cast - 05-25-2006 , 03:56 AM






Hello Bugs,


OK So it i read the post right we need to take 3 * varchar columns and make
them into 1 * nvarchar as we want to do that using the derived column transform.

First Q though.

Can you do this in the source? If you can I would


OK So let's take a Look

CREATE TABLE T (c1 varchar(10), c2 varchar(10), c3 varchar(10))
GO
INSERT T VALUES('SSIS','ROCKS','ETL')


Here is the derived column expression I used

(DT_WSTR, 10) [c1] + (DT_WSTR, 10) [c2] + (DT_WSTR, 10) [c3]


It works as expected.


What are the contents of DF_Fill? Maybe the issue is in the data which my
example will not expose?






Allan Mitchell
www.SQLDTS.com
www.SQLIS.com
www.Konesans.com

Quote:
Hi,

I'm using SSIS for the first time but I'm no novice about unicode and
non-unicode.
This time I really don't see why SSIS is bothering me with a DT_STR to
DT_WSTR conversion problems.
I simply need to insert a new column with Derived Column of datatype
nvarchar(2000) based on 3 concatenated varchar columns. (For now I
just don't
concatenate because the problem is the implicit or explicit conversion
of
DT_STR to DT_WSTR).
In the expression I put the column name of the varchar(...) based
column,
the datatype will be unicode DT_WSTR. When I run the package I will
get the
error:
Error: 0xC0049066 at DF_fill, Derived Column [4776]: Converting an
input
column from type DT_STR to type DT_WSTR failed. An error occurred
while
performing the implicit conversion on the input column.
Error: 0xC0209029 at DF_fill, Derived Column [4776]: The "component
"Derived
Column" (4776)" failed because error code 0xC0049066 occurred, and the
error
row disposition on "output column "LogText" (4825)" specifies failure
on
error. An error occurred on the specified object of the specified
component.
Error: 0xC0047022 at DF_fill, DTS.Pipeline: The ProcessInput method on
component "Derived Column" (4776) failed with error code 0xC0209029.
The
identified component returned an error from the ProcessInput method.
The
error is specific to the component, but the error is fatal and will
cause the
Data Flow task to stop running.
And when I explicit do the conversion: (DT_WSTR,2000)activiteitcode I
will get the error:

Error: 0xC0049064 at DF_fill, Derived Column [4776]: An error occurred
while
attempting to perform a type cast.
Error: 0xC0209029 at DF_fill, Derived Column [4776]: The "component
"Derived
Column" (4776)" failed because error code 0xC0049064 occurred, and the
error
row disposition on "output column "LogText" (4825)" specifies failure
on
error. An error occurred on the specified object of the specified
component.
Error: 0xC0047022 at DF_fill, DTS.Pipeline: The ProcessInput method on
component "Derived Column" (4776) failed with error code 0xC0209029.
The
identified component returned an error from the ProcessInput method.
The
error is specific to the component, but the error is fatal and will
cause the
Data Flow task to stop running.
Please help me. I tried mixing the columns of the sources and
destinations and checked the metadatamappings...

Kind regards,
Bugs Bunny



Reply With Quote
  #3  
Old   
Bugs Bunny
 
Posts: n/a

Default Re: SSIS An error occurred while attempting to perform a type cast - 05-29-2006 , 05:15 AM



Hi Allan,

My source is an OLE DB Destination (where data is copied from a flat file).
The record is validated and must be concatenated for logging. This is why I
want to have a new (derived) column . So my concatenation cannot be done
within the source.

I understand the conversion with the cast mechanism but it gives the error I
wrote in my previuos mail which I cannot explain.
Perhaps it's the combination with the OLE DB destination that I have as my
input. Maybe you can tell me more about that specific combination.

Kind regards,

Bugs Bunny

"Allan Mitchell" wrote:

Quote:
Hello Bugs,


OK So it i read the post right we need to take 3 * varchar columns and make
them into 1 * nvarchar as we want to do that using the derived column transform.

First Q though.

Can you do this in the source? If you can I would


OK So let's take a Look

CREATE TABLE T (c1 varchar(10), c2 varchar(10), c3 varchar(10))
GO
INSERT T VALUES('SSIS','ROCKS','ETL')


Here is the derived column expression I used

(DT_WSTR, 10) [c1] + (DT_WSTR, 10) [c2] + (DT_WSTR, 10) [c3]


It works as expected.


What are the contents of DF_Fill? Maybe the issue is in the data which my
example will not expose?






Allan Mitchell
www.SQLDTS.com
www.SQLIS.com
www.Konesans.com

Hi,

I'm using SSIS for the first time but I'm no novice about unicode and
non-unicode.
This time I really don't see why SSIS is bothering me with a DT_STR to
DT_WSTR conversion problems.
I simply need to insert a new column with Derived Column of datatype
nvarchar(2000) based on 3 concatenated varchar columns. (For now I
just don't
concatenate because the problem is the implicit or explicit conversion
of
DT_STR to DT_WSTR).
In the expression I put the column name of the varchar(...) based
column,
the datatype will be unicode DT_WSTR. When I run the package I will
get the
error:
Error: 0xC0049066 at DF_fill, Derived Column [4776]: Converting an
input
column from type DT_STR to type DT_WSTR failed. An error occurred
while
performing the implicit conversion on the input column.
Error: 0xC0209029 at DF_fill, Derived Column [4776]: The "component
"Derived
Column" (4776)" failed because error code 0xC0049066 occurred, and the
error
row disposition on "output column "LogText" (4825)" specifies failure
on
error. An error occurred on the specified object of the specified
component.
Error: 0xC0047022 at DF_fill, DTS.Pipeline: The ProcessInput method on
component "Derived Column" (4776) failed with error code 0xC0209029.
The
identified component returned an error from the ProcessInput method.
The
error is specific to the component, but the error is fatal and will
cause the
Data Flow task to stop running.
And when I explicit do the conversion: (DT_WSTR,2000)activiteitcode I
will get the error:

Error: 0xC0049064 at DF_fill, Derived Column [4776]: An error occurred
while
attempting to perform a type cast.
Error: 0xC0209029 at DF_fill, Derived Column [4776]: The "component
"Derived
Column" (4776)" failed because error code 0xC0049064 occurred, and the
error
row disposition on "output column "LogText" (4825)" specifies failure
on
error. An error occurred on the specified object of the specified
component.
Error: 0xC0047022 at DF_fill, DTS.Pipeline: The ProcessInput method on
component "Derived Column" (4776) failed with error code 0xC0209029.
The
identified component returned an error from the ProcessInput method.
The
error is specific to the component, but the error is fatal and will
cause the
Data Flow task to stop running.
Please help me. I tried mixing the columns of the sources and
destinations and checked the metadatamappings...

Kind regards,
Bugs Bunny




Reply With Quote
  #4  
Old   
Allan Mitchell
 
Posts: n/a

Default Re: SSIS An error occurred while attempting to perform a type cast - 05-30-2006 , 03:08 AM



Hello Bugs,

Did you have a typo there

"My source is an OLE DB Destination "

I am not sure where it is that you are taking data from and moving data to.

Can you give me some create table statements and maybe a 1 line INSERT statement
so I can test with what you see, because as I showed in my previous mail
I can get it to work in the pipeline.


Allan Mitchell
www.SQLDTS.com
www.SQLIS.com
www.Konesans.com

Quote:
Hi Allan,

My source is an OLE DB Destination (where data is copied from a flat
file). The record is validated and must be concatenated for logging.
This is why I want to have a new (derived) column . So my
concatenation cannot be done within the source.

I understand the conversion with the cast mechanism but it gives the
error I
wrote in my previuos mail which I cannot explain.
Perhaps it's the combination with the OLE DB destination that I have
as my
input. Maybe you can tell me more about that specific combination.
Kind regards,

Bugs Bunny

"Allan Mitchell" wrote:

Hello Bugs,

OK So it i read the post right we need to take 3 * varchar columns
and make them into 1 * nvarchar as we want to do that using the
derived column transform.

First Q though.

Can you do this in the source? If you can I would

OK So let's take a Look

CREATE TABLE T (c1 varchar(10), c2 varchar(10), c3 varchar(10))
GO
INSERT T VALUES('SSIS','ROCKS','ETL')
Here is the derived column expression I used

(DT_WSTR, 10) [c1] + (DT_WSTR, 10) [c2] + (DT_WSTR, 10) [c3]

It works as expected.

What are the contents of DF_Fill? Maybe the issue is in the data
which my example will not expose?

Allan Mitchell
www.SQLDTS.com
www.SQLIS.com
www.Konesans.com
Hi,

I'm using SSIS for the first time but I'm no novice about unicode
and
non-unicode.
This time I really don't see why SSIS is bothering me with a DT_STR
to
DT_WSTR conversion problems.
I simply need to insert a new column with Derived Column of datatype
nvarchar(2000) based on 3 concatenated varchar columns. (For now I
just don't
concatenate because the problem is the implicit or explicit
conversion
of
DT_STR to DT_WSTR).
In the expression I put the column name of the varchar(...) based
column,
the datatype will be unicode DT_WSTR. When I run the package I will
get the
error:
Error: 0xC0049066 at DF_fill, Derived Column [4776]: Converting an
input
column from type DT_STR to type DT_WSTR failed. An error occurred
while
performing the implicit conversion on the input column.
Error: 0xC0209029 at DF_fill, Derived Column [4776]: The "component
"Derived
Column" (4776)" failed because error code 0xC0049066 occurred, and
the
error
row disposition on "output column "LogText" (4825)" specifies
failure
on
error. An error occurred on the specified object of the specified
component.
Error: 0xC0047022 at DF_fill, DTS.Pipeline: The ProcessInput method
on
component "Derived Column" (4776) failed with error code 0xC0209029.
The
identified component returned an error from the ProcessInput method.
The
error is specific to the component, but the error is fatal and will
cause the
Data Flow task to stop running.
And when I explicit do the conversion: (DT_WSTR,2000)activiteitcode
I
will get the error:
Error: 0xC0049064 at DF_fill, Derived Column [4776]: An error
occurred
while
attempting to perform a type cast.
Error: 0xC0209029 at DF_fill, Derived Column [4776]: The "component
"Derived
Column" (4776)" failed because error code 0xC0049064 occurred, and
the
error
row disposition on "output column "LogText" (4825)" specifies
failure
on
error. An error occurred on the specified object of the specified
component.
Error: 0xC0047022 at DF_fill, DTS.Pipeline: The ProcessInput method
on
component "Derived Column" (4776) failed with error code 0xC0209029.
The
identified component returned an error from the ProcessInput method.
The
error is specific to the component, but the error is fatal and will
cause the
Data Flow task to stop running.
Please help me. I tried mixing the columns of the sources and
destinations and checked the metadatamappings...
Kind regards,
Bugs Bunny



Reply With Quote
  #5  
Old   
=?Utf-8?B?QnVncyBCdW5ueQ==?=
 
Posts: n/a

Default Re: SSIS An error occurred while attempting to perform a type cast - 05-30-2006 , 03:40 AM



Hi Allan,

No typo. I think it's time to show my package. I will dump this in 3 replies
because it's too long.
Have fun with it ;-) I deleted some array systemstrings which were very very
large. My SSIS by the way shows me a messagebox when I open my projec...is
this the problem perhaps I will try with a modified dtsx-file. I hope this
dump works for you. Further on I dumped my t.txt file too.

<?xml version="1.0"?><DTS:Executable
xmlnsTS="www.microsoft.com/SqlServer/Dts"
DTS:ExecutableType="MSDTS.Package.1"><DTS:Property
DTS:Name="PackageFormatVersion">2</DTS:Property><DTS:Property
DTS:Name="VersionComments"></DTS:Property><DTS:Property
DTS:Name="CreatorName">xxx</DTS:Property><DTS:Property
DTS:Name="CreatorComputerName">U5</DTS:Property><DTS:Property
DTS:Name="CreationDate" DTSataType="7">5/19/2006 12:53:24
PM</DTS:Property><DTS:Property
DTS:Name="PackageType">5</DTS:Property><DTS:Property
DTS:Name="ProtectionLevel">1</DTS:Property><DTS:Property
DTS:Name="MaxConcurrentExecutables">-1</DTS:Property><DTS:Property
DTS:Name="PackagePriorityClass">0</DTS:Property><DTS:Property
DTS:Name="VersionMajor">1</DTS:Property><DTS:Property
DTS:Name="VersionMinor">0</DTS:Property><DTS:Property
DTS:Name="VersionBuild">91</DTS:Property><DTS:Property
DTS:Name="VersionGUID">{F01E7F37-45B7-43B5-88FA-02BB600A82D2}</DTS:Property><DTS:Property
DTS:Name="EnableConfig">0</DTS:Property><DTS:Property
DTS:Name="CheckpointFileName"></DTS:Property><DTS:Property
DTS:Name="SaveCheckpoints">0</DTS:Property><DTS:Property
DTS:Name="CheckpointUsage">0</DTS:Property><DTS:Property
DTS:Name="SuppressConfigurationWarnings">0</DTS:Property>
<DTS:ConnectionManager><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property><DTS:Property
DTS:Name="ObjectName">DCFile</DTS:Property><DTS:Property
DTS:Name="DTSID">{84633D90-EA87-4F19-AFAC-B1C625EC451A}</DTS:Property><DTS:Property
DTS:Name="Description">test</DTS:Property><DTS:Property
DTS:Name="CreationName">FLATFILE</DTS:Property><DTS:ObjectData><DTS:ConnectionManage r><DTS:Property
DTS:Name="FileUsageType">0</DTS:Property><DTS:Property
DTS:Name="Format">Delimited</DTS:Property><DTS:Property
DTS:Name="LocaleID">1043</DTS:Property><DTS:Property
DTS:Name="Unicode">0</DTS:Property><DTS:Property
DTS:Name="HeaderRowsToSkip">0</DTS:Property><DTS:Property
DTS:Name="HeaderRowDelimiter"
xml:space="preserve">_x000D__x000A_</DTS:Property><DTS:Property
DTS:Name="ColumnNamesInFirstDataRow">-1</DTS:Property><DTS:Property
DTS:Name="RowDelimiter" xml:space="preserve"></DTS:Property><DTS:Property
DTS:Name="DataRowsToSkip">0</DTS:Property><DTS:Property
DTS:Name="TextQualifier"><none></DTS:Property><DTS:Property
DTS:Name="CodePage">1252</DTS:Property>
<DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x007C_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">0</DTS:Property><DTS:Property
DTS:Name="DataType">3</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">id</DTS:Property><DTS:Property
DTS:Name="DTSID">{B82B5A6C-CDF6-4548-9010-1451B7846E55}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn>
<DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x007C_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">activiteitcode</DTS:Property><DTS:Property
DTS:Name="DTSID">{0303EDAF-7333-4174-AD4F-F9D7ED1ED919}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn>
<DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x000A_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">activiteitbeschrijving</DTS:Property><DTS:Property
DTS:Name="DTSID">{5369B977-DDFD-4BC1-8B8E-D8E7B7C6EA6E}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn><DTS:Property
DTS:Name="ConnectionString">D:\My
Documents\t.txt</DTS:Property></DTS:ConnectionManager></DTS:ObjectData></DTS:ConnectionManager>
<DTS:ConnectionManager><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property><DTS:Property
DTS:Name="ObjectName">DCFile_automatic</DTS:Property><DTS:Property
DTS:Name="DTSID">{B3011424-E971-4CB8-8E88-A580EBD4A766}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName">FLATFILE</DTS:Property><DTS:ObjectData><DTS:ConnectionManage r><DTS:Property
DTS:Name="FileUsageType">0</DTS:Property><DTS:Property
DTS:Name="Format">Delimited</DTS:Property><DTS:Property
DTS:Name="LocaleID">1043</DTS:Property><DTS:Property
DTS:Name="Unicode">0</DTS:Property><DTS:Property
DTS:Name="HeaderRowsToSkip">0</DTS:Property><DTS:Property
DTS:Name="HeaderRowDelimiter"
xml:space="preserve">_x000D__x000A_</DTS:Property><DTS:Property
DTS:Name="ColumnNamesInFirstDataRow">-1</DTS:Property><DTS:Property
DTS:Name="RowDelimiter" xml:space="preserve"></DTS:Property><DTS:Property
DTS:Name="DataRowsToSkip">0</DTS:Property><DTS:Property
DTS:Name="TextQualifier"><none></DTS:Property><DTS:Property
DTS:Name="CodePage">1252</DTS:Property>
<DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x007C_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">id</DTS:Property><DTS:Property
DTS:Name="DTSID">{7667F184-8B4E-4D8B-A806-A170857EC812}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn>
<DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x007C_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">activiteitcode</DTS:Property><DTS:Property
DTS:Name="DTSID">{24601232-AF20-4073-A7B9-90ED4B0096C5}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn>
<DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x000A_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">activiteitbeschrijving</DTS:Property><DTS:Property
DTS:Name="DTSID">{1C0B17A1-4280-44B9-81D6-6706D72B6229}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn><DTS:Property
DTS:Name="ConnectionString">D:\My
Documents\t.txt</DTS:Property></DTS:ConnectionManager></DTS:ObjectData></DTS:ConnectionManager>
<DTS:ConnectionManager><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property><DTS:Property
DTS:Name="ObjectName">U005595\SQL_U005595.RemcoTes t</DTS:Property><DTS:Property
DTS:Name="DTSID">{5BD3F144-6AD6-44E2-8E45-8D06FEFABE38}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName">OLEDB</DTS:Property><DTS:ObjectData><DTS:ConnectionManage r><DTS:Property
DTS:Name="Retain">0</DTS:Property><DTS:Property
DTS:Name="ConnectionString">Data Source=U005595\SQL_U005595;Initial
Catalog=RemcoTest;Provider=SQLNCLI.1;Integrated Security=SSPI;Auto
Translate=False;</DTS:Property></DTS:ConnectionManager></DTS:ObjectData></DTS:ConnectionManager>
<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><PrecedenceConstraint
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwd:EvalOp>Constraint</dwd:EvalOp></PrecedenceConstraint></DTS:Property><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{049DB30A-4B61-41C2-BA45-B42EEACF5A37}</DTS:Property><DTS:Property
DTS:Name="DTSID">{BBD41596-1F51-42F0-9E1E-D074956D2663}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable>
<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><Package xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwdtsControlFlowDiagram><dwd:BoundingLeft> -5</dwd:BoundingLeft><dwd:Layout><dds>
<diagram fontclsid="{0BE35203-8F91-11CE-9DE3-00AA004BB851}"
mouseiconclsid="{0BE35204-8F91-11CE-9DE3-00AA004BB851}"
defaultlayout="Microsoft.DataWarehouse.Layout.Grap hLayout"
defaultlineroute="Microsoft.DataWarehouse.Layout.G raphLayout" version="7"
nextobject="11" scale="100" pagebreakanchorx="0" pagebreakanchory="0"
pagebreaksizex="0" pagebreaksizey="0" scrollleft="0" scrolltop="0"
gridx="150" gridy="150" marginx="1000" marginy="1000" zoom="100" x="21087"
y="13811" backcolor="15334399" defaultpersistence="2"
PrintPageNumbersMode="3" PrintMarginTop="0" PrintMarginBottom="635"
PrintMarginLeft="0" PrintMarginRight="0" marqueeselectionmode="1"
mousepointer="0" snaptogrid="0" autotypeannotation="1" showscrollbars="1"
viewpagebreaks="0" donotforceconnectorsbehindshapes="1"
backpictureclsid="{00000000-0000-0000-0000-000000000000}">
<font>
<ddsxmlobjectstreamwrapper binary="01010000900180380100065461686f6d61"
/>
</font>
<mouseicon>
<ddsxmlobjectstreamwrapper binary="6c74000000000000" />
</mouseicon>
</diagram>
<layoutmanager>
<ddsxmlobj />
</layoutmanager>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="Data Flow Task" left="1139" top="4365" logicalid="5" controlid="1"
masterid="2" hint1="0" hint2="0" width="3598" height="1164" noresize="0"
nomove="0" nodefaultattachpoints="0" autodrag="1" usedefaultiddshape="1"
selectable="1" showselectionhandles="1" allownudging="1" isannotation="0"
dontautolayout="0" groupcollapsed="0" tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}" vartype="8" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="DdsShapes.DdsContainerObjectManaged Bridge.1"
tooltip="Sequence Container" left="-5" top="0" logicalid="6" controlid="2"
masterid="0" hint1="0" hint2="0" width="10190" height="9711" noresize="0"
nomove="0" nodefaultattachpoints="0" autodrag="1" usedefaultiddshape="1"
selectable="1" showselectionhandles="1" allownudging="1" isannotation="0"
dontautolayout="0" groupcollapsed="0" tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="00080000ce270000ef250000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="Caption" value="Sequence Container" vartype="8" />
<property name="CaptionHeight" value="1164" vartype="3" />
<property name="Collapsed" value="0" vartype="11" />
<property name="CollapsedWidth" value="10190" vartype="3" />
<property name="LogicalObject"
value="{DBD4AE19-0083-46AE-9BA7-120F16A3DCCF}" vartype="8" />
<property name="RealHeight" value="0" vartype="3" />
<property name="RealWidth" value="0" vartype="3" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="Init Task" left="1744" top="1911" logicalid="7" controlid="3"
masterid="2" hint1="0" hint2="0" width="3598" height="1164" noresize="0"
nomove="0" nodefaultattachpoints="0" autodrag="1" usedefaultiddshape="1"
selectable="1" showselectionhandles="1" allownudging="1" isannotation="0"
dontautolayout="0" groupcollapsed="0" tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{E0F8FF10-E5D8-4757-91D7-701C90F17040}" vartype="8" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Polyline" left="2539" top="2676"
logicalid="8" controlid="4" masterid="0" hint1="0" hint2="0" width="1404"
height="2189" noresize="0" nomove="0" nodefaultattachpoints="1" autodrag="0"
usedefaultiddshape="0" selectable="1" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobj>
<polyline endtypedst="3" endtypesrc="1" usercolor="32768"
linestyle="0" linerender="2" customendtypedstid="0" customendtypesrcid="0"
adornsvisible="1" />
</ddsxmlobj>
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{049DB30A-4B61-41C2-BA45-B42EEACF5A37}" vartype="8" />
<property name="Virtual" value="0" vartype="11" />
<property name="VisibleAP" value="0" vartype="3" />
</ddsxmlobj>
</layoutobject>
<connector lineroutestyle="Microsoft.DataWarehouse.Layout.Gra phLayout"
sourceid="3" destid="1" sourceattachpoint="7" destattachpoint="6"
segmenteditmode="0" bendpointeditmode="0" bendpointvisibility="2"
relatedid="0" virtual="0">
<point x="3543" y="3075" />
<point x="3543" y="3720" />
<point x="2938" y="3720" />
<point x="2938" y="4365" />
</connector>
</ddscontrol>
</dds></dwd:Layout></dwdtsControlFlowDiagram></Package></DTS:Property><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{34231942-5988-49CF-A6B8-57FC5E5FFE33}</DTS:Property><DTS:Property
DTS:Name="DTSID">{E7601CC4-F148-4978-BD4E-6913839F40F5}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable>



Reply With Quote
  #6  
Old   
=?Utf-8?B?QnVncyBCdW5ueQ==?=
 
Posts: n/a

Default Re: SSIS An error occurred while attempting to perform a type cast - 05-30-2006 , 03:42 AM



<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><TaskHost xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwdtsDataFlowDiagram><dwd:BoundingLeft>-5654</dwd:BoundingLeft><dwd:BoundingTop>2053</dwd:BoundingTop><dwd:Layout><dds>
<diagram fontclsid="{0BE35203-8F91-11CE-9DE3-00AA004BB851}"
mouseiconclsid="{0BE35204-8F91-11CE-9DE3-00AA004BB851}"
defaultlayout="Microsoft.DataWarehouse.Layout.Grap hLayout"
defaultlineroute="Microsoft.DataWarehouse.Layout.G raphLayout" version="7"
nextobject="59" scale="100" pagebreakanchorx="0" pagebreakanchory="0"
pagebreaksizex="0" pagebreaksizey="0" scrollleft="-6654" scrolltop="1053"
gridx="150" gridy="150" marginx="1000" marginy="1000" zoom="100" x="21087"
y="12885" backcolor="15334399" defaultpersistence="2"
PrintPageNumbersMode="3" PrintMarginTop="0" PrintMarginBottom="635"
PrintMarginLeft="0" PrintMarginRight="0" marqueeselectionmode="1"
mousepointer="0" snaptogrid="0" autotypeannotation="1" showscrollbars="1"
viewpagebreaks="0" donotforceconnectorsbehindshapes="0"
backpictureclsid="{00000000-0000-0000-0000-000000000000}">
<font>
<ddsxmlobjectstreamwrapper binary="01000000900144420100065461686f6d61"
/>
</font>
<mouseicon>
<ddsxmlobjectstreamwrapper binary="6c74000000000000" />
</mouseicon>
</diagram>
<layoutmanager>
<ddsxmlobj />
</layoutmanager>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="Flat File Source" left="300" top="2053" logicalid="18" controlid="1"
masterid="0" hint1="0" hint2="0" width="3598" height="1164" noresize="0"
nomove="0" nodefaultattachpoints="0" autodrag="1" usedefaultiddshape="1"
selectable="1" showselectionhandles="1" allownudging="1" isannotation="0"
dontautolayout="0" groupcollapsed="0" tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/components/511" vartype="8" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="OLE DB Destination" left="-653" top="16548" logicalid="19"
controlid="2" masterid="0" hint1="0" hint2="0" width="3598" height="1164"
noresize="0" nomove="0" nodefaultattachpoints="0" autodrag="1"
usedefaultiddshape="1" selectable="1" showselectionhandles="1"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/components/757" vartype="8" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="OLE DB Destination" left="-2160" top="5197" logicalid="20"
controlid="3" masterid="0" hint1="0" hint2="0" width="3598" height="1164"
noresize="0" nomove="0" nodefaultattachpoints="0" autodrag="1"
usedefaultiddshape="1" selectable="1" showselectionhandles="1"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/components/936" vartype="8" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Polyline" left="-760" top="2818"
logicalid="21" controlid="4" masterid="0" hint1="0" hint2="0" width="2709"
height="2879" noresize="0" nomove="0" nodefaultattachpoints="1" autodrag="0"
usedefaultiddshape="0" selectable="1" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobj>
<polyline endtypedst="3" endtypesrc="1" usercolor="32768"
linestyle="0" linerender="1" customendtypedstid="0" customendtypesrcid="0"
adornsvisible="1" />
</ddsxmlobj>
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/paths/953" vartype="8" />
<property name="Virtual" value="0" vartype="11" />
<property name="VisibleAP" value="0" vartype="3" />
</ddsxmlobj>
</layoutobject>
<connector lineroutestyle="Microsoft.DataWarehouse.Layout.Gra phLayout"
sourceid="1" destid="3" sourceattachpoint="5" destattachpoint="6"
segmenteditmode="0" bendpointeditmode="0" bendpointvisibility="2"
relatedid="0" virtual="0">
<point x="1549" y="3217" />
<point x="1549" y="4207" />
<point x="-361" y="4207" />
<point x="-361" y="5197" />
</connector>
</ddscontrol>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="Executes a custom script." left="-529" top="13489" logicalid="22"
controlid="5" masterid="0" hint1="0" hint2="0" width="3598" height="1164"
noresize="0" nomove="0" nodefaultattachpoints="0" autodrag="1"
usedefaultiddshape="1" selectable="1" showselectionhandles="1"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/components/1501" vartype="8" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Polyline" left="747" top="14254"
logicalid="23" controlid="6" masterid="0" hint1="0" hint2="0" width="923"
height="2794" noresize="0" nomove="0" nodefaultattachpoints="1" autodrag="0"
usedefaultiddshape="0" selectable="1" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobj>
<polyline endtypedst="3" endtypesrc="1" usercolor="32768"
linestyle="0" linerender="1" customendtypedstid="0" customendtypesrcid="0"
adornsvisible="1">
<adornment percentpos="50" controlid="20" width="423" height="423"
side="1" behavior="2" himetric="1009" distfromline="175" startobj="0"
x="1383" y="15775" visible="1" allowoverlap="1" usepercent="1" />
</polyline>
</ddsxmlobj>
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/paths/1513" vartype="8" />
<property name="Virtual" value="0" vartype="11" />
<property name="VisibleAP" value="0" vartype="3" />
</ddsxmlobj>
</layoutobject>
<connector lineroutestyle="Microsoft.DataWarehouse.Layout.Gra phLayout"
sourceid="5" destid="2" sourceattachpoint="7" destattachpoint="6"
segmenteditmode="0" bendpointeditmode="0" bendpointvisibility="2"
relatedid="0" virtual="0">
<point x="1270" y="14653" />
<point x="1270" y="15600" />
<point x="1146" y="15600" />
<point x="1146" y="16548" />
</connector>
</ddscontrol>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="Updates column values using expressions" left="3387" top="7653"
logicalid="24" controlid="7" masterid="0" hint1="0" hint2="0" width="3598"
height="1164" noresize="0" nomove="0" nodefaultattachpoints="0" autodrag="1"
usedefaultiddshape="1" selectable="1" showselectionhandles="1"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/components/2631" vartype="8" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Polyline" left="2250" top="2818"
logicalid="25" controlid="8" masterid="0" hint1="0" hint2="0" width="3336"
height="5335" noresize="0" nomove="0" nodefaultattachpoints="1" autodrag="0"
usedefaultiddshape="0" selectable="1" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobj>
<polyline endtypedst="3" endtypesrc="1" usercolor="255"
linestyle="0" linerender="1" customendtypedstid="0" customendtypesrcid="0"
adornsvisible="1">
<adornment percentpos="59.3001577513265" controlid="21"
width="3951" height="344" side="0" behavior="2" himetric="4135"
distfromline="175" startobj="0" x="440" y="5610" visible="1" allowoverlap="1"
usepercent="1" />
</polyline>
</ddsxmlobj>
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/paths/2637" vartype="8" />
<property name="Virtual" value="0" vartype="11" />
<property name="VisibleAP" value="0" vartype="3" />
</ddsxmlobj>
</layoutobject>
<connector lineroutestyle="Microsoft.DataWarehouse.Layout.Gra phLayout"
sourceid="1" destid="7" sourceattachpoint="9" destattachpoint="6"
segmenteditmode="0" bendpointeditmode="0" bendpointvisibility="2"
relatedid="0" virtual="0">
<point x="2649" y="3217" />
<point x="2649" y="5435" />
<point x="5186" y="5435" />
<point x="5186" y="7653" />
</connector>
</ddscontrol>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="Updates column values using expressions" left="-2548" top="8038"
logicalid="26" controlid="9" masterid="0" hint1="0" hint2="0" width="3598"
height="1164" noresize="0" nomove="0" nodefaultattachpoints="0" autodrag="1"
usedefaultiddshape="1" selectable="1" showselectionhandles="1"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/components/4776" vartype="8" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Polyline" left="-1148" top="5962"
logicalid="27" controlid="10" masterid="0" hint1="0" hint2="0" width="1187"
height="2576" noresize="0" nomove="0" nodefaultattachpoints="1" autodrag="0"
usedefaultiddshape="0" selectable="1" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobj>
<polyline endtypedst="3" endtypesrc="1" usercolor="255"
linestyle="0" linerender="1" customendtypedstid="0" customendtypesrcid="0"
adornsvisible="1">
<adornment percentpos="60.4815276048153" controlid="19"
width="4499" height="344" side="0" behavior="2" himetric="1248"
distfromline="175" startobj="0" x="-5423" y="6706" visible="1"
allowoverlap="1" usepercent="1" />
</polyline>
</ddsxmlobj>
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/paths/4782" vartype="8" />
<property name="Virtual" value="0" vartype="11" />
<property name="VisibleAP" value="0" vartype="3" />
</ddsxmlobj>
</layoutobject>
<connector lineroutestyle="Microsoft.DataWarehouse.Layout.Gra phLayout"
sourceid="3" destid="9" sourceattachpoint="7" destattachpoint="6"
segmenteditmode="0" bendpointeditmode="0" bendpointvisibility="2"
relatedid="0" virtual="0">
<point x="-361" y="6361" />
<point x="-361" y="7199" />
<point x="-749" y="7199" />
<point x="-749" y="8038" />
</connector>
</ddscontrol>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="Merges multiple datasets." left="1843" top="11054" logicalid="28"
controlid="11" masterid="0" hint1="0" hint2="0" width="3598" height="1164"
noresize="0" nomove="0" nodefaultattachpoints="0" autodrag="1"
usedefaultiddshape="1" selectable="1" showselectionhandles="1"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/components/4906" vartype="8" />
<property name="ShowConnectorSource" value="0" vartype="2" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Polyline" left="-1148" top="8803"
logicalid="29" controlid="12" masterid="0" hint1="0" hint2="0" width="4640"
height="2751" noresize="0" nomove="0" nodefaultattachpoints="1" autodrag="0"
usedefaultiddshape="0" selectable="1" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobj>
<polyline endtypedst="3" endtypesrc="1" usercolor="32768"
linestyle="0" linerender="1" customendtypedstid="0" customendtypesrcid="0"
adornsvisible="1" />
</ddsxmlobj>
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/paths/4909" vartype="8" />
<property name="Virtual" value="0" vartype="11" />
<property name="VisibleAP" value="0" vartype="3" />
</ddsxmlobj>
</layoutobject>
<connector lineroutestyle="Microsoft.DataWarehouse.Layout.Gra phLayout"
sourceid="9" destid="11" sourceattachpoint="7" destattachpoint="4"
segmenteditmode="0" bendpointeditmode="0" bendpointvisibility="2"
relatedid="0" virtual="0">
<point x="-749" y="9202" />
<point x="-749" y="10128" />
<point x="3092" y="10128" />
<point x="3092" y="11054" />
</connector>
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Polyline" left="3793" top="8418"
logicalid="30" controlid="13" masterid="0" hint1="0" hint2="0" width="1793"
height="3136" noresize="0" nomove="0" nodefaultattachpoints="1" autodrag="0"
usedefaultiddshape="0" selectable="1" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobj>
<polyline endtypedst="3" endtypesrc="1" usercolor="32768"
linestyle="0" linerender="1" customendtypedstid="0" customendtypesrcid="0"
adornsvisible="1" />
</ddsxmlobj>
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/paths/4929" vartype="8" />
<property name="Virtual" value="0" vartype="11" />
<property name="VisibleAP" value="0" vartype="3" />
</ddsxmlobj>
</layoutobject>
<connector lineroutestyle="Microsoft.DataWarehouse.Layout.Gra phLayout"
sourceid="7" destid="11" sourceattachpoint="7" destattachpoint="8"
segmenteditmode="0" bendpointeditmode="0" bendpointvisibility="2"
relatedid="0" virtual="0">
<point x="5186" y="8817" />
<point x="5186" y="9935" />
<point x="4192" y="9935" />
<point x="4192" y="11054" />
</connector>
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Polyline" left="871" top="11819"
logicalid="31" controlid="14" masterid="0" hint1="0" hint2="0" width="3171"
height="2170" noresize="0" nomove="0" nodefaultattachpoints="1" autodrag="0"
usedefaultiddshape="0" selectable="1" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="0" groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0">
<control>
<ddsxmlobj>
<polyline endtypedst="3" endtypesrc="1" usercolor="32768"
linestyle="0" linerender="1" customendtypedstid="0" customendtypesrcid="0"
adornsvisible="1" />
</ddsxmlobj>
</control>
<layoutobject>
<ddsxmlobj>
<property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}/paths/4935" vartype="8" />
<property name="Virtual" value="0" vartype="11" />
<property name="VisibleAP" value="0" vartype="3" />
</ddsxmlobj>
</layoutobject>
<connector lineroutestyle="Microsoft.DataWarehouse.Layout.Gra phLayout"
sourceid="11" destid="5" sourceattachpoint="7" destattachpoint="6"
segmenteditmode="0" bendpointeditmode="0" bendpointvisibility="2"
relatedid="0" virtual="0">
<point x="3642" y="12218" />
<point x="3642" y="12853" />
<point x="1270" y="12853" />
<point x="1270" y="13489" />
</connector>
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Text" left="-5423" top="6706"
logicalid="36" controlid="19" masterid="10" hint1="0" hint2="0" width="4499"
height="344" noresize="1" nomove="0" nodefaultattachpoints="1" autodrag="1"
usedefaultiddshape="1" selectable="0" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="1" groupcollapsed="0"
tabstop="0" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper
binary="000200009311000058010000030000000000050000 80080000800100000035000100000090014442010006546168 6f6d611f004f004c0045002000440042002000440065007300 740069006e006100740069006f006e0020004500720072006f 00720020004f007500740070007500740000000000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="AnnotationAdornment" value="-1" vartype="11" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1" left="1383"
top="15775" logicalid="37" controlid="20" masterid="6" hint1="0" hint2="0"
width="423" height="423" noresize="1" nomove="1" nodefaultattachpoints="1"
autodrag="0" usedefaultiddshape="1" selectable="0" showselectionhandles="1"
allownudging="1" isannotation="0" dontautolayout="1" groupcollapsed="0"
tabstop="0" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper binary="00080000a7010000a7010000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="VisualizerAdornment" value="-1" vartype="11" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
<ddscontrol controlprogid="MSDDS.Text" left="440" top="5610"
logicalid="38" controlid="21" masterid="8" hint1="0" hint2="0" width="3951"
height="344" noresize="1" nomove="0" nodefaultattachpoints="1" autodrag="1"
usedefaultiddshape="1" selectable="0" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="1" groupcollapsed="0"
tabstop="0" visible="1" snaptogrid="0">
<control>
<ddsxmlobjectstreaminitwrapper
binary="000200006f0f000058010000030000000000050000 80080000800100000035000100000090014442010006546168 6f6d611d0046006c00610074002000460069006c0065002000 53006f00750072006300650020004500720072006f00720020 004f007500740070007500740000000000" />
</control>
<layoutobject>
<ddsxmlobj>
<property name="AnnotationAdornment" value="-1" vartype="11" />
</ddsxmlobj>
</layoutobject>
<shape groupshapeid="0" groupnode="0" />
</ddscontrol>
</dds></dwd:Layout><dwd:PersistedViewPortLeft>-6654</dwd:PersistedViewPortLeft><dwd:PersistedViewPortTo p>1053</dwd:PersistedViewPortTop></dwdtsDataFlowDiagram><dwdtsComponentDesignerPr opertiesList><dwdtsComponentDesignTimeProperty>< dwd:key
xsi:type="xsd:string">977 DataSourceViewID</dwd:key></dwdtsComponentDesignTimeProperty><dwdtsCompone ntDesignTimeProperty><dwd:key
xsi:type="xsd:string">977 TableInfoObjectType</dwd:key><dwd:value
xsi:type="xsd:string">Table</dwd:value></dwdtsComponentDesignTimeProperty><dwdtsCompone ntDesignTimeProperty><dwd:key
xsi:type="xsd:string">757 DataSourceViewID</dwd:key></dwdtsComponentDesignTimeProperty><dwdtsCompone ntDesignTimeProperty><dwd:key
xsi:type="xsd:string">936 TableInfoObjectType</dwd:key><dwd:value
xsi:type="xsd:string">Table</dwd:value></dwdtsComponentDesignTimeProperty><dwdtsCompone ntDesignTimeProperty><dwd:key
xsi:type="xsd:string">682 DataSourceViewID</dwd:key></dwdtsComponentDesignTimeProperty><dwdtsCompone ntDesignTimeProperty><dwd:key
xsi:type="xsd:string">757 TableInfoObjectType</dwd:key><dwd:value
xsi:type="xsd:string">Table</dwd:value></dwdtsComponentDesignTimeProperty><dwdtsCompone ntDesignTimeProperty><dwd:key
xsi:type="xsd:string">936 DataSourceViewID</dwd:key></dwdtsComponentDesignTimeProperty></dwdtsComponentDesignerPropertiesList></TaskHost></DTS:Property><DTS:Property DTS:Name="Namespace">dts-designer-1.0</DTS:Property>


Reply With Quote
  #7  
Old   
=?Utf-8?B?QnVncyBCdW5ueQ==?=
 
Posts: n/a

Default Re: SSIS An error occurred while attempting to perform a type cast - 05-30-2006 , 03:45 AM



<DTS:Property
DTS:Name="ObjectName">{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}</DTS:Property><DTS:Property
DTS:Name="DTSID">{EF6A4719-DB13-43F5-9BFE-0D7FA6D0736F}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable>
<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><PipelinePath xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwdestinationName>OLE
DB Destination Input</dwdestinationName><dwd:SourceName>Output
0</dwd:SourceName></PipelinePath></DTS:Property><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}-1513</DTS:Property><DTS:Property
DTS:Name="DTSID">{CD0E9916-A090-4F93-BA89-2DB389B0FBFB}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable>
<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><PipelinePath xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwd:PathAnnotation>PathName</dwd:PathAnnotation><dwdestinationName>Derived
Column Input</dwdestinationName><dwd:SourceName>Flat File Source Error
Output</dwd:SourceName></PipelinePath></DTS:Property><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}-2637</DTS:Property><DTS:Property
DTS:Name="DTSID">{CFEFDFFB-DB54-4855-8306-26E25303F4AC}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable>
<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><PipelinePath xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwd:PathAnnotation>PathName</dwd:PathAnnotation><dwdestinationName>Derived
Column Input</dwdestinationName><dwd:SourceName>OLE DB Destination Error
Output</dwd:SourceName></PipelinePath></DTS:Property><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}-4782</DTS:Property><DTS:Property
DTS:Name="DTSID">{15A5E4F2-E028-4FDF-93BE-5BE1E0B498B6}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable>
<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><PipelinePath xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwdestinationName>Union
All Input 1</dwdestinationName><dwd:SourceName>Derived Column
Output</dwd:SourceName></PipelinePath></DTS:Property><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}-4909</DTS:Property><DTS:Property
DTS:Name="DTSID">{521DE45C-AC6C-4419-803D-0264BF45D391}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable>
<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><PipelinePath xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwdestinationName>Union
All Input 2</dwdestinationName><dwd:SourceName>Derived Column
Output</dwd:SourceName></PipelinePath></DTS:Property><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}-4929</DTS:Property><DTS:Property
DTS:Name="DTSID">{E2C34D7F-C343-4907-B8BD-C4AEC53F63E4}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable>
<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><PipelinePath xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwdestinationName>Input
0</dwdestinationName><dwd:SourceName>Union All Output
1</dwd:SourceName></PipelinePath></DTS:Property><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}-4935</DTS:Property><DTS:Property
DTS:Name="DTSID">{E221D2C7-8F09-4FD2-B9D3-6628CBDA87BD}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable>
<DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><PipelinePath xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><dwdestinationName>OLE
DB Destination Input</dwdestinationName><dwd:SourceName>Flat File Source
Output</dwd:SourceName></PipelinePath></DTS:Property><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}-953</DTS:Property><DTS:Property
DTS:Name="DTSID">{3EF77F4F-52FA-41C3-AB04-A858D63B53A6}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable><DTS:Property
DTS:Name="ForceExecValue">0</DTS:Property><DTS:Property DTS:Name="ExecValue"
DTSataType="3">0</DTS:Property><DTS:Property
DTS:Name="ForceExecutionResult">-1</DTS:Property><DTS:Property
DTS:Name="Disabled">0</DTS:Property><DTS:Property
DTS:Name="FailPackageOnFailure">0</DTS:Property><DTS:Property
DTS:Name="FailParentOnFailure">0</DTS:Property><DTS:Property
DTS:Name="MaxErrorCount">1</DTS:Property><DTS:Property
DTS:Name="ISOLevel">1048576</DTS:Property><DTS:Property
DTS:Name="LocaleID">1043</DTS:Property><DTS:Property
DTS:Name="TransactionOption">1</DTS:Property><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property>
<DTS:LoggingOptions><DTS:Property
DTS:Name="LoggingMode">0</DTS:Property><DTS:Property
DTS:Name="FilterKind">1</DTS:Property><DTS:Property DTS:Name="EventFilter"
DTSataType="8"></DTS:Property></DTS:LoggingOptions>
<DTS:Executable DTS:ExecutableType="STOCK:SEQUENCE"><DTS:Property
DTS:Name="ForceExecValue">0</DTS:Property><DTS:Property DTS:Name="ExecValue"
DTSataType="3">0</DTS:Property><DTS:Property
DTS:Name="ForceExecutionResult">-1</DTS:Property><DTS:Property
DTS:Name="Disabled">0</DTS:Property><DTS:Property
DTS:Name="FailPackageOnFailure">0</DTS:Property><DTS:Property
DTS:Name="FailParentOnFailure">0</DTS:Property><DTS:Property
DTS:Name="MaxErrorCount">1</DTS:Property><DTS:Property
DTS:Name="ISOLevel">1048576</DTS:Property><DTS:Property
DTS:Name="LocaleID">-1</DTS:Property><DTS:Property
DTS:Name="TransactionOption">1</DTS:Property><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property>
<DTS:LoggingOptions><DTS:Property
DTS:Name="LoggingMode">0</DTS:Property><DTS:Property
DTS:Name="FilterKind">1</DTS:Property><DTS:Property DTS:Name="EventFilter"
DTSataType="8"></DTS:Property></DTS:LoggingOptions>
<DTS:Executable
DTS:ExecutableType="Microsoft.SqlServer.Dts.Tasks. ExecuteSQLTask.ExecuteSQLTask,
Microsoft.SqlServer.SQLTask, Version=9.0.242.0, Culture=neutral,
PublicKeyToken=89845dcd8080cc91" DTS:ThreadHint="0"><DTS:Property
DTS:Name="ExecutionLocation">0</DTS:Property><DTS:Property
DTS:Name="ExecutionAddress"></DTS:Property><DTS:Property
DTS:Name="TaskContact">Execute SQL Task; Microsoft Corporation; Microsoft SQL
Server v9; © 2004 Microsoft Corporation; All Rights
Reserved;http://www.microsoft.com/sql/support/default.asp;1</DTS:Property><DTS:Property
DTS:Name="ForceExecValue">0</DTS:Property><DTS:Property DTS:Name="ExecValue"
DTSataType="3">0</DTS:Property><DTS:Property
DTS:Name="ForceExecutionResult">-1</DTS:Property><DTS:Property
DTS:Name="Disabled">0</DTS:Property><DTS:Property
DTS:Name="FailPackageOnFailure">0</DTS:Property><DTS:Property
DTS:Name="FailParentOnFailure">0</DTS:Property><DTS:Property
DTS:Name="MaxErrorCount">1</DTS:Property><DTS:Property
DTS:Name="ISOLevel">1048576</DTS:Property><DTS:Property
DTS:Name="LocaleID">-1</DTS:Property><DTS:Property
DTS:Name="TransactionOption">1</DTS:Property><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property>
<DTS:LoggingOptions><DTS:Property
DTS:Name="LoggingMode">0</DTS:Property><DTS:Property
DTS:Name="FilterKind">1</DTS:Property><DTS:Property DTS:Name="EventFilter"
DTSataType="8"></DTS:Property></DTS:LoggingOptions><DTS:Property
DTS:Name="ObjectName">Init Task</DTS:Property><DTS:Property
DTS:Name="DTSID">{E0F8FF10-E5D8-4757-91D7-701C90F17040}</DTS:Property><DTS:Property
DTS:Name="Description">Init Task</DTS:Property><DTS:Property
DTS:Name="CreationName">Microsoft.SqlServer.Dts.Ta sks.ExecuteSQLTask.ExecuteSQLTask,
Microsoft.SqlServer.SQLTask, Version=9.0.242.0, Culture=neutral,
PublicKeyToken=89845dcd8080cc91</DTS:Property><DTS:Property
DTS:Name="DisableEventHandlers">0</DTS:Property><DTS:ObjectData><SQLTask:SqlTaskData
SQLTask:Connection="{5BD3F144-6AD6-44E2-8E45-8D06FEFABE38}"
SQLTask:TimeOut="0" SQLTask:IsStoredProc="False"
SQLTask:BypassPrepare="False" SQLTask:SqlStmtSourceType="DirectInput"
SQLTask:SqlStatementSource="delete from lu_activiteit"
SQLTask:ResultType="ResultSetType_None"
xmlns:SQLTask="www.microsoft.com/sqlserver/dts/tasks/sqltask"/></DTS:ObjectData></DTS:Executable>
<DTS:Executable DTS:ExecutableType="DTS.Pipeline.1"><DTS:Property
DTS:Name="ExecutionLocation">0</DTS:Property><DTS:Property
DTS:Name="ExecutionAddress"></DTS:Property><DTS:Property
DTS:Name="TaskContact">Performs high-performance data extraction,
transformation and loading;Microsoft Corporation; Microsoft SQL Server v9;
(C) 2004 Microsoft Corporation; All Rights
Reserved;http://www.microsoft.com/sql/support/default.asp;1</DTS:Property><DTS:Property
DTS:Name="ForceExecValue">0</DTS:Property><DTS:Property DTS:Name="ExecValue"
DTSataType="3">0</DTS:Property><DTS:Property
DTS:Name="ForceExecutionResult">-1</DTS:Property><DTS:Property
DTS:Name="Disabled">0</DTS:Property><DTS:Property
DTS:Name="FailPackageOnFailure">0</DTS:Property><DTS:Property
DTS:Name="FailParentOnFailure">0</DTS:Property><DTS:Property
DTS:Name="MaxErrorCount">10</DTS:Property><DTS:Property
DTS:Name="ISOLevel">1048576</DTS:Property><DTS:Property
DTS:Name="LocaleID">-1</DTS:Property><DTS:Property
DTS:Name="TransactionOption">1</DTS:Property><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property>
<DTS:LoggingOptions><DTS:Property
DTS:Name="LoggingMode">0</DTS:Property><DTS:Property
DTS:Name="FilterKind">1</DTS:Property><DTS:Property DTS:Name="EventFilter"
DTSataType="8"></DTS:Property></DTS:LoggingOptions><DTS:Property
DTS:Name="ObjectName">DF_fill</DTS:Property><DTS:Property
DTS:Name="DTSID">{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}</DTS:Property><DTS:Property
DTS:Name="Description">Data Flow Task</DTS:Property><DTS:Property
DTS:Name="CreationName">DTS.Pipeline.1</DTS:Property><DTS:Property
DTS:Name="DisableEventHandlers">0</DTS:Property><DTS:ObjectData><pipeline
id="0" name="pipelineXml" description="pipelineXml"
defaultBufferMaxRows="10000" engineThreads="5" defaultBufferSize="10485760"
BLOBTempStoragePath="" bufferTempStoragePath="" runInOptimizedMode="true">
<components>
<component id="757" name="LOG tabel en bestandsfouten"
componentClassID="{E2568105-9550-4F71-A638-B7FE42E66922}" description="OLE DB
Destination" localeId="-1" usesDispositions="true"
validateExternalMetadata="True" version="4" pipelineVersion="0"
contactInfo="OLE DB Destination;Microsoft Corporation;Microsoft SqlServer v9;
(C) 2005 Microsoft Corporation; All Rights Reserved;
http://www.microsoft.com/sql/support;4">
<properties>
<property id="758" name="CommandTimeout" dataType="System.Int32"
state="default" isArray="false" description="The number of seconds before a
command times out. A value of 0 indicates an infinite time-out."
typeConverter="" UITypeEditor="" containsID="false"
expressionType="None">0</property>
<property id="759" name="OpenRowset" dataType="System.String"
state="default" isArray="false" description="Specifies the name of the
database object used to open a rowset." typeConverter="" UITypeEditor=""
containsID="false" expressionType="None">[dbo].[t_Log]</property>
<property id="760" name="OpenRowsetVariable" dataType="System.String"
state="default" isArray="false" description="Specifies the variable that
contains the name of the database object used to open a rowset."
typeConverter="" UITypeEditor="" containsID="false"
expressionType="None"></property>
<property id="761" name="SqlCommand" dataType="System.String"
state="default" isArray="false" description="The SQL command to be executed."
typeConverter=""
UITypeEditor="Microsoft.DataTransformationServices .Controls.ModalMultilineStringEditor,
Microsoft.DataTransformationServices.Controls, Version=9.0.242.0,
Culture=neutral, PublicKeyToken=89845dcd8080cc91" containsID="false"
expressionType="None"></property>
<property id="762" name="DefaultCodePage" dataType="System.Int32"
state="default" isArray="false" description="Specifies the column code page
to use when code page information is unavailable from the data source."
typeConverter="" UITypeEditor="" containsID="false"
expressionType="None">1252</property>
<property id="763" name="AlwaysUseDefaultCodePage" dataType="System.Boolean"
state="default" isArray="false" description="Forces the use of the
DefaultCodePage property value when describing character data."
typeConverter="" UITypeEditor="" containsID="false"
expressionType="None">false</property>
<property id="764" name="AccessMode" dataType="System.Int32" state="default"
isArray="false" description="Specifies the mode used to access the database."
typeConverter="AccessMode" UITypeEditor="" containsID="false"
expressionType="None">3</property>
<property id="766" name="FastLoadKeepIdentity" dataType="System.Boolean"
state="default" isArray="false" description="Indicates whether the values
supplied for identity columns will be copied to the destination. If false,
values for identity columns will be auto-generated at the destination.
Applies only if fast load is turned on." typeConverter="" UITypeEditor=""
containsID="false" expressionType="None">false</property>
<property id="767" name="FastLoadKeepNulls" dataType="System.Boolean"
state="default" isArray="false" description="Indicates whether the columns
containing null will have null inserted in the destination. If false, columns
containing null will have their default values inserted at the destinaton.
Applies only if fast load is turned on." typeConverter="" UITypeEditor=""
containsID="false" expressionType="None">false</property>
<property id="768" name="FastLoadOptions" dataType="System.String"
state="default" isArray="false" description="Specifies options to be used
with fast load. Applies only if fast load is turned on." typeConverter=""
UITypeEditor="" containsID="false"
expressionType="None">TABLOCK,CHECK_CONSTRAINTS,RO WS_PER_BATCH =
500</property>
<property id="769" name="FastLoadMaxInsertCommitSize"
dataType="System.Int32" state="default" isArray="false"
description="Specifies when commits are issued during data insertion. A
value of 0 specifies that one commit will be issued at the end of data
insertion. Applies only if fast load is turned on." typeConverter=""
UITypeEditor="" containsID="false"
expressionType="None">0</property></properties>
<connections>
<connection id="765" name="OleDbConnection" description="The OLE DB runtime
connection used to access the database."
connectionManagerID="{5BD3F144-6AD6-44E2-8E45-8D06FEFABE38}"/></connections>
<inputs>
<input id="770" name="OLE DB Destination Input" description=""
hasSideEffects="true" dangling="false" errorOrTruncationOperation="Insert"
errorRowDisposition="FailComponent"
truncationRowDisposition="NotUsed"><inputColumns>
<inputColumn id="1964" name="" description="" lineageId="1530"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="1938"/>
</inputColumns><externalMetadataColumns isUsed="True">
<externalMetadataColumn id="811" name="log_id" description="" precision="0"
scale="0" length="0" dataType="i4" codePage="0"/>
<externalMetadataColumn id="812" name="log_text" description=""
precision="0" scale="0" length="2000" dataType="wstr" codePage="0"/>
<externalMetadataColumn id="813" name="log_errorcolumn" description=""
precision="0" scale="0" length="0" dataType="i4" codePage="0"/>
<externalMetadataColumn id="814" name="log_errorcode" description=""
precision="0" scale="0" length="0" dataType="i4" codePage="0"/>
<externalMetadataColumn id="1938" name="log_errordescription" description=""
precision="0" scale="0" length="2000" dataType="str"
codePage="1252"/></externalMetadataColumns></input>
</inputs>
<outputs>
<output id="771" name="OLE DB Destination Error Output" description=""
exclusionGroup="1" synchronousInputId="770"
deleteOutputOnPathDetached="false" hasSideEffects="false" dangling="false"
isErrorOut="true" isSorted="false" errorOrTruncationOperation=""
errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="772" name="ErrorCode" description="" lineageId="772"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="1"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="773" name="ErrorColumn" description="" lineageId="773"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="2"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/></outputColumns><externalMetadataColumns
isUsed="False"/></output>
</outputs>
</component>


Reply With Quote
  #8  
Old   
=?Utf-8?B?QnVncyBCdW5ueQ==?=
 
Posts: n/a

Default Re: SSIS An error occurred while attempting to perform a type cast - 05-30-2006 , 03:46 AM



<component id="511" name="Flat File Source"
componentClassID="{90C7770B-DE7C-435E-880E-E718C92C0573}" description="Flat
File Source" localeId="1043" usesDispositions="true"
validateExternalMetadata="True" version="1" pipelineVersion="0"
contactInfo="Flat File Source;Microsoft Corporation;Microsoft SqlServer v9;
(C) 2005 Microsoft Corporation; All Rights Reserved;
http://www.microsoft.com/sql/support;1">
<properties>
<property id="517" name="RetainNulls" dataType="System.Boolean"
state="default" isArray="false" description="Specifies whether zero-length
columns are treated as null." typeConverter="" UITypeEditor=""
containsID="false" expressionType="None">false</property>
<property id="518" name="FileNameColumnName" dataType="System.String"
state="default" isArray="false" description="Specifies the name of an output
column containing the file name. If no name is specified, no output column
containing the file name will be generated." typeConverter="" UITypeEditor=""
containsID="false" expressionType="None"></property></properties>
<connections>
<connection id="516" name="FlatFileConnection" description=""
connectionManagerID="{84633D90-EA87-4F19-AFAC-B1C625EC451A}"/></connections>
<outputs>
<output id="512" name="Flat File Source Output" description=""
exclusionGroup="0" synchronousInputId="0" deleteOutputOnPathDetached="false"
hasSideEffects="false" dangling="false" isErrorOut="false" isSorted="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="529" name="id" description="" lineageId="529"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="Conversion" errorRowDisposition="RedirectRow"
truncationRowDisposition="RedirectRow"
externalMetadataColumnId="528"><properties>
<property id="530" name="FastParse" dataType="System.Boolean"
state="default" isArray="false" description="Indicates whether the column
uses the faster, locale-neutral parsing routines." typeConverter=""
UITypeEditor="" containsID="false"
expressionType="None">false</property></properties></outputColumn>
<outputColumn id="532" name="activiteitcode" description="" lineageId="532"
precision="0" scale="0" length="50" dataType="str" codePage="1252"
sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="Conversion" errorRowDisposition="RedirectRow"
truncationRowDisposition="RedirectRow"
externalMetadataColumnId="531"><properties>
<property id="533" name="FastParse" dataType="System.Boolean"
state="default" isArray="false" description="Indicates whether the column
uses the faster, locale-neutral parsing routines." typeConverter=""
UITypeEditor="" containsID="false"
expressionType="None">false</property></properties></outputColumn>
<outputColumn id="535" name="activiteitbeschrijving" description=""
lineageId="535" precision="0" scale="0" length="50" dataType="str"
codePage="1252" sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="Conversion" errorRowDisposition="RedirectRow"
truncationRowDisposition="RedirectRow"
externalMetadataColumnId="534"><properties>
<property id="536" name="FastParse" dataType="System.Boolean"
state="default" isArray="false" description="Indicates whether the column
uses the faster, locale-neutral parsing routines." typeConverter=""
UITypeEditor="" containsID="false"
expressionType="None">false</property></properties></outputColumn></outputColumns><externalMetadataColumns isUsed="True">
<externalMetadataColumn id="528" name="id" description="" precision="0"
scale="0" length="0" dataType="i4" codePage="0"/>
<externalMetadataColumn id="531" name="activiteitcode" description=""
precision="0" scale="0" length="50" dataType="str" codePage="1252"/>
<externalMetadataColumn id="534" name="activiteitbeschrijving"
description="" precision="0" scale="0" length="50" dataType="str"
codePage="1252"/></externalMetadataColumns></output>
<output id="513" name="Flat File Source Error Output" description=""
exclusionGroup="0" synchronousInputId="0" deleteOutputOnPathDetached="false"
hasSideEffects="false" dangling="false" isErrorOut="true" isSorted="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="537" name="Flat File Source Error Output Column"
description="Flat File Source Error Output Column" lineageId="537"
precision="0" scale="0" length="0" dataType="text" codePage="1252"
sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="514" name="ErrorCode" description="" lineageId="514"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="1"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="515" name="ErrorColumn" description="" lineageId="515"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="2"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/></outputColumns><externalMetadataColumns
isUsed="False"/></output>
</outputs>
</component>
<component id="2631" name="Derived Column 1"
componentClassID="{9CF90BF0-5BCC-4C63-B91D-1F322DC12C26}"
description="Updates column values using expressions" localeId="-1"
usesDispositions="true" validateExternalMetadata="True" version="0"
pipelineVersion="0" contactInfo="Derived Column;Microsoft
Corporation;Microsoft SqlServer v9; (C) 2005 Microsoft Corporation; All
Rights Reserved; http://www.microsoft.com/sql/support;0">
<inputs>
<input id="2632" name="Derived Column Input" description="Input to the
Derived Column Transformation" hasSideEffects="false" dangling="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><inputColumns>
<inputColumn id="2650" name="" description="" lineageId="537"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/>
</inputColumns><externalMetadataColumns isUsed="False"/></input>
</inputs>
<outputs>
<output id="2633" name="Derived Column Output" description="Default Output
of the Derived Column Transformation" exclusionGroup="1"
synchronousInputId="2632" deleteOutputOnPathDetached="false"
hasSideEffects="false" dangling="false" isErrorOut="false" isSorted="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="2658" name="ErrorOutputColumn" description=""
lineageId="2658" precision="0" scale="0" length="2000" dataType="wstr"
codePage="0" sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="Computation" errorRowDisposition="FailComponent"
truncationRowDisposition="FailComponent"
externalMetadataColumnId="0"><properties>
<property id="2659" name="Expression" dataType="System.String"
state="default" isArray="false" description="Derived Column Expression"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">(DT_STR,2000,1252)#537</property>
<property id="2660" name="FriendlyExpression" dataType="System.String"
state="default" isArray="false" description="Derived Column Friendly
Expression" typeConverter="" UITypeEditor="" containsID="true"
expressionType="Notify">(DT_STR,2000,1252)[Flat File Source Error Output
Column]</property></properties></outputColumn></outputColumns><externalMetadataColumns isUsed="False"/></output>
<output id="2634" name="Derived Column Error Output" description="Error
Output of the Derived Column Transformation" exclusionGroup="1"
synchronousInputId="2632" deleteOutputOnPathDetached="false"
hasSideEffects="false" dangling="false" isErrorOut="true" isSorted="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="2635" name="ErrorCode" description="" lineageId="2635"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="1"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="2636" name="ErrorColumn" description="" lineageId="2636"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="2"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/></outputColumns><externalMetadataColumns
isUsed="False"/></output>
</outputs>
</component>
<component id="936" name="SA Destination"
componentClassID="{E2568105-9550-4F71-A638-B7FE42E66922}" description="OLE DB
Destination" localeId="-1" usesDispositions="true"
validateExternalMetadata="True" version="4" pipelineVersion="0"
contactInfo="OLE DB Destination;Microsoft Corporation;Microsoft SqlServer v9;
(C) 2005 Microsoft Corporation; All Rights Reserved;
http://www.microsoft.com/sql/support;4">
<properties>
<property id="937" name="CommandTimeout" dataType="System.Int32"
state="default" isArray="false" description="The number of seconds before a
command times out. A value of 0 indicates an infinite time-out."
typeConverter="" UITypeEditor="" containsID="false"
expressionType="None">0</property>
<property id="938" name="OpenRowset" dataType="System.String"
state="default" isArray="false" description="Specifies the name of the
database object used to open a rowset." typeConverter="" UITypeEditor=""
containsID="false" expressionType="None">[dbo].[lu_activiteit]</property>
<property id="939" name="OpenRowsetVariable" dataType="System.String"
state="default" isArray="false" description="Specifies the variable that
contains the name of the database object used to open a rowset."
typeConverter="" UITypeEditor="" containsID="false"
expressionType="None"></property>
<property id="940" name="SqlCommand" dataType="System.String"
state="default" isArray="false" description="The SQL command to be executed."
typeConverter=""
UITypeEditor="Microsoft.DataTransformationServices .Controls.ModalMultilineStringEditor,
Microsoft.DataTransformationServices.Controls, Version=9.0.242.0,
Culture=neutral, PublicKeyToken=89845dcd8080cc91" containsID="false"
expressionType="None"></property>
<property id="941" name="DefaultCodePage" dataType="System.Int32"
state="default" isArray="false" description="Specifies the column code page
to use when code page information is unavailable from the data source."
typeConverter="" UITypeEditor="" containsID="false"
expressionType="None">1252</property>
<property id="942" name="AlwaysUseDefaultCodePage" dataType="System.Boolean"
state="default" isArray="false" description="Forces the use of the
DefaultCodePage property value when describing character data."
typeConverter="" UITypeEditor="" containsID="false"
expressionType="None">false</property>
<property id="943" name="AccessMode" dataType="System.Int32" state="default"
isArray="false" description="Specifies the mode used to access the database."
typeConverter="AccessMode" UITypeEditor="" containsID="false"
expressionType="None">0</property>
<property id="945" name="FastLoadKeepIdentity" dataType="System.Boolean"
state="default" isArray="false" description="Indicates whether the values
supplied for identity columns will be copied to the destination. If false,
values for identity columns will be auto-generated at the destination.
Applies only if fast load is turned on." typeConverter="" UITypeEditor=""
containsID="false" expressionType="None">true</property>
<property id="946" name="FastLoadKeepNulls" dataType="System.Boolean"
state="default" isArray="false" description="Indicates whether the columns
containing null will have null inserted in the destination. If false, columns
containing null will have their default values inserted at the destinaton.
Applies only if fast load is turned on." typeConverter="" UITypeEditor=""
containsID="false" expressionType="None">true</property>
<property id="947" name="FastLoadOptions" dataType="System.String"
state="default" isArray="false" description="Specifies options to be used
with fast load. Applies only if fast load is turned on." typeConverter=""
UITypeEditor="" containsID="false"
expressionType="None">TABLOCK,CHECK_CONSTRAINTS</property>
<property id="948" name="FastLoadMaxInsertCommitSize"
dataType="System.Int32" state="default" isArray="false"
description="Specifies when commits are issued during data insertion. A
value of 0 specifies that one commit will be issued at the end of data
insertion. Applies only if fast load is turned on." typeConverter=""
UITypeEditor="" containsID="false"
expressionType="None">0</property></properties>
<connections>
<connection id="944" name="OleDbConnection" description="The OLE DB runtime
connection used to access the database."
connectionManagerID="{5BD3F144-6AD6-44E2-8E45-8D06FEFABE38}"/></connections>
<inputs>
<input id="949" name="OLE DB Destination Input" description=""
hasSideEffects="true" dangling="false" errorOrTruncationOperation="Insert"
errorRowDisposition="RedirectRow"
truncationRowDisposition="NotUsed"><inputColumns>
<inputColumn id="974" name="" description="" lineageId="529"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="971"/>
<inputColumn id="975" name="" description="" lineageId="532"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="972"/>
<inputColumn id="976" name="" description="" lineageId="535"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="973"/>
</inputColumns><externalMetadataColumns isUsed="True">
<externalMetadataColumn id="971" name="Id" description="" precision="0"
scale="0" length="0" dataType="i4" codePage="0"/>
<externalMetadataColumn id="972" name="ActiviteitCode" description=""
precision="0" scale="0" length="50" dataType="str" codePage="1252"/>
<externalMetadataColumn id="973" name="ActiviteitBeschrijving"
description="" precision="0" scale="0" length="100" dataType="str"
codePage="1252"/></externalMetadataColumns></input>
</inputs>
<outputs>
<output id="950" name="OLE DB Destination Error Output" description=""
exclusionGroup="1" synchronousInputId="949"
deleteOutputOnPathDetached="false" hasSideEffects="false" dangling="false"
isErrorOut="true" isSorted="false" errorOrTruncationOperation=""
errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="951" name="ErrorCode" description="" lineageId="951"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="1"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="952" name="ErrorColumn" description="" lineageId="952"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="2"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/></outputColumns><externalMetadataColumns
isUsed="False"/></output>
</outputs>
</component>
<component id="4906" name="Union All"
componentClassID="{C5E47A29-265C-4F93-82CA-D8462EE23278}" description="Merges
multiple datasets." localeId="-1" usesDispositions="false"
validateExternalMetadata="True" version="1" pipelineVersion="0"
contactInfo="Union All;Microsoft Corporation;Microsoft SqlServer v9; (C) 2005
Microsoft Corporation; All Rights Reserved;
http://www.microsoft.com/sql/support;1">
<inputs>
<input id="4907" name="Union All Input 1" description=""
hasSideEffects="false" dangling="false" errorOrTruncationOperation=""
errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><inputColumns>
<inputColumn id="4910" name="" description="" lineageId="529"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"><properties>
<property id="4911" name="OutputColumnLineageID" dataType="System.Int32"
state="default" isArray="false" description="Output column lineage ID"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">4912</property></properties></inputColumn>
<inputColumn id="4913" name="" description="" lineageId="532"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"><properties>
<property id="4914" name="OutputColumnLineageID" dataType="System.Int32"
state="default" isArray="false" description="Output column lineage ID"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">4915</property></properties></inputColumn>
<inputColumn id="4916" name="" description="" lineageId="535"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"><properties>
<property id="4917" name="OutputColumnLineageID" dataType="System.Int32"
state="default" isArray="false" description="Output column lineage ID"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">4918</property></properties></inputColumn>
<inputColumn id="4919" name="" description="" lineageId="951"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"><properties>
<property id="4920" name="OutputColumnLineageID" dataType="System.Int32"
state="default" isArray="false" description="Output column lineage ID"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">4921</property></properties></inputColumn>
<inputColumn id="4922" name="" description="" lineageId="952"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"><properties>
<property id="4923" name="OutputColumnLineageID" dataType="System.Int32"
state="default" isArray="false" description="Output column lineage ID"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">4924</property></properties></inputColumn>
<inputColumn id="4925" name="" description="" lineageId="4825"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"><properties>
<property id="4926" name="OutputColumnLineageID" dataType="System.Int32"
state="default" isArray="false" description="Output column lineage ID"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">4927</property></properties></inputColumn>
</inputColumns><externalMetadataColumns isUsed="False"/></input>
<input id="4928" name="Union All Input 2" description=""
hasSideEffects="true" dangling="false" errorOrTruncationOperation=""
errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><inputColumns>
<inputColumn id="4930" name="" description="" lineageId="514"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"><properties>
<property id="4931" name="OutputColumnLineageID" dataType="System.Int32"
state="default" isArray="false" description="Output column lineage ID"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">4921</property></properties></inputColumn>
<inputColumn id="4932" name="" description="" lineageId="515"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"><properties>
<property id="4933" name="OutputColumnLineageID" dataType="System.Int32"
state="default" isArray="false" description="Output column lineage ID"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">4924</property></properties></inputColumn>
<inputColumn id="4963" name="" description="" lineageId="2658"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"><properties>
<property id="4964" name="OutputColumnLineageID" dataType="System.Int32"
state="default" isArray="false" description="Output column lineage ID"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">4927</property></properties></inputColumn>
</inputColumns><externalMetadataColumns isUsed="False"/></input>
<input id="4934" name="Union All Input 3" description=""
hasSideEffects="true" dangling="true" errorOrTruncationOperation=""
errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><externalMetada taColumns
isUsed="False"/></input>
</inputs>
<outputs>
<output id="4908" name="Union All Output 1" description=""
exclusionGroup="0" synchronousInputId="0" deleteOutputOnPathDetached="false"
hasSideEffects="false" dangling="false" isErrorOut="false" isSorted="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="4912" name="id" description="" lineageId="4912"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="4915" name="activiteitcode" description=""
lineageId="4915" precision="0" scale="0" length="50" dataType="str"
codePage="1252" sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="4918" name="activiteitbeschrijving" description=""
lineageId="4918" precision="0" scale="0" length="50" dataType="str"
codePage="1252" sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="4921" name="ErrorCode" description="" lineageId="4921"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="4924" name="ErrorColumn" description="" lineageId="4924"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="4927" name="LogText" description="" lineageId="4927"
precision="0" scale="0" length="2000" dataType="wstr" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/></outputColumns><externalMetadataColumns
isUsed="False"/></output>
</outputs>
</component>
<component id="1501" name="Script Component"
componentClassID="{BF01D463-7089-41EE-8F05-0A6DC17CE633}"
description="Executes a custom script." localeId="-1"
usesDispositions="false" validateExternalMetadata="True" version="0"
pipelineVersion="0" contactInfo="Executes a custom script.;Microsoft
Corporation;Microsoft SqlServer v9; © 2004 Microsoft Corporation; All Rights
Reserved; http://www.microsoft.com/sql/support;0">
<properties>
<property id="1505" name="SourceCode" dataType="System.String" state="cdata"
isArray="true" description="Stores the source code of the component"
typeConverter="" UITypeEditor="" containsID="false"
expressionType="None"><arrayElements arrayElementCount="4"><arrayElement
dataType="System.String"><![CDATA[dts://Scripts/ScriptComponent_63a4a18c45ba4682b6bb6fd6b37e86ce/ScriptComponent_63a4a18c45ba4682b6bb6fd6b37e86ce.v saproj]]></arrayElement><arrayElement
dataType="System.String"><![CDATA[<VisualStudioProject>
<VisualBasic
Version = "8.0.50727.42"
MVID = "{00000000-0000-0000-0000-000000000000}"
ProjectType = "Local"
ProductVersion = "8.0.50727"
SchemaVersion = "2.0"
Quote:
Build
<Settings
DefaultNamespace =
"ScriptComponent_63a4a18c45ba4682b6bb6fd6b37e86ce"
OptionCompare = "0"
OptionExplicit = "1"
OptionStrict = "1"
ProjectName =
"ScriptComponent_63a4a18c45ba4682b6bb6fd6b37e86ce"
ReferencePath =
"C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer. TxScript\9.0.242.0__89845dcd8080cc91\;C:\WINDOWS\a ssembly\GAC_MSIL\Microsoft.SqlServer.PipelineHost\ 9.0.242.0__89845dcd8080cc91\;C:\WINDOWS\assembly\G AC_MSIL\Microsoft.SqlServer.DTSPipelineWrap\9.0.24 2.0__89845dcd8080cc91\;C:\WINDOWS\assembly\GAC_MSI L\Microsoft.SqlServer.DTSRuntimeWrap\9.0.242.0__89 845dcd8080cc91\"
TreatWarningsAsErrors = "false"
WarningLevel = "1"
RootNamespace =
"ScriptComponent_63a4a18c45ba4682b6bb6fd6b37e86ce"
Quote:
Config
Name = "Debug"
DefineConstants = ""
DefineDebug = "true"
DefineTrace = "true"
DebugSymbols = "true"
RemoveIntegerChecks = "false"
/>
</Settings>
<References>
<Reference
Name = "System"
AssemblyName = "System"
/>
<Reference
Name = "System.Data"
AssemblyName = "System.Data"
/>
<Reference
Name = "Microsoft.SqlServer.TxScript"
AssemblyName = "Microsoft.SqlServer.TxScript"
/>
<Reference
Name = "Microsoft.SqlServer.PipelineHost"
AssemblyName = "Microsoft.SqlServer.PipelineHost"
/>
<Reference
Name = "Microsoft.SqlServer.DTSPipelineWrap"
AssemblyName = "Microsoft.SqlServer.DTSPipelineWrap"
/>
<Reference
Name = "Microsoft.SqlServer.DTSRuntimeWrap"
AssemblyName = "Microsoft.SqlServer.DTSRuntimeWrap"
/>
</References>
<Imports>
<Import Namespace = "Microsoft.VisualBasic" />
</Imports>
</Build>
<Files>
<Include>
<File
RelPath = "ScriptMain"
BuildAction = "Compile"
ItemType = "2"
/>
<File
RelPath = "BufferWrapper"
BuildAction = "Compile"
ItemType = "2"
/>
<File
RelPath = "ComponentWrapper"
BuildAction = "Compile"
ItemType = "2"
/>
</Include>
</Files>
<Folders>
<Include/>
</Folders>
</VisualBasic>
</VisualStudioProject>



Reply With Quote
  #9  
Old   
=?Utf-8?B?QnVncyBCdW5ueQ==?=
 
Posts: n/a

Default Re: SSIS An error occurred while attempting to perform a type cast - 05-30-2006 , 03:46 AM




]]></arrayElement><arrayElement
dataType="System.String"><![CDATA[dts://Scripts/ScriptComponent_63a4a18c45ba4682b6bb6fd6b37e86ce/ScriptMain.vsaitem]]></arrayElement><arrayElement
dataType="System.String"><![CDATA[' Microsoft SQL Server Integration Services
user script component
' This is your new script component in Microsoft Visual Basic .NET
' ScriptMain is the entrypoint class for script components

Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Pipeline.Wrapper
Imports Microsoft.SqlServer.Dts.Runtime.Wrapper

Public Class ScriptMain
Inherits UserComponent

Public Overrides Sub Input0_ProcessInputRow(ByVal Row As Input0Buffer)
'Use the incoming error number as a parameter to GetErrorDescription
Row.ErrorDescription =
ComponentMetaData.GetErrorDescription(Row.ErrorCod e)
MsgBox("hallo")
End Sub


End Class

]]></arrayElement></arrayElements></property>
<property id="1506" name="BinaryCode" dataType="System.String"
state="escaped" isArray="true" description="Stores the binary representation
of the component" typeConverter="" UITypeEditor="" containsID="false"
expressionType="None"><arrayElements arrayElementCount="4"><arrayElement
dataType="System.String">dts:_x002F__x002F_Scripts _x002F_ScriptComponent_63a4a18c45ba4682b6bb6fd6b37 e86ce_x002F_ScriptComponent_63a4a18c45ba4682b6bb6f d6b37e86ce.dll</arrayElement><arrayElement
dataType="System.String">--verry long string
deleted--</arrayElement><arrayElement
dataType="System.String">dts:_x002F__x002F_Scripts _x002F_ScriptComponent_63a4a18c45ba4682b6bb6fd6b37 e86ce_x002F_ScriptComponent_63a4a18c45ba4682b6bb6f d6b37e86ce.pdb</arrayElement><arrayElement
dataType="System.String">--very long string deleted
too</arrayElement></arrayElements></property>
<property id="1507" name="VsaProjectName" dataType="System.String"
state="default" isArray="false" description="Specifies the name of the
Microsoft Visual Studio for Applications project. Project names must be
unique within a package." typeConverter="NOTBROWSABLE" UITypeEditor=""
containsID="false"
expressionType="None">ScriptComponent_63a4a18c45ba 4682b6bb6fd6b37e86ce</property>
<property id="1508" name="PreCompile" dataType="System.Boolean"
state="default" isArray="false" description="Indicates whether to store
pre-compiled binary representation of the script. This makes the package
larger, but offers faster start-up time. Required to execute in native 64-bit
mode." typeConverter="" UITypeEditor="" containsID="false"
expressionType="None">true</property>
<property id="1509" name="ReadOnlyVariables" dataType="System.String"
state="default" isArray="false" description="Comma separated list of
variables to be made available for read access" typeConverter=""
UITypeEditor="" containsID="false" expressionType="None"></property>
<property id="1510" name="ReadWriteVariables" dataType="System.String"
state="default" isArray="false" description="Comma separated list of
variables to be made available for read and write access" typeConverter=""
UITypeEditor="" containsID="false" expressionType="None"></property>
<property id="1511" name="UserComponentTypeName" dataType="System.String"
state="default" isArray="false" description="" typeConverter=""
UITypeEditor="" containsID="false"
expressionType="None">Microsoft.SqlServer.Dts.Pipe line.ScriptComponentHost,
Microsoft.SqlServer.TxScript, Version=9.0.242.0, Culture=neutral,
PublicKeyToken=89845dcd8080cc91</property></properties>
<inputs>
<input id="1503" name="Input 0" description="" hasSideEffects="true"
dangling="false" errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><inputColumns>
<inputColumn id="4976" name="" description="" lineageId="4912"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/>
<inputColumn id="4977" name="" description="" lineageId="4915"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/>
<inputColumn id="4978" name="" description="" lineageId="4918"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/>
<inputColumn id="4979" name="" description="" lineageId="4921"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/>
<inputColumn id="4980" name="" description="" lineageId="4924"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/>
<inputColumn id="4981" name="" description="" lineageId="4927"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/>
</inputColumns><externalMetadataColumns isUsed="False"/></input>
</inputs>
<outputs>
<output id="1504" name="Output 0" description="" exclusionGroup="0"
synchronousInputId="1503" deleteOutputOnPathDetached="false"
hasSideEffects="false" dangling="false" isErrorOut="false" isSorted="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="1530" name="ErrorDescription" description=""
lineageId="1530" precision="0" scale="0" length="50" dataType="str"
codePage="1252" sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/></outputColumns><externalMetadataColumns
isUsed="False"/></output>
</outputs>
</component>
<component id="4776" name="Derived Column"
componentClassID="{9CF90BF0-5BCC-4C63-B91D-1F322DC12C26}"
description="Updates column values using expressions" localeId="-1"
usesDispositions="true" validateExternalMetadata="True" version="0"
pipelineVersion="0" contactInfo="Derived Column;Microsoft
Corporation;Microsoft SqlServer v9; (C) 2005 Microsoft Corporation; All
Rights Reserved; http://www.microsoft.com/sql/support;0">
<inputs>
<input id="4777" name="Derived Column Input" description="Input to the
Derived Column Transformation" hasSideEffects="false" dangling="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><inputColumns>
<inputColumn id="5020" name="" description="" lineageId="532"
usageType="readOnly" errorOrTruncationOperation=""
errorRowDisposition="NotUsed" truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/>
</inputColumns><externalMetadataColumns isUsed="False"/></input>
</inputs>
<outputs>
<output id="4778" name="Derived Column Output" description="Default Output
of the Derived Column Transformation" exclusionGroup="1"
synchronousInputId="4777" deleteOutputOnPathDetached="false"
hasSideEffects="false" dangling="false" isErrorOut="false" isSorted="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="4825" name="LogText" description="" lineageId="4825"
precision="0" scale="0" length="50" dataType="wstr" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="0"
errorOrTruncationOperation="Computation" errorRowDisposition="FailComponent"
truncationRowDisposition="FailComponent"
externalMetadataColumnId="0"><properties>
<property id="4826" name="Expression" dataType="System.String"
state="default" isArray="false" description="Derived Column Expression"
typeConverter="" UITypeEditor="" containsID="true"
expressionType="None">(DT_WSTR,50)#532</property>
<property id="4827" name="FriendlyExpression" dataType="System.String"
state="default" isArray="false" description="Derived Column Friendly
Expression" typeConverter="" UITypeEditor="" containsID="true"
expressionType="Notify">(DT_WSTR,50)activiteitcode </property></properties></outputColumn></outputColumns><externalMetadataColumns isUsed="False"/></output>
<output id="4779" name="Derived Column Error Output" description="Error
Output of the Derived Column Transformation" exclusionGroup="1"
synchronousInputId="4777" deleteOutputOnPathDetached="false"
hasSideEffects="false" dangling="false" isErrorOut="true" isSorted="false"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"><outputColumns>
<outputColumn id="4780" name="ErrorCode" description="" lineageId="4780"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="1"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed" externalMetadataColumnId="0"/>
<outputColumn id="4781" name="ErrorColumn" description="" lineageId="4781"
precision="0" scale="0" length="0" dataType="i4" codePage="0"
sortKeyPosition="0" comparisonFlags="0" specialFlags="2"
errorOrTruncationOperation="" errorRowDisposition="NotUsed"
truncationRowDisposition="NotUsed"
externalMetadataColumnId="0"/></outputColumns><externalMetadataColumns
isUsed="False"/></output>
</outputs>
</component>
</components>
<paths>
<path id="953" name="Flat File Source Output" description="" startId="512"
endId="949"/>
<path id="1513" name="Output 0" description="" startId="1504" endId="770"/>
<path id="2637" name="Flat File Source Error Output" description=""
startId="513" endId="2632"/>
<path id="4782" name="OLE DB Destination Error Output" description=""
startId="950" endId="4777"/>
<path id="4909" name="Derived Column Output" description="" startId="4778"
endId="4907"/>
<path id="4929" name="Derived Column Output" description="" startId="2633"
endId="4928"/>
<path id="4935" name="Union All Output 1" description="" startId="4908"
endId="1503"/>
</paths></pipeline></DTS:ObjectData></DTS:Executable>
<DTS:PrecedenceConstraint><DTS:Property
DTS:Name="Value">0</DTS:Property><DTS:Property
DTS:Name="EvalOp">2</DTS:Property><DTS:Property
DTS:Name="LogicalAnd">-1</DTS:Property><DTS:Property
DTS:Name="Expression"></DTS:Property><DTS:Executable
IDREF="{E0F8FF10-E5D8-4757-91D7-701C90F17040}"
DTS:IsFrom="-1"/><DTS:Executable
IDREF="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}" DTS:IsFrom="0"/><DTS:Property
DTS:Name="ObjectName">Constraint 1</DTS:Property><DTS:Property
DTS:Name="DTSID">{049DB30A-4B61-41C2-BA45-B42EEACF5A37}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PrecedenceConstraint><DTS:Property
DTS:Name="ObjectName">Sequence Container</DTS:Property><DTS:Property
DTS:Name="DTSID">{DBD4AE19-0083-46AE-9BA7-120F16A3DCCF}</DTS:Property><DTS:Property
DTS:Name="Description">Sequence Container</DTS:Property><DTS:Property
DTS:Name="CreationName">STOCK:SEQUENCE</DTS:Property><DTS:Property
DTS:Name="DisableEventHandlers">0</DTS:Property></DTS:Executable><DTS:Property
DTS:Name="ObjectName">CheckFile</DTS:Property><DTS:Property
DTS:Name="DTSID">{34231942-5988-49CF-A6B8-57FC5E5FFE33}</DTS:Property><DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName">MSDTS.Package.1</DTS:Property><DTS:Property
DTS:Name="DisableEventHandlers">0</DTS:Property></DTS:Executable>


-- and the file t.txt

id|activiteitcode|activiteitbeschrijving
1|KRT|karten
2|BDM|badminton
2|xxx|xyxxyx
3|BOW|Bowlen
4|SCH|Schaken
5|FLP|Flipperen
6|KAA|Kaarten
7|Vrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrfff ffffffffffffffffffffffffffffffffffffffffffffffffff fffffffTB|Voetballen
8|VOL|Volleybal
9|COM|Computeren
10|SKL|Skeeleren
11|VOL|Volleyballen

Reply With Quote
  #10  
Old   
Allan Mitchell
 
Posts: n/a

Default Re: SSIS An error occurred while attempting to perform a type cast - 05-30-2006 , 04:06 AM



Hello Bugs,


Just zip the package and the file up and mail it to me. remove the no-spam
bit from my address


Allan Mitchell
www.SQLDTS.com
www.SQLIS.com
www.Konesans.com

Quote:
Hi Allan,

No typo. I think it's time to show my package. I will dump this in 3
replies
because it's too long.
Have fun with it ;-) I deleted some array systemstrings which were
very very
large. My SSIS by the way shows me a messagebox when I open my
projec...is
this the problem perhaps I will try with a modified dtsx-file. I hope
this
dump works for you. Further on I dumped my t.txt file too.
?xml version="1.0"?><DTS:Executable
xmlnsTS="www.microsoft.com/SqlServer/Dts"
DTS:ExecutableType="MSDTS.Package.1"><DTS:Property
DTS:Name="PackageFormatVersion">2</DTS:Property><DTS:Property
DTS:Name="VersionComments"></DTS:Property><DTS:Property
DTS:Name="CreatorName">xxx</DTS:Property><DTS:Property
DTS:Name="CreatorComputerName">U5</DTS:Property><DTS:Property
DTS:Name="CreationDate" DTSataType="7">5/19/2006 12:53:24
PM</DTS:Property><DTS:Property
DTS:Name="PackageType">5</DTS:Property><DTS:Property
DTS:Name="ProtectionLevel">1</DTS:Property><DTS:Property
DTS:Name="MaxConcurrentExecutables">-1</DTS:Property><DTS:Property
DTS:Name="PackagePriorityClass">0</DTS:Property><DTS:Property
DTS:Name="VersionMajor">1</DTS:Property><DTS:Property
DTS:Name="VersionMinor">0</DTS:Property><DTS:Property
DTS:Name="VersionBuild">91</DTS:Property><DTS:Property
DTS:Name="VersionGUID">{F01E7F37-45B7-43B5-88FA-02BB600A82D2}</DTS:Pro
perty><DTS:Property
DTS:Name="EnableConfig">0</DTS:Property><DTS:Property
DTS:Name="CheckpointFileName"></DTS:Property><DTS:Property
DTS:Name="SaveCheckpoints">0</DTS:Property><DTS:Property
DTS:Name="CheckpointUsage">0</DTS:Property><DTS:Property
DTS:Name="SuppressConfigurationWarnings">0</DTS:Property
DTS:ConnectionManager><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property><DTS:Property
DTS:Name="ObjectName">DCFile</DTS:Property><DTS:Property
DTS:Name="DTSID">{84633D90-EA87-4F19-AFAC-B1C625EC451A}</DTS:Property
DTS:Property
DTS:Name="Description">test</DTS:Property><DTS:Property
DTS:Name="CreationName">FLATFILE</DTS:Property><DTS:ObjectData><DTS:Co
nnectionManager><DTS:Property
DTS:Name="FileUsageType">0</DTS:Property><DTS:Property
DTS:Name="Format">Delimited</DTS:Property><DTS:Property
DTS:Name="LocaleID">1043</DTS:Property><DTS:Property
DTS:Name="Unicode">0</DTS:Property><DTS:Property
DTS:Name="HeaderRowsToSkip">0</DTS:Property><DTS:Property
DTS:Name="HeaderRowDelimiter"
xml:space="preserve">_x000D__x000A_</DTS:Property><DTS:Property
DTS:Name="ColumnNamesInFirstDataRow">-1</DTS:Property><DTS:Property
DTS:Name="RowDelimiter"
xml:space="preserve"></DTS:Property><DTS:Property
DTS:Name="DataRowsToSkip">0</DTS:Property><DTS:Property
DTS:Name="TextQualifier"><none></DTS:Property><DTS:Property
DTS:Name="CodePage">1252</DTS:Property
DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x007C_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">0</DTS:Property><DTS:Property
DTS:Name="DataType">3</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">id</DTS:Property><DTS:Property
DTS:Name="DTSID">{B82B5A6C-CDF6-4548-9010-1451B7846E55}</DTS:Property
DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn
DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x007C_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">activiteitcode</DTS:Property><DTS:Property
DTS:Name="DTSID">{0303EDAF-7333-4174-AD4F-F9D7ED1ED919}</DTS:Property
DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn
DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x000A_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">activiteitbeschrijving</DTS:Property><DTS:Proper
ty
DTS:Name="DTSID">{5369B977-DDFD-4BC1-8B8E-D8E7B7C6EA6E}</DTS:Property
DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn><DTS:Prope
rty
DTS:Name="ConnectionString">D:\My
Documents\t.txt</DTS:Property></DTS:ConnectionManager></DTS:ObjectData
/DTS:ConnectionManager
DTS:ConnectionManager><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property><DTS:Property
DTS:Name="ObjectName">DCFile_automatic</DTS:Property><DTS:Property
DTS:Name="DTSID">{B3011424-E971-4CB8-8E88-A580EBD4A766}</DTS:Property
DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName">FLATFILE</DTS:Property><DTS:ObjectData><DTS:Co
nnectionManager><DTS:Property
DTS:Name="FileUsageType">0</DTS:Property><DTS:Property
DTS:Name="Format">Delimited</DTS:Property><DTS:Property
DTS:Name="LocaleID">1043</DTS:Property><DTS:Property
DTS:Name="Unicode">0</DTS:Property><DTS:Property
DTS:Name="HeaderRowsToSkip">0</DTS:Property><DTS:Property
DTS:Name="HeaderRowDelimiter"
xml:space="preserve">_x000D__x000A_</DTS:Property><DTS:Property
DTS:Name="ColumnNamesInFirstDataRow">-1</DTS:Property><DTS:Property
DTS:Name="RowDelimiter"
xml:space="preserve"></DTS:Property><DTS:Property
DTS:Name="DataRowsToSkip">0</DTS:Property><DTS:Property
DTS:Name="TextQualifier"><none></DTS:Property><DTS:Property
DTS:Name="CodePage">1252</DTS:Property
DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x007C_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">id</DTS:Property><DTS:Property
DTS:Name="DTSID">{7667F184-8B4E-4D8B-A806-A170857EC812}</DTS:Property
DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn
DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x007C_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">activiteitcode</DTS:Property><DTS:Property
DTS:Name="DTSID">{24601232-AF20-4073-A7B9-90ED4B0096C5}</DTS:Property
DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn
DTS:FlatFileColumn><DTS:Property
DTS:Name="ColumnType">Delimited</DTS:Property><DTS:Property
DTS:Name="ColumnDelimiter"
xml:space="preserve">_x000A_</DTS:Property><DTS:Property
DTS:Name="ColumnWidth">0</DTS:Property><DTS:Property
DTS:Name="MaximumWidth">50</DTS:Property><DTS:Property
DTS:Name="DataType">129</DTS:Property><DTS:Property
DTS:Name="DataPrecision">0</DTS:Property><DTS:Property
DTS:Name="DataScale">0</DTS:Property><DTS:Property
DTS:Name="TextQualified">-1</DTS:Property><DTS:Property
DTS:Name="ObjectName">activiteitbeschrijving</DTS:Property><DTS:Proper
ty
DTS:Name="DTSID">{1C0B17A1-4280-44B9-81D6-6706D72B6229}</DTS:Property
DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:FlatFileColumn><DTS:Prope
rty
DTS:Name="ConnectionString">D:\My
Documents\t.txt</DTS:Property></DTS:ConnectionManager></DTS:ObjectData
/DTS:ConnectionManager
DTS:ConnectionManager><DTS:Property
DTS:Name="DelayValidation">0</DTS:Property><DTS:Property
DTS:Name="ObjectName">U005595\SQL_U005595.RemcoTes t</DTS:Property><DTS
:Property
DTS:Name="DTSID">{5BD3F144-6AD6-44E2-8E45-8D06FEFABE38}</DTS:Property
DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName">OLEDB</DTS:Property><DTS:ObjectData><DTS:Conne
ctionManager><DTS:Property
DTS:Name="Retain">0</DTS:Property><DTS:Property
DTS:Name="ConnectionString">Data Source=U005595\SQL_U005595;Initial
Catalog=RemcoTest;Provider=SQLNCLI.1;Integrated Security=SSPI;Auto
Translate=False;</DTS:Property></DTS:ConnectionManager></DTS:ObjectDat
a></DTS:ConnectionManager
DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><PrecedenceConstraint
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><d
wd:EvalOp>Constraint</dwd:EvalOp></PrecedenceConstraint></DTS:Property
DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{049DB30A-4B61-41C2-BA45-B42EEACF5A37}</DTS:Prop
erty><DTS:Property
DTS:Name="DTSID">{BBD41596-1F51-42F0-9E1E-D074956D2663}</DTS:Property
DTS:Property
DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable
DTS:PackageVariable><DTS:Property DTS:Name="PackageVariableValue"
DTSataType="8"><Package xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwd="http://schemas.microsoft.com/DataWarehouse/Designer/1.0"><d
wdtsControlFlowDiagram><dwd:BoundingLeft>-5</dwd:BoundingLeft><dwd:L
ayout><dds
diagram fontclsid="{0BE35203-8F91-11CE-9DE3-00AA004BB851}"
mouseiconclsid="{0BE35204-8F91-11CE-9DE3-00AA004BB851}"
defaultlayout="Microsoft.DataWarehouse.Layout.Grap hLayout"
defaultlineroute="Microsoft.DataWarehouse.Layout.G raphLayout"
version="7"
nextobject="11" scale="100" pagebreakanchorx="0" pagebreakanchory="0"
pagebreaksizex="0" pagebreaksizey="0" scrollleft="0" scrolltop="0"
gridx="150" gridy="150" marginx="1000" marginy="1000" zoom="100"
x="21087"
y="13811" backcolor="15334399" defaultpersistence="2"
PrintPageNumbersMode="3" PrintMarginTop="0" PrintMarginBottom="635"
PrintMarginLeft="0" PrintMarginRight="0" marqueeselectionmode="1"
mousepointer="0" snaptogrid="0" autotypeannotation="1"
showscrollbars="1"
viewpagebreaks="0" donotforceconnectorsbehindshapes="1"
backpictureclsid="{00000000-0000-0000-0000-000000000000}"
font
ddsxmlobjectstreamwrapper
binary="01010000900180380100065461686f6d61"
/
/font
mouseicon
ddsxmlobjectstreamwrapper binary="6c74000000000000" /
/mouseicon
/diagram
layoutmanager
ddsxmlobj /
/layoutmanager
ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="Data Flow Task" left="1139" top="4365" logicalid="5"
controlid="1"
masterid="2" hint1="0" hint2="0" width="3598" height="1164"
noresize="0"
nomove="0" nodefaultattachpoints="0" autodrag="1"
usedefaultiddshape="1"
selectable="1" showselectionhandles="1" allownudging="1"
isannotation="0"
dontautolayout="0" groupcollapsed="0" tabstop="1" visible="1"
snaptogrid="0"
control
ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000"
/
/control
layoutobject
ddsxmlobj
property name="LogicalObject"
value="{8A8B05C6-5F24-45EF-8C58-ABD7149CF9DE}" vartype="8" /
property name="ShowConnectorSource" value="0" vartype="2" /
/ddsxmlobj
/layoutobject
shape groupshapeid="0" groupnode="0" /
/ddscontrol
ddscontrol
controlprogid="DdsShapes.DdsContainerObjectManaged Bridge.1"
tooltip="Sequence Container" left="-5" top="0" logicalid="6"
controlid="2"
masterid="0" hint1="0" hint2="0" width="10190" height="9711"
noresize="0"
nomove="0" nodefaultattachpoints="0" autodrag="1"
usedefaultiddshape="1"
selectable="1" showselectionhandles="1" allownudging="1"
isannotation="0"
dontautolayout="0" groupcollapsed="0" tabstop="1" visible="1"
snaptogrid="0"
control
ddsxmlobjectstreaminitwrapper binary="00080000ce270000ef250000"
/
/control
layoutobject
ddsxmlobj
property name="Caption" value="Sequence Container"
vartype="8" /
property name="CaptionHeight" value="1164" vartype="3" /
property name="Collapsed" value="0" vartype="11" /
property name="CollapsedWidth" value="10190" vartype="3" /
property name="LogicalObject"
value="{DBD4AE19-0083-46AE-9BA7-120F16A3DCCF}" vartype="8" /
property name="RealHeight" value="0" vartype="3" /
property name="RealWidth" value="0" vartype="3" /
property name="ShowConnectorSource" value="0" vartype="2" /
/ddsxmlobj
/layoutobject
shape groupshapeid="0" groupnode="0" /
/ddscontrol
ddscontrol controlprogid="DdsShapes.DdsObjectManagedBridge.1"
tooltip="Init Task" left="1744" top="1911" logicalid="7" controlid="3"
masterid="2" hint1="0" hint2="0" width="3598" height="1164"
noresize="0"
nomove="0" nodefaultattachpoints="0" autodrag="1"
usedefaultiddshape="1"
selectable="1" showselectionhandles="1" allownudging="1"
isannotation="0"
dontautolayout="0" groupcollapsed="0" tabstop="1" visible="1"
snaptogrid="0"
control
ddsxmlobjectstreaminitwrapper binary="000800000e0e00008c040000"
/
/control
layoutobject
ddsxmlobj
property name="LogicalObject"
value="{E0F8FF10-E5D8-4757-91D7-701C90F17040}" vartype="8" /
property name="ShowConnectorSource" value="0" vartype="2" /
/ddsxmlobj
/layoutobject
shape groupshapeid="0" groupnode="0" /
/ddscontrol
ddscontrol controlprogid="MSDDS.Polyline" left="2539" top="2676"
logicalid="8" controlid="4" masterid="0" hint1="0" hint2="0"
width="1404"
height="2189" noresize="0" nomove="0" nodefaultattachpoints="1"
autodrag="0"
usedefaultiddshape="0" selectable="1" showselectionhandles="0"
allownudging="1" isannotation="0" dontautolayout="0"
groupcollapsed="0"
tabstop="1" visible="1" snaptogrid="0"
control
ddsxmlobj
polyline endtypedst="3" endtypesrc="1" usercolor="32768"
linestyle="0" linerender="2" customendtypedstid="0"
customendtypesrcid="0"
adornsvisible="1" /
/ddsxmlobj
/control
layoutobject
ddsxmlobj
property name="LogicalObject"
value="{049DB30A-4B61-41C2-BA45-B42EEACF5A37}" vartype="8" /
property name="Virtual" value="0" vartype="11" /
property name="VisibleAP" value="0" vartype="3" /
/ddsxmlobj
/layoutobject
connector
lineroutestyle="Microsoft.DataWarehouse.Layout.Gra phLayout"
sourceid="3" destid="1" sourceattachpoint="7" destattachpoint="6"
segmenteditmode="0" bendpointeditmode="0" bendpointvisibility="2"
relatedid="0" virtual="0"
point x="3543" y="3075" /
point x="3543" y="3720" /
point x="2938" y="3720" /
point x="2938" y="4365" /
/connector
/ddscontrol
/dds></dwd:Layout></dwdtsControlFlowDiagram></Package></DTS:Propert
y><DTS:Property
DTS:Name="Namespace">dts-designer-1.0</DTS:Property><DTS:Property
DTS:Name="ObjectName">{34231942-5988-49CF-A6B8-57FC5E5FFE33}</DTS:Prop
erty><DTS:Property
DTS:Name="DTSID">{E7601CC4-F148-4978-BD4E-6913839F40F5}</DTS:Property
DTS:Property DTS:Name="Description"></DTS:Property><DTS:Property
DTS:Name="CreationName"></DTS:Property></DTS:PackageVariable




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.