Viewing 15 posts - 436 through 450 (of 812 total)
Unusual altering a disabled trigger, but it's good to know!
😉
September 10, 2013 at 12:51 am
Maybe, the author exchanged the CAST and the ISNULL:
The right version:
DECLARE @x CHAR(1)
SET @x = CASE
WHEN @x = 'x'...
September 9, 2013 at 3:45 am
Here is sp_configure with a simple optimization:
-- Use @configname and try to find the right option.
-- If there isn't just one, print appropriate diagnostics and return.
select @configcount = count(*)
...
August 30, 2013 at 2:36 am
Here is the code from sp_configure:
-- Use @configname and try to find the right option.
-- If there isn't just one, print appropriate diagnostics and return.
select @configcount = count(*)
from sys.configurations
where...
August 30, 2013 at 2:25 am
Tom, re-word the question, maybe I get it right!
Unreadable!
August 26, 2013 at 1:55 am
Nick Doyle (8/22/2013)
August 22, 2013 at 7:06 am
In the past 10 years, I played a lot with SET identity_insert. I'm a specialist!
August 22, 2013 at 6:54 am
Hugo Kornelis (8/19/2013)
Mike Dougherty-384281 (8/19/2013)
August 19, 2013 at 3:24 pm
cschlieve (8/13/2013)
dhober (8/13/2013)
Silly semantics....Being able to have only one catalog is still technically having one or more catalogs 🙂
That kind of thinking can get you into a lot of trouble....
August 13, 2013 at 8:57 am
Very good explanation!
Here is why the first select may return 1,-1,negative and the second only 1 and negative.
The same side effect of "C" macros:
#define abs(a) (a < 0?...
August 8, 2013 at 2:21 am
Good! It's good practise to remember basic concepts!
😀
August 6, 2013 at 1:05 am
Viewing 15 posts - 436 through 450 (of 812 total)