Why I Love the SQL Server Community
As many of you are aware, a SQL Server security patch came out this week (MS12-070 - Vulnerability in SQL Server...
2012-10-11
1,013 reads
As many of you are aware, a SQL Server security patch came out this week (MS12-070 - Vulnerability in SQL Server...
2012-10-11
1,013 reads
How many of you out there get approval to go to the PASS Summit (YES!) but then get denied the...
2012-10-01
635 reads
If you are a member of PASS you have probably already received an email that looks like this:
--
From: <hq@sqlpass.org>
Date: Fri,...
2012-09-28
1,683 reads
After having too many people ask me what NebraSQL meant (its a play on words - Nebraska+SQL - get it?) I have...
2012-09-27
769 reads
I will be speaking with several of my House of Brick Technologies colleagues at SQL Saturday #165 in Lincoln in...
2012-09-26
591 reads
This last Saturday (09/15/2012) I traveled to St. Louis to present at #sqlsat154. My colleague David Klee (blog/@kleegeek) and I...
2012-09-17
895 reads
Last April I experienced the most amazing training event I have participated in so far in my life (yet).
I actually...
2012-08-10
663 reads
This past weekend was SQLSaturday159 - Kansas City. I drove down with my wife and our sons (2 years old and...
2012-08-09
953 reads
I was recently at a client site and we started talking about SQL Server licensing, specifically for their development and...
2012-07-27
20,279 reads
Come to Kansas City on August 4th for SQL Saturday 159 and hear us speak!
At 2:30pm, I will be speaking...
2012-06-22
610 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