Monitoring Structure Changes
Most everyone I know works with environments that are carefully controlled and structured. All changes go through rigorous testing and...
2013-10-22 (first published: 2013-10-15)
2,302 reads
Most everyone I know works with environments that are carefully controlled and structured. All changes go through rigorous testing and...
2013-10-22 (first published: 2013-10-15)
2,302 reads
Red Gate visited three cities this year with our SQL in the City event; Pasadena, Atlanta and Charlotte. I just...
2013-10-22
840 reads
I read this fascinating blog post called “Don’t Be a Gatekeeper” by Julie Zhuo. Please read that first.
It really resonated...
2013-10-18 (first published: 2013-10-09)
2,735 reads
KILT DAY!
Today we have to eat our vegetables and then get lots and lots of sweet desert.
Or.
Today we hear about...
2013-10-17
887 reads
This year I was invited to attend the Women In Technology luncheon as a blogger. So I’ll be live-blogging it...
2013-10-17
855 reads
I am liveblogging the keynote from the bloggers table at the PASS Summit again this year. Just keep scrolling.
Watching the...
2013-10-16
802 reads
This month I saw several good speakers talking on a variety of topics. Making this choice was hard. I’m really...
2013-10-09 (first published: 2013-10-04)
1,146 reads
If you’ve been working with Azure for a while you probably signed up before they had the ability to create...
2013-10-08
813 reads
That was hard work
You may or may not have noticed, but every single week day for the month of September,...
2013-09-30
1,598 reads
We just received word of a bunch of new functionality over at Scott Guthrie’s blog. Not a lot of stuff...
2013-09-27
1,325 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