SQLSaturday #49 tomorrow!
This is just a quick note to let you know SQLSaturday #49 in Orlando is tomorrow! If you’re in the...
2010-10-15
399 reads
This is just a quick note to let you know SQLSaturday #49 in Orlando is tomorrow! If you’re in the...
2010-10-15
399 reads
Patrick Is the lead Singer
Sirens. Their sweet songs lured sailors to their deaths in tales of yore. Alas, I too...
2010-10-04
691 reads
Pirate Code: They're more like guidelines really...
The last few weeks we’ve watched the drama unfold in regards to the PASS...
2010-09-02
1,308 reads
A few weeks ago Andy Leonard (Blog | Twitter) announced that he was stepping down from his position as PASS Regional...
2010-08-25
381 reads
I think the shirt says it all
If you’ve been under a rock the last few weeks you may not know...
2010-08-25
530 reads
Just a quick note that today at 12:30 EST (11:30 CST) I’ll be presenting on Policy-Based Management for SQLLunch. If...
2010-08-17
428 reads
Pirate Cat can haz ur Swag?
Well it’s the first Monday back since this amazing trip and some folks have wasted...
2010-08-09
663 reads
I work for a very large company where divisions are spread out literally all over the world. There are many...
2010-07-28
923 reads
I'M ON A BOAT!
This is just a quick note to say that I’ll be in South Florida this weekend presenting...
2010-07-27
421 reads
In cycling each team is made up of nine riders. Each rider on a team can have a different specialization....
2010-07-26
669 reads
By James Serra
Microsoft Fabric makes it wonderfully easy to put many analytics workloads on one platform....
By Steve Jones
I recently started playing with the MCP Server for SQL Server, which is a...
If you spend your days tuning queries, managing pipelines, or keeping a production database...
Has anyone written a wrapper function (or similar) around STRING_AGG() to allow the retrieval...
Putting this here as we're currently on SQL Server 2019 installed on Windows Server...
Comments posted to this topic are about the item Never is Not the Policy
I have added a few indexes to one of my tables in SQL Server 2025:
ALTER TABLE dbo.CustomerContact
ADD CONSTRAINT PK_CustomerContact
PRIMARY KEY (CustomerID);
-- Create index on CustomerEmail
CREATE INDEX IX_CustomerContact_CustomerEmail
ON dbo.CustomerContact (CustomerEmail);
CREATE INDEX IX_CustomerContact_CustomerPhone
ON dbo.CustomerContact (phone);
I then do this to disable one index:
alter index IX_CustomerContact_CustomerPhone on dbo.CustomerContact disableI see this when I check the index status:
I decide to rebuild all indexes with this command:
ALTER INDEX ALL ON dbo.CustomerContact rebuildAfter I do this, what will I see for the index status? See possible answers