Hello…
Here i come… this is my first post at http://svangasql.wordpress.com. Here, you will see posts related to sql server, reporting...
2011-09-07
521 reads
Here i come… this is my first post at http://svangasql.wordpress.com. Here, you will see posts related to sql server, reporting...
2011-09-07
521 reads
September is kicking off with a boom for me. In one week, it seems I will be here, there and...
2011-09-07
819 reads
September is kicking off with a boom for me. In one week, it seems I will be here, there and everywhere. Between SQL, PASS, Family, and User Group –...
2011-09-07
8 reads
The SQL Pass community summit is just around the corner. There is so little time and so much to do....
2011-09-07
1,391 reads
PASS Summit is quickly approaching and while many of you are registering I wanted to remind you of some of...
2011-09-07
1,164 reads
Recently former PASS President Kevin Kline posted his thoughts on the current slate of officers. I encourage you to read...
2011-09-07
1,022 reads
On Thursday, Sept 8, 2011 at 6:30pm EST, I’ll be presenting Banish RBAR! to the Richmond SQL Server User Group....
2011-09-07
692 reads
The slide deck for my session Hardware 301: Diving Deeper into Database Hardware is available here. There are still twelve...
2011-09-07
577 reads
I just 10 short days Atlanta GA will be hosting the most stellar lineup of speakers SQL Saturday has ever...
2011-09-07
451 reads
SQL Server Performance – September Story Contest 2011
Want to win yourself an iPad2? Well you can! Tell your story, 50/50, refer...
2011-09-07
1,762 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