Measuring the Impact of Task Switching/Multitasking
Many of us make a living by working on tasks while monitoring email, taking a few calls, and in non...
2009-04-05
471 reads
Many of us make a living by working on tasks while monitoring email, taking a few calls, and in non...
2009-04-05
471 reads
I’m aborting for now. I think I could replace the seat belts, but I don’t have the right part at...
2009-04-05
560 reads
I was looking through some of the active threads on SQLServerCentral.com tonight, and I ran across one with some code...
2009-04-04
3,647 reads
How am I doing on my New Year’s Resolutions for SQLServerCentral? I decided to make another update as Q1 has...
2009-04-03
676 reads
Steve Jones isn't usually the wild man of publishing, but on April 1st, a strangely
anarchic spirit breaks loose. Having...
2009-04-03
1,495 reads
I found How to Start a Conversation and Make Friends on the clearance rack at the local bookstore, but you...
2009-04-02
489 reads
Next Meeting - April 2, 2009
SPEAKER:Paul S. Waters
During Paul’s 16 years of working in IT, he has held a variety of...
2009-04-02
689 reads
If you have already submitted an abstract for the 2009 PASS Community Summit, or you are still thinking about it,...
2009-04-02
663 reads
If you’re available and are (or can be) in the Jacksonville FL area the first weekend of next month, check...
2009-04-02
762 reads
Just head from Greg Larsen yesterday that he just ran out of time to put things together. As I've mentioned...
2009-04-02
295 reads
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...
I’ve been rebuilding my three-site SQL Server demo lab, and I ran into something...
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