Viewing 15 posts - 5,146 through 5,160 (of 8,761 total)
Finally it looks like your posts are back Jason, and good job on the sample and test code. The addition of the index does remove the primary sort but optimizer...
May 30, 2015 at 4:43 pm
TomThomson (5/30/2015)
Eirikur Eiriksson (5/30/2015)
SQLRNNR (5/29/2015)
GalagaZingiberaceae
Turmeric
Fingers
May 30, 2015 at 2:04 pm
Steven W (5/30/2015)
May 30, 2015 at 8:43 am
A currently active thread: "I don't use any clustered indexes actually... all of mine are non-clustered..."
Sometimes I do wonder where things went wrong with MS and SQL documentation/references/best practices...
😎
May 29, 2015 at 3:16 pm
Steven W (5/29/2015)
I don't use any clustered indexes actually... all of mine are non-clustered...
That's not making things easier, may I ask why not?
😎
May 29, 2015 at 3:12 pm
Steven W (5/29/2015)
Is it just the indexes that get fragmented? If so, can I just drop and recreate them all?
For clustered indexes (non-heap tables) No, for Non-clustered indexes Yes,...
May 29, 2015 at 2:38 pm
Lynn Pettis (5/29/2015)
Eirikur Eiriksson (5/29/2015)
Lynn Pettis (5/29/2015)
< rant >
I am still amazed at how...
May 29, 2015 at 1:52 pm
Another attempt using Lynn's fine code
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.SystemsRE') IS NOT NULL DROP TABLE dbo.SystemsRE;
CREATE TABLE dbo.SystemsRE (SystemID INT NOT NULL, IpAddress VARCHAR(200) NOT NULL);
INSERT INTO dbo.SystemsRE(SystemID,IpAddress)
VALUES
(10001,'132.135.3.100,...
May 29, 2015 at 1:27 pm
Lynn Pettis (5/29/2015)
< rant >
I am still amazed at how many people have to...
May 29, 2015 at 1:16 pm
Steven W (5/29/2015)
152 tables....But with only 20g free... I don't think I would have room to move the other tables over... The next smallest table is 40g....
Then the approach has...
May 29, 2015 at 1:06 pm
Quick question, how many tables are in the database?
My normal approach to this kind of problems is to add a filegroup / data file, move the data to the new...
May 29, 2015 at 12:53 pm
TJT (5/29/2015)
SET NOCOUNT ON;
WITH SAMPLE_DATA(IP_ADDR)...
May 29, 2015 at 12:46 pm
Luis Cazares (5/29/2015)
thisisfutile (5/29/2015)
jshahan (5/28/2015)
Just picked up from The Thread that old Joe has been banned from SSC.
You picked up from this thread that Joe is banned? Maybe I...
May 29, 2015 at 12:45 pm
eccentricDBA (5/29/2015)
whereisSQL? (5/29/2015)
hughmanning (5/29/2015)
ArtificalIntelligence
research
Topic
May 29, 2015 at 12:40 pm
Viewing 15 posts - 5,146 through 5,160 (of 8,761 total)