Viewing 13 posts - 31 through 43 (of 43 total)
I know XML in SQL Server 2008 has been greatly enhanced, but the question is me and a lot of people I know are still working on SQL Server 2000....
August 10, 2010 at 2:40 pm
Good question! I was shocked to see the four rows when I tried the query!
Leaving aside the issue of the COLLATION, I opted for the one row answer, because the...
July 28, 2010 at 5:47 am
It's a cheat question not worth the time one put on it.
Next time you could misspell a word, maybe a column name, and you'll get a even better query.
Don't waste...
July 15, 2010 at 12:38 am
Damn it! You're right. Too fast coding...
July 1, 2010 at 7:04 am
I get your desired output just adding GROUP BY woi_product (changes bolded):
SELECT woi_product, /*woi_ordref,*/ Max(wos_startdate) as wos_stardate
FROM @woitem JOIN @xTOOLS
ON woi_product...
July 1, 2010 at 1:42 am
It's easy, just two unary operators before 7:
select 6+2+(-(+7)) --> select 6+2+(-7) --> select 6+2-7
lbrigham (6/30/2010)
Good question...Also, why does this return 1...
select 6+2+-+7
June 30, 2010 at 9:01 am
I'm surprised but is true:
Select Cast( '+' as int ) --> 0
Select Cast( '-' as int ) --> 0
June 30, 2010 at 1:29 am
I 'd suggest you to try two approaches:
1.- As someone else states, use a VBScript task to write the conditional code. In this case, you can set two green work-flow...
June 29, 2010 at 4:07 pm
Yet I can't see why the assignation concatenates the strings in one case and does not in the other. Somewhere I read the concatenation behavior is not assured, or is...
June 25, 2010 at 12:12 pm
Don't be ironic, Bru. Do help him or not, and if you don't let another do it. Your comment is an unnecessary narcissism.
January 5, 2010 at 8:10 am
lmu92 (1/5/2010)
dbuendiab (1/5/2010)
January 5, 2010 at 7:43 am
I think you have already several good answers, or at last the kind I would have suggested before this one. Despite of this, and only as a alternative to consider,...
January 5, 2010 at 4:01 am
The web server uses some SQL credentials to connect to the SQL Server. So, if you have such a hardwired user for your SQL connection, that one will be repeatedly...
June 2, 2009 at 4:37 pm
Viewing 13 posts - 31 through 43 (of 43 total)