Making Ginger Ale
Probably further off topic than usual, but you may find interesting anyway. I'm a fan of Alton Brown on Good...
2009-02-03
436 reads
Probably further off topic than usual, but you may find interesting anyway. I'm a fan of Alton Brown on Good...
2009-02-03
436 reads
Microsoft has just released the SQL Server 2008 Books Online (January 2009) update.
To download the 144 MB file so you...
2009-02-03
1,010 reads
I’m on Day Two of the Get Fit in February Developer Challenge. This month-long competition boasts around 200 participants who...
2009-02-02
653 reads
While in Cambridge, I went to watch a panel talk about building a software business. Neil Davidson, CEO of Red...
2009-02-02
878 reads
I’ve seen a good deal of coverage recently that is geared toward those who have recently begun a career as...
2009-02-01
855 reads
If you're organizing a first time community event like SQLSaturday finding speakers is one of about a hundred tasks, so...
2009-02-01
1,099 reads
I’ve got a Sidekick 3 right now that works OK for me, lets me check some basic email, get texts,...
2009-01-30
1,517 reads
A number of book publishers regularly send me books, hoping that I will write a good review for them. Most...
2009-01-30
1,957 reads
The European PASS Conference will be held in Neuss Germany (near Düsseldorf) from April 22-24, 2009. It will include 36...
2009-01-29
1,571 reads
The fifth annual South Florida Code Camp is being held on Feb 7th. They've got a huge schedule of sessions,...
2009-01-29
1,287 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