Change Tracking–an easy way to track your changes TIP#78
I am pretty much sure by the title of this post you had idea of the post content. Although I...
2014-12-21
699 reads
I am pretty much sure by the title of this post you had idea of the post content. Although I...
2014-12-21
699 reads
Sometimes, we may require to reseed identity column of a table due to various reason.
For example we have deleted a...
2014-12-20
520 reads
This week Microsoft announced the availability of Power BI Dashboards and the browser-based dashboard designer. What is it and why...
2014-12-20
689 reads
It’s Friday, time to look back at the most popular RealSQLGuy posts of the week. Because it’s Friday and you’re...
2014-12-19
435 reads
If you’re currently an Office 365 customer that is using Power BI sites then you probably found an early Christmas...
2014-12-19
1,249 reads
I often get asked for advice on how to get started in a career as a DBA or in IT...
2014-12-19 (first published: 2014-12-10)
6,997 reads
I am no longer just a SQLskills Insider, I am now a SQLskills employee. I have accepted an offer to...
2014-12-19
1,310 reads
Packt Publishing are having a price drop bonanza over the Christmas period. You can get any e-book for just $5...
2014-12-19
486 reads
I’ve got a semi complicated desktop setup, with multiple monitors, lots of USB stuff, and a few ways to record...
2014-12-19
894 reads
Photo credit – Travis
Ever go digging through your backyard for dinosaur bones? Maybe not, but it’s worthwhile from time to time...
2014-12-19
892 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