Viewing 4 posts - 16 through 19 (of 19 total)
--My Test
Set NoCount On
Go
Create Table #Testing(
TestingId int identity not null,
SomeColumn varchar(25) not null
)
Go
Declare @x int
Set @x = 1000
While @x > 0
Begin
Insert Into #Testing (SomeColumn)
Select 'John' Union
Select 'James' Union
Select 'Mary' Union
Select...
February 28, 2008 at 12:24 pm
Jeff Moden (2/28/2008)
February 28, 2008 at 12:21 pm
Nick Rawlins (2/28/2008)
Good artible, however a full table scan isn't being performed, but an Index Scan is which is different to a table scan...
There really isnt much of a difference...
February 28, 2008 at 10:48 am
I liked the article, but I don't seem to have the problem with my queries that you are describing when using functions like IsNull in the where clause.
Im...
February 28, 2008 at 9:55 am
Viewing 4 posts - 16 through 19 (of 19 total)