Viewing 15 posts - 1 through 15 (of 42 total)
I found this thread, because of hitting the exact same behavior. Are there any additional insights?
My package is simple and follows the outline of the package above. There are...
September 3, 2015 at 3:38 pm
Koen Verbeeck (5/27/2015)
It's quite useful when you don't need the remainder of the division, indeed.
In all other cases, it's just extremely frustrating 😀
+1
When it's needed, it should be accompanied by...
May 27, 2015 at 8:53 am
Didn't realize this was so old. Saw the link on an article in today's newsletter and assumed it was current.
It seems like your condition using BETWEEN is incorrect and...
February 27, 2015 at 6:21 am
Okay, I'll pick up the widget...
SQL injection has been news for an awful long time (prior to 2000). Even so, I remember seeing code that used concatenation of SQL...
February 17, 2015 at 8:01 am
Perhaps its just a figure of speech, but the fixation on firing people for this seems misplaced.
Surely, coding to prevent SQL Injection is a learned skill, like many others.
If a...
August 22, 2013 at 12:49 pm
Set the amnesty date in 2003 and you'd have to fire some Microsoft programmers. I was shocked to see sample code on the architecture and practices site with concatenated queries...
August 12, 2013 at 9:47 am
Easiest path is probably to switch the file connector to see a single column. Use a Script component and specify it as a transform. The code is very straightforward and...
June 28, 2013 at 9:22 am
Are the column names changing very often? If not, your best bet is probably to ignore the header row and name the columns explicitly. In other words, uncheck Column names...
June 28, 2013 at 7:45 am
I've never been in a formal pair programming environment, but over the years there have been numerous times when getting two heads on a problem just made sense. In fact,...
September 26, 2012 at 7:53 am
lbrigham (7/31/2012)
Thomas Abraham (7/31/2012)
(Bob Brown) (7/31/2012)
July 31, 2012 at 8:24 am
Favorite use for NullIf is to prevent a divide by zero:
Select Miles / Nullif( Hours, 0 ) as Speed
From SomeTable
Wasn't thrilled with the formulation of the questions, but I don't...
June 26, 2012 at 9:17 am
We've started using a 2008 R2 server with 2005 client tools. Haven't seen this error, but a couple of similar ones.
Can't use Open Table, instead must use Select.
If...
April 20, 2012 at 12:28 pm
I've only used synonyms on a couple of occassions. In each case, there were rather involved procedures which accessed tables outside the database -- in one case even outside the...
January 10, 2012 at 12:14 am
Koen Verbeeck (12/22/2011)
Andrew Watson-478275 (12/22/2011)
I always find...
December 22, 2011 at 7:07 am
Viewing 15 posts - 1 through 15 (of 42 total)