Viewing 15 posts - 11,641 through 11,655 (of 11,677 total)
My first guess is the use an Execute Package Task in a for loop. (or a for each loop).
Right before this taks you use another task (Execute SQL Task or...
March 2, 2010 at 12:16 am
Pfeuw, this thread has finally ended 🙂
When I delevop my packages, the OLE DB Destination usually gives an error or warning during design when I map a dataflow column to...
February 26, 2010 at 12:39 pm
I don't know what your mappings are in the OLE DB Destination, but if you map the data viewer column Time to the column Time in your destination table, it...
February 26, 2010 at 7:39 am
Datetime is the correct datatype for SQL Server and (DT_DBTIMESTAMP) is the correct data type for SSIS. Since you're working with SQL Server 2005, don't convert the values to (DT_DBTIME),...
February 26, 2010 at 6:30 am
In a previous post you said that the destination is a database timestamp field.
Do you mean that you use the datatype timestamp in SQL Server? Because that should be the...
February 26, 2010 at 5:45 am
Griffster (2/26/2010)
DATEADD("ss",TIME / 10000000,(DT_DBTIMESTAMP)"01 Jan 1900")where TIME is the DT-I8 field I'm converting and the destination is a database timestamp field.
So basically a combination of wschampheleer's solution and my solution...
February 26, 2010 at 5:11 am
Or, to give you another method, you can use a script component the compose the e-mail message, store it in a variable and then use the Send Mail Task.
February 26, 2010 at 12:18 am
You can use the RAW File Destination to write your update lines to a RAW file.
But I think it won't give monstreous performance gains above a (global) temp table.
But I'm...
February 25, 2010 at 6:42 am
Paul_Harvey (2/24/2010)
This is accepted by the Derived COlumn transformation, but when I debug the package it fails with the following:
[Derived Column [4862]] Error: SSIS...
February 25, 2010 at 2:56 am
I've read all four parts of the article and I've found it very interesting and useful.
Thx
February 25, 2010 at 1:49 am
divyanth (2/24/2010)
"\" is treated as an escape character .... You always need to add another "\" to escape the other one...it should be C:\\Sample
I thought this was only necessary in...
February 24, 2010 at 1:00 pm
True, you can do almost everything with a script component/task, but there are solutions that don't require scripting.
Some people aren't comfortable with VB.NET or C# and what if the guy...
February 24, 2010 at 12:59 pm
wschampheleer (2/24/2010)
Looks like the first part is time in seconds: ((12 * 60) + 52) *60) + 39 = 46359.
Well, that's genious. Why didn't I think of that? :hehe:
Griffster (2/24/2010)
February 24, 2010 at 12:53 pm
steveb. (2/24/2010)
February 24, 2010 at 5:47 am
Viewing 15 posts - 11,641 through 11,655 (of 11,677 total)