Viewing 15 posts - 676 through 690 (of 702 total)
The steps to pass values from a script task back to SSIS are:
1. Define the SSIS variables (doh!!).
2. List them in the "ReadWriteVariables" entry for the script task. You...
May 14, 2008 at 1:22 pm
Loner, I think you're confusing the Script Task with the ActiveX Script Task. I've been using an on-line edition of the book at the subscription-based site www.books24x7.com. The...
May 12, 2008 at 1:41 pm
My, my, my. E.F. Codd is rolling in his grave now -- laughing or not, I wouldn't know.
I've seen small examples of this sort of thing before...
May 12, 2008 at 11:36 am
I used this book to get going with SSIS. I would rate it a bit lower than Steve did, maybe 3.5-4.0, but then I'm not buds with the authors...
May 12, 2008 at 11:04 am
Excellent question in that to understand the result, you have to step through the entire process.
--The statements compile.
--Each "select" is executed.
--Then the two result sets are...
May 6, 2008 at 9:13 am
I don't know if FileWatcher itself has a memory leak bug, but apparently SSIS does when running infinite loops. See the comments in Jamie Thomson's blog: http://blogs.conchango.com/jamiethomson/archive/2006/10/18/SSIS_3A00_-Random-information-for-beginners.aspx
May 2, 2008 at 6:41 pm
Since you're interested in the values down to the millisecond level, you'll want to remember that the internal (binary) precission is to 3.33 milliseconds and is rounded to increments of...
April 22, 2008 at 11:31 am
I wonder about why one would want to append a constant ".html" to a particular column and store the result in the database. For any larger number of rows,...
April 21, 2008 at 10:40 am
Please tell me that you don't believe in the myth of code portability...
--Jeff Moden
It's not so much code portability as developer portability. I prefer being able to use...
April 21, 2008 at 9:53 am
It's been suggested that "COALESCE" is preferable to ISNULL.
It allows for a list of arguments, the first of which evaluates to not null being returned.
Coalesce is ANSI standard; ISNULL...
April 18, 2008 at 11:17 am
Thanks, rbarry.
What was missing was on my end -- should have looked more closely:blush:. Now it's obvious that any of the sought-after months would make one of the differences...
April 17, 2008 at 12:15 am
rbarryyoung, I don't quite follow your code, there. Somethng missing?
Anyway, it did inspire what may be the most obscure solution yet. We define an integer to hold what is...
April 16, 2008 at 3:14 pm
You can set properties for the task that connects to each db -- FailParentOnFailure and FailPackageOnFailure are "False" and MaximumErrorCount = 9999. With these settings, even if the task...
April 15, 2008 at 11:22 am
I started to agree with you, Mike Dougherty, about a separate table of date ranges, applauding your generalization of the query to allow configurable ranges and not just calendar months,...
April 15, 2008 at 10:42 am
Just curious, but is there any other processing done to the records besides splitting the no-lastname ones to a flat file? If not, my inclination would be to have...
April 11, 2008 at 2:18 pm
Viewing 15 posts - 676 through 690 (of 702 total)