Viewing 15 posts - 6,931 through 6,945 (of 10,144 total)
Brandie Tarvin (12/7/2010)
Alvin Ramard (12/7/2010)
Roy Ernest (12/7/2010)
December 7, 2010 at 10:16 am
Better late than never. Last I heard, dkrumholtz was growing organic root crops on a plot outside Seattle.
December 7, 2010 at 6:45 am
Kit G (12/2/2010)
I think you need an alias name for that select statement on the LEFT OUTER JOIN.
Looks about right to me too.
Table aliases throughout would be ideal.
December 7, 2010 at 6:41 am
Hi James
Firstly, ISNUMERIC() has limitations - it returns true (1) if the value can be converted into a number. SSC has a recent article covering its limitations.
Secondly, the filters in...
December 7, 2010 at 5:27 am
A Little Help Please (12/7/2010)
I have a table which has a column called TimeStarted.The formate of the date in this column is YYYY-MM-DD HH:MM:SS
Are you saying the column holds a...
December 7, 2010 at 3:23 am
alecio (12/6/2010)
RANK () OVER (PARTITION BY ORDER BY DATE ASC CODIGO_PESSOA, SUM (VALUE)) THE...
December 6, 2010 at 7:11 am
alecio (12/6/2010)
How to make a calculation by adding values to the example OVER ... ..1 - 10 - 10,
2 - 20 - 30.
Can we have a few more sample...
December 6, 2010 at 6:42 am
SELECT Col1, Col2, Col3, Dense_Rank_Column, COUNT(*)
FROM (
Col1 Col2 Col3 Dense_Rank_Column = [Dense_Rank]
.. .. .. 1
.. .. .. 2
.. .. .. 2
.. .. .. 1
) d
GROUP BY Dense_Rank_Column
HAVING COUNT(*) >...
December 6, 2010 at 4:36 am
It's an example of implicit conversion
SELECT CAST('' AS INT)
December 3, 2010 at 9:05 am
Fix the obvious syntax error, then use table aliases throughout the CASE construct.
December 3, 2010 at 8:43 am
UPDATE TEST SET
B = CASE
WHEN (CASE WHEN ISNULL(S,0) <> 0 THEN G * H END) = 0 THEN NULL
ELSE (G + K END)
END
FROM TEST T
INNER JOIN #L TP
ON
T.A1...
December 3, 2010 at 8:29 am
GSquared (12/3/2010)
Chris Morris-439714 (12/3/2010)
GSquared (12/3/2010)
select *from dbo.MyTable
where @Parameter = 'A'
or (ParentTradeID is not null and @Parameter = 'O')
or (ParentTradeID is null and @Parameter = 'R');
Wouldn't that do it?
Hey Gus,...
December 3, 2010 at 7:04 am
I'm sorry but it's impossible to understand the requirement here. It's not the language barrier between English and Portuguese, it's the lack of clarity and information. Would you be able...
December 3, 2010 at 7:02 am
Brandie Tarvin (12/3/2010)
Chris Morris-439714 (12/3/2010)
What folks often forget about tally tables is that they are a source of rows as well as numbers.
I've actually used a Tally Table to do...
December 3, 2010 at 6:47 am
Viewing 15 posts - 6,931 through 6,945 (of 10,144 total)