devLINK Technical Conference to Be Held in Nashville, TN in August
The 2009 devLINK Technical Conference will be held in Nashville, TN, August 13-15, 2009. This three-day conference provides technical content...
2009-01-15
476 reads
The 2009 devLINK Technical Conference will be held in Nashville, TN, August 13-15, 2009. This three-day conference provides technical content...
2009-01-15
476 reads
I was browsing through the new titles that are on Safari and saw some planning guides around Windows Server 2008...
2009-01-15
821 reads
It is strange how people react in different circumstances. Yesterday while going through the forums, there was an interesting post....
2009-01-15
446 reads
Yesterday I participated in my first BI SIG live meeting. This special interest group is led by Amy Lewis who...
2009-01-15
673 reads
If not, you should. Because autoplay being on means any time a removable data device, such as a USB stick,...
2009-01-15
750 reads
It seems like the benefits of being involved in PASS just never stopped. If you didn’t see the PASS newsletter...
2009-01-15
579 reads
Over the last six months or so, Pepsi has been running a PepsiStuff promotion on many of their products. They...
2009-01-15
647 reads
It's been about two weeks since I posted PASS Update #1, so time for another update on my activities as...
2009-01-14
723 reads
If you couldn’t make it to the 2008 PASS Community Summit in Seattle, WA last fall, perhaps you can attend...
2009-01-14
675 reads
There was a time that I really felt I would be more productive with two monitors. I think I found...
2009-01-14
1,280 reads
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...
By SQLPals
SQL Server gMSA: Why DBAs Still Aren't Using It in 2026 ...
Comments posted to this topic are about the item Never is Not the Policy
Comments posted to this topic are about the item Automating SSAS Multidimensional Security Audits...
Comments posted to this topic are about the item Rebuilding All Indexes
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