Viewing 15 posts - 16,186 through 16,200 (of 19,564 total)
Found it faster than I expected.
This one has a few other links on the same topic.
http://blogs.msdn.com/davidlean/archive/2009/04/06/sql-server-nolock-hint-other-poor-ideas.aspx
March 19, 2010 at 12:30 pm
Lynn Pettis (3/19/2010)
Anybody have some good links to why you should NOT use the NOLOCK hint? Seems everyone writing SELECT queries these days uses that everywhere.
I have noticed the...
March 19, 2010 at 12:28 pm
Paul White NZ (3/19/2010)
sistemas_casinomnes (3/19/2010)
and how can I do to avoid the second result ?
It depends on exactly what you are using to connect to SQL Server.
The more you tell...
March 19, 2010 at 12:27 pm
I agree with Paul. Eliminate the 5 from your FREETEXTTABLE query, and then implement the containstable.
March 19, 2010 at 12:25 pm
homebrew01 (3/19/2010)
CirquedeSQLeil (3/19/2010)
homebrew01 (3/19/2010)
I have several SQL 2000 Administration, DTS, Programming & Reporting Services books.PM me if you want some.
That's awfully generous of you.:cool:
Ain't it though. 😀
I thought...
March 19, 2010 at 12:23 pm
You say the execution plans are the same. Is that the estimated or the actual exec plans?
How many rows difference is there between the environments?
March 19, 2010 at 12:22 pm
Two quick suggestions without having seen the table defs.
1. Move the derived table to a cte and perform your left outer join on that.
or
2. Change the table alias...
March 19, 2010 at 12:17 pm
GSquared (3/19/2010)
Jason Shadonix (3/19/2010)
March 19, 2010 at 12:08 pm
homebrew01 (3/19/2010)
I have several SQL 2000 Administration, DTS, Programming & Reporting Services books.PM me if you want some.
That's awfully generous of you.:cool:
March 19, 2010 at 12:03 pm
balasach82 (3/19/2010)
March 19, 2010 at 12:01 pm
Nice article thanks. I like the compare and contrast between 2k5 and 2k8 that you demonstrated.
March 19, 2010 at 11:56 am
Steve Jones - Editor (3/19/2010)
This is a learning tool, and I could see that Microsoft bears some blame here since we try to use BOL as a reference. To that...
March 19, 2010 at 11:13 am
jcrawf02 (3/19/2010)
What about being able to eat your neighbors when it's too cold?
There are too many of those stories that are true.
One time at band camp...
March 19, 2010 at 10:58 am
Paul White NZ (3/19/2010)
CirquedeSQLeil (3/18/2010)
This may be of use as well
SELECT SERVERPROPERTY ('edition'),serverproperty('productversion')
Also:
SELECT CONVERT(INTEGER, SERVERPROPERTY('EngineEdition'));
This returns a value of 4 for Express (all variations). The 'edition' version distinguishes...
March 19, 2010 at 10:44 am
Paul White NZ (3/19/2010)
CirquedeSQLeil (3/19/2010)
I actually disagree with the correct answer.
Me too, but it's not terribly important. There could have been another option..."it depends".
For the record, I ticked Steve,...
March 19, 2010 at 10:40 am
Viewing 15 posts - 16,186 through 16,200 (of 19,564 total)