Viewing 15 posts - 16 through 30 (of 44 total)
the queries took to long and were timing out the reports. the union or union all query returns to rows of data for one style
...
October 26, 2010 at 9:19 am
never mind ill figure it out.
this was just a quick query that i posted to see if someone had any suggestions on a creating a compare query. didnt need...
October 22, 2010 at 7:33 am
You have a GROUP BY clause but since you have no aggregate functions its only effect is to eliminate duplicate rows.
i am dividing in the case statement.
It would help...
October 21, 2010 at 12:00 pm
lowells, but yours i nice as well. 🙂
October 21, 2010 at 8:14 am
thanks, love your profile picture!!!
October 21, 2010 at 7:59 am
Not sure if i understand 100% what you are asking but, i am grouping my query
October 21, 2010 at 7:11 am
First, get rid of the # in the data element names; it is HIGHLY proprietary and a little dangerous. Can you explain what a sku_nbr is and why it is...
October 13, 2010 at 5:37 am
is there a way to make the datetime just a date???
October 5, 2010 at 6:41 am
thank you very much that worked great.
i used
dateadd(dd, ININVD - 1,
dateadd(mm, ININVM - 1,
dateadd(yy, ININVY + 100, cast('19000101' as datetime))))
October 5, 2010 at 6:24 am
the values are integers
i tried this
cast(( dbo.INVHDRPF.ININVY * 10000) + (dbo.INVHDRPF.ININVM* 100) + dbo.INVHDRPF.ININVY as datetime)
these were my results
YEAR MONTH DAY ...
October 4, 2010 at 8:34 am
i used this and it seems to work
INNER JOIN
dbo.OCUSMA ON CAST(dbo.OORDDETL.ORACTD As VARCHAR(12)) = dbo.OCUSMA.OKCUNO
September 29, 2010 at 12:52 pm
Viewing 15 posts - 16 through 30 (of 44 total)