Viewing 15 posts - 7,291 through 7,305 (of 8,416 total)
GilaMonster (8/10/2009)
rja.carnegie (8/10/2009)
August 10, 2009 at 4:17 pm
TheSQLGuru (8/10/2009)
August 10, 2009 at 4:02 pm
GabyYYZ (8/10/2009)
Is this due to the way checksum parses unicode vs. binary?
Seems so:
-- 0x3600 3700 3400
SELECT (CONVERT(VARBINARY, N'674'));
SELECT CONVERT(BINARY(2), UNICODE(N'6')) -- 0x0036
SELECT CONVERT(BINARY(2), UNICODE(N'7')) ...
August 10, 2009 at 3:54 pm
For that configuration, try:
EXECUTE sp_configure 'show advanced options', 1;
RECONFIGURE;
EXECUTE sp_configure 'min server memory (MB)', 512
RECONFIGURE;
EXECUTE sp_configure 'max server memory (MB)', 1536
RECONFIGURE;
EXECUTE sp_configure 'awe enabled', 1;
RECONFIGURE;
EXECUTE sp_configure 'show advanced options', 0;
RECONFIGURE;
I...
August 10, 2009 at 3:31 pm
jacroberts (8/10/2009)
Why should '>' be much further up the performance list to '! is twice as efficient as !< since it uses just one character :laugh:
August 10, 2009 at 7:58 am
ta.bu.shi.da.yu (8/10/2009)
August 10, 2009 at 7:40 am
I clearly need to work on my 'being abrupt' skills :blink:
I tried quite hard...
August 10, 2009 at 7:24 am
GilaMonster (8/10/2009)
August 10, 2009 at 7:21 am
oli (8/10/2009)
1. Keywords - Use SQL keywords in capital letters to increase readability
I find that the nice highlighting in SSMS more than adequate and a lot easier on the eyes...
August 10, 2009 at 7:20 am
ronmoses (8/10/2009)
ta.bu.shi.da.yu (8/10/2009)
vetri (8/10/2009)
I tried with these two statements but the second one is not get executing and it says "Incorrect syntax near the keyword 'exists'." What...
August 10, 2009 at 7:03 am
Jeff Moden (8/10/2009)
For more information on how such a table as Paul speaks of works to replace a While Loop, please see the following article...
Yes, absolutely! Sorry Jeff, I...
August 10, 2009 at 5:28 am
The things that leap out are (just as Grant predicted) that the memory per instance has not been configured correctly.
You don't say how much memory is on the physical server,...
August 10, 2009 at 5:25 am
GilaMonster (8/10/2009)
August 10, 2009 at 5:03 am
I deeply begrudge the minimum one star.
Gail's first post expresses it best, and in milder language terms than I might have used. I would encourage everyone who reads the...
August 10, 2009 at 4:59 am
Yes, this turned out to be another great discussion - as so often happens on SSC, an article prompts conversation which is just as interesting as the article itself, in...
August 10, 2009 at 4:37 am
Viewing 15 posts - 7,291 through 7,305 (of 8,416 total)