Viewing 15 posts - 11,386 through 11,400 (of 11,676 total)
It's hard to do that directly in the dataflow, so I would suggest that you read all your data first and then write it to some sort of staging table...
May 26, 2010 at 2:27 am
When I read your recommandation for refreshing the metadata of the data source, I get the feeling that in the case of an OLE DB Source, you select the table...
May 26, 2010 at 2:23 am
Shouldn't the order by 1,2,3, instead of 1,1,1?
I think that if you give them all the same order, they are evaluated at the same time, and of course no row...
May 26, 2010 at 1:27 am
Nice question. I didn't know that constants (like 1) could be placed after CASE, so I definately learned something today.
May 26, 2010 at 12:50 am
Regarding the first problem: that's quite odd that the package still fails after removing the tasks. But, with SSIS and its underlying metadata, you never know. Without the exact error...
May 25, 2010 at 7:59 am
Sorry, I was wrong. (In my mind it was OK, but I wrote it down incorrectly :-)).
If you copy entire packages or if you deploy them to other systems, the...
May 25, 2010 at 6:47 am
SSIS uses internal ID's for its connection managers under the hood.
Normally, copying packages will not harm your connection managers (I do it all the time), but it will screw up...
May 25, 2010 at 5:49 am
What is the purpose of the package? What tasks/data flows/components are present in the package?
May 25, 2010 at 5:32 am
chaudharyabhijit (5/21/2010)
The expression is working and everytime i run the data flow i do see a new file come up with the current date. Now i have placed this data...
May 25, 2010 at 2:29 am
It seems it is has something to do with the logging.
Check if the connection manager used to log is configured correctly.
(it should point to a specific log table in the...
May 25, 2010 at 2:27 am
Another option is to use a temporary table to store your update records.
Then, after the data flow task, you can issue one update statement against the destination table using the...
May 25, 2010 at 2:22 am
I don't believe it is possible to do it right away in the Flat File Source.
However, you can add a derived column component to add the doubel quotes:
"\" + MyColumn...
May 25, 2010 at 2:18 am
Viewing 15 posts - 11,386 through 11,400 (of 11,676 total)