Viewing 15 posts - 7,546 through 7,560 (of 7,636 total)
That does make sense and the Query plans confirm it also.
You could try setting maxdop to 1 and try them both again. If your theory is correct then the...
March 13, 2008 at 12:18 pm
Michael Valentine Jones (3/12/2008)
March 13, 2008 at 7:23 am
The insidious evil of character-based dates is thus exposed.
March 13, 2008 at 6:43 am
Ghanta:
what is the data type and range of the response columns?
March 12, 2008 at 9:59 pm
SQLServerLifer (3/12/2008)
exec sp_spaceused 'dbo.summarydata'
exec sp_spaceused 'test.summarydata'
returns the following...
March 12, 2008 at 8:59 pm
GSquared (3/12/2008)
Oh, and good Beatles references. 🙂
Actually mine was from Month Python. :laugh:
March 12, 2008 at 8:04 pm
You need a recursive query, but they make my brain hurt, so I'll have to get back to you after dinner (unless someone else does it first 🙂 )
March 12, 2008 at 5:54 pm
jamiejulius (3/12/2008)
select top 1 Name from People where Status = 0
However, if I do this:
select top 1 PersonID from People where Status = 0
It comes back...
March 12, 2008 at 5:49 pm
dileep_ratnayake (3/5/2008)
March 12, 2008 at 5:21 pm
Matt Miller (3/12/2008)
Look at using Select ... INTOExample:
Select *
INTO MyNewTable
from MyOldTable
Uses whatever it derives from the query to make a table.
And if you want to "Create As" like this...
March 12, 2008 at 4:53 pm
I think that Scenario is definitely preferred, and the canonical way to do it as well. The additional overhead seems minimal to me.
March 12, 2008 at 4:46 pm
Jeff Moden (3/12/2008)
Now there's an idea... and properly partitioned, it would be updateable, as well.
Thanks!
March 12, 2008 at 4:40 pm
You have to remove it from replication.
March 12, 2008 at 2:57 pm
Adam Bean (3/10/2008)
March 12, 2008 at 2:48 pm
Viewing 15 posts - 7,546 through 7,560 (of 7,636 total)