Viewing 15 posts - 4,306 through 4,320 (of 5,394 total)
GilaMonster (5/7/2010)
May 7, 2010 at 7:02 am
paul.knibbs (5/7/2010)
Gianluca Sartori (5/3/2010)
I was confused too, Grant. I was sure MSDE 2000 had a 5 concurrent connections limit, but, after searching a bit, I found out that Express Editions...
May 7, 2010 at 6:22 am
2cams, I'm surprised that you didn't set up any of the suggested monitoring methods and you keep on guessing. I don't think you'll go far this way.
Just my personal...
May 7, 2010 at 6:07 am
So, what is your question again?
May 7, 2010 at 3:28 am
This should do the trick for you:
DECLARE @TestTable TABLE (
SalesOrderId int,
CarrierTrackingNumber varchar(20),
ProductId int
)
INSERT INTO @TestTable
SELECT 43659, '4911-403C-98', 776
UNION ALL...
May 7, 2010 at 3:21 am
Paul White NZ (5/6/2010)
Jeff Moden (5/6/2010)
May 7, 2010 at 1:31 am
Rebuilding the clustered index into the partition scheme will move the whole table data into the partition scheme.
To keep nonclustered indexes aligned, they also have to be partitioned, at least...
May 6, 2010 at 10:47 am
I don't answer QotD at all.
Every now and then, when I'm bored, I answer some questions. And usually got them wrong. 😛
May 6, 2010 at 8:16 am
Grant Fritchey (5/6/2010)
And by the way, just passed 8000 points. #10 to do so.Now I'll let Jason & Paul pass me.
Congrats! It's a long way to 8000 points!
Thank you...
May 6, 2010 at 8:00 am
Gianluca Sartori (5/6/2010)
Dave Ballantyne (5/6/2010)
Anyone fancy mind-dumping there entire sql knowledge into a few threads :rolleyes:http://www.sqlservercentral.com/Forums/Topic916801-1292-1.aspx
http://www.sqlservercentral.com/Forums/Topic916751-1292-1.aspx
I could try to attach my whole SQL knowledge to that thread, it shouldn't exceed...
May 6, 2010 at 6:37 am
Dave Ballantyne (5/6/2010)
Anyone fancy mind-dumping there entire sql knowledge into a few threads :rolleyes:http://www.sqlservercentral.com/Forums/Topic916801-1292-1.aspx
http://www.sqlservercentral.com/Forums/Topic916751-1292-1.aspx
I could try to attach my whole SQL knowledge to that thread, it shouldn't exceed 3 Mb....
May 6, 2010 at 6:18 am
Yes, it will run fine, but will never use parallel plans, because only one CPU will be used.
May 6, 2010 at 1:41 am
Viewing 15 posts - 4,306 through 4,320 (of 5,394 total)