Viewing 15 posts - 1 through 15 (of 90 total)
Yes, for example, sample codes, solutions with EXCEPT is for version 2005 and above. Then an article is for 2008 and above, and another is 2012 only.
This is beginner...
February 24, 2014 at 10:52 pm
Great article! I learned something so simple and elegant with just one line.
August 2, 2012 at 3:08 am
Isn't it if a field does not allow nulls, then a person can never go home until he gets the one small detail entered into the row. I imagine...
September 24, 2010 at 3:40 am
I thought this was on error then rollback. I remember you could test a backup without anything really happening, just a test to see if the wirings, pipes and...
September 22, 2010 at 4:27 am
I am working on something similar to this based on the way others get the word count in these comm:
SELECT Col1, LEN(Col1) - LEN(REPLACE(Col1, ' ', '')) + 1
FROM Table1
...where...
September 22, 2010 at 3:05 am
I wouldn't be surprised if the 3GB RAM, 250GB HD, quad-core i5 laptop will run the processes (including the messy ones) faster than the production server of 3 years ago.
September 13, 2010 at 3:44 am
I got the answer right, after a long series of wrongs.
Hugo Kornelis (9/6/2010)
1. FROM clause. Build an intermediate set as a copy of the single table in the FROM...
September 6, 2010 at 3:30 am
Another good one. I have been losing points lately but I don't miss them.
{Sorry, I meant I was losing, not getting, points lately but its alright. Now I hope...
August 31, 2010 at 3:24 am
Please try to see the trailing decimal digits using
print convert(decimal(38,36),@i)
I think the 1st example behaved well because it was dealing with an even number (8), while the...
August 27, 2010 at 4:33 am
Carlo Romagnano (8/26/2010)
IF ABS(varFloat1 - varFloat2) < 0.01 -- place here the precision you want
print 'varFloat1 = varFloat2'
ELSE
...
August 26, 2010 at 7:21 am
Yah, it works. I never thought (@variable) in select would work...
Does this work in SQL 2000?
I remember vaguely reaching a wall on that thus I had to...
August 26, 2010 at 3:42 am
Thanks Hugo, for the well-thought out answers you often give to us.
Hugo Kornelis (8/26/2010)
Open Minded (8/26/2010)
August 26, 2010 at 3:25 am
isn't it possible to use approximation if one is not specific of the exact value of the approximation, like "less than" and "greater than" ?
August 26, 2010 at 1:33 am
I watched the movie twice in iMax screens, would watch it a 3rd time and eagerly waiting the blu-ray for it.
I think better ideas come when one has a broader...
August 6, 2010 at 3:19 am
It surprises me why round() acts like floor() when numbers are integers.
I usually prefer the denominator having the ".0" but it is only a matter of preference as...
August 3, 2010 at 4:52 am
Viewing 15 posts - 1 through 15 (of 90 total)