What's new for SQL Server 2012 courses from Microsoft
I tuned into the Third Thursday sessions for November and wanted to try boiling down the talks to what I...
2011-11-18
2,837 reads
I tuned into the Third Thursday sessions for November and wanted to try boiling down the talks to what I...
2011-11-18
2,837 reads
A while back I posted about Culture Posters, a technique for trying to build your culture by writing down the...
2011-11-17
819 reads
This is a continuation of my DBA in Space journal.
In this next series of blog posts, I am going to...
2011-11-17
684 reads
When I’m managing I tend to absorb the stress that my teams feel. It’s my job to help them be...
2011-11-17
635 reads
Stuff me in a wood chipper, I have an idea. And this idea involves Fargo, Fargo, and SQL Saturday.
As many...
2011-11-17
733 reads
November 17, 2011 - Redmond, WA - Well, we knew it was coming, but the timing was a bit of a surprise for...
2011-11-17
2,583 reads
I'm very proud to announce today that I'm running next year
a new event series across Europe: the SQL Server 2012...
2011-11-17
838 reads
I try to speak and write about career things on a regular basis because I think they’re important topics for...
2011-11-17
1,663 reads
SQL Server 2012 RC0 (Release Candidate 0), formerly known as SQL Server Denali, is now available for download. SQL Server 2012...
2011-11-17
1,098 reads
This week we’re going to talk about a topic that has been gaining steam in the last few years and...
2011-11-17
1,168 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