SQLServerCentral on Twitter
We’re on Twitter as @SQLServerCentrl. We couldn’t fit the whole name in there given the limitations of Twitter, but feel...
2009-03-11
366 reads
We’re on Twitter as @SQLServerCentrl. We couldn’t fit the whole name in there given the limitations of Twitter, but feel...
2009-03-11
366 reads
What do MVPs get to do and see at the MVP Summit? Well most of it is under NDA, so...
2009-03-11
479 reads
Fundamentally as I get older, I think more and more men are pigs. There is definitely something wrong with them,...
2009-03-11
2,004 reads
I went to get new business cards from VistaPrint recently. There are lots of choices and it took longer than...
2009-03-10
624 reads
SQL Server allows nesting of Transactions –in a sense. In truth, there is only one Transaction, with each ‘nested transaction’...
2009-03-10
797 reads
This month there were 3 security bulletins released and 1 re-released:
Microsoft Security Bulletin Summary for March 2009
First, let's tackle the...
2009-03-10
1,211 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-03-10
585 reads
Kind of funny. I saw this on Twitter the other day from @DanNunan and then someone sent it to me...
2009-03-10
771 reads
Those who know me personally know that I grow my hair out to donate for kids. I have donated a...
2009-03-09
1,016 reads
I received a review copy of Murach's SQL Server 2008 For Developers a couple months back and just finished up...
2009-03-09
1,190 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_CustomerEmail
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.CustomerContactAfter I do this, what will I see for the index status? See possible answers