Viewing 6 posts - 31 through 36 (of 36 total)
According to the advanced editor, on the OLE DB Source Output, External Columns and Output Columns, both say string[DT_STR] with a length of 70.
January 11, 2013 at 9:17 am
ScottPletcher: Sorry, i meant to say "My concern was the comparison of a varchar date with an "actual" DATE data type."
January 8, 2013 at 8:41 am
GSquared (1/7/2013)
paul.j.kemna (1/7/2013)
But in this case, we are assuming that I...
January 7, 2013 at 7:42 pm
Wow, that makes a lot of sense. Such a simple concept that i may have overlooked in some places.
But in this case, we are assuming that I DO want...
January 7, 2013 at 1:31 pm
No, I know what I SHOULD do. I am looking at previous processes and just need to know if this query would return the correct results. All of...
January 7, 2013 at 1:07 pm
The actual syntax would be :
DECLARE @StartDate as date
SET @StartDate = some calculated date
DECLARE @EndDate as date
SET @EndDate = another calculated date
CONVERT([varchar](10), MyDatetimeColumn, 101) AS MyDate
...
WHERE MyDate >= @StartDate...
January 7, 2013 at 10:23 am
Viewing 6 posts - 31 through 36 (of 36 total)