The Difference Between Change Tracking and Change Data Capture
Change Tracking (CT) and Change Data Capture (CDC) were both added to SQL Server in 2008. At first it seems...
2012-05-10
48,831 reads
Change Tracking (CT) and Change Data Capture (CDC) were both added to SQL Server in 2008. At first it seems...
2012-05-10
48,831 reads
Best. Luncheon. EVAR.
I just finished up moderating this year’s Women in Technology panel here at SQLRally, and it was fantastic. ...
2012-05-10
706 reads
I will be presenting two sessions at the Rocky Mountain Tech Trifecta in Denver on May 19, 2012. This is...
2012-05-10
851 reads
Hello Dear Reader! I'm coming to you live from the wonderful SQL Rally in Dallas Texas. I have two sessions...
2012-05-10
504 reads
Ran across this recently, YourLogicalFallacyIs.com is a site that lists all the ways you can apply logic badly, and they’ve...
2012-05-10
868 reads
If you don’t change the version number of your .NET project output every time you create a setup package, you...
2012-05-10
1,745 reads
Had a nice lunch at On The Border at Orlando International before my flight, used that time to finish some...
2012-05-10
629 reads
Recently, I caught my during a kickoff with a new client saying, “Hello I am John, and I love SQL....
2012-05-10
501 reads
Denali – Day 10: Sequence object
Sequence is an object introduced in Denali, this is similar to ORACLE sequence, earlier sql server...
2012-05-10
1,280 reads
Long before it was announced that coming August 4, 2012, SQLSaturday #158 returns to the NYC (<< see recent announcement, New York...
2012-05-10
1,263 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