Windows 7 Beta Delayed
Looks like the Windows 7 beta download has been delayed while Microsoft adds additional infrastructure support. A little disappointing but I...
2009-01-09
641 reads
Looks like the Windows 7 beta download has been delayed while Microsoft adds additional infrastructure support. A little disappointing but I...
2009-01-09
641 reads
This came up on Twitter today. I have a search set for "SQL Server" and it pulled up someone who...
2009-01-09
948 reads
First saw this because Jason Massietwittered about it. But apparently there are enough bits of the .NET Framework in R2...
2009-01-09
1,267 reads
I grew up watching the syndicated version of Star Trek every evening as a kid, 12-14 and dreamed of being...
2009-01-09
735 reads
I've been meaning to do this for a year, finally caught up with Eric Johnson of Consortio Services to do...
2009-01-08
717 reads
I ran across the AlphaSmart Neo in The Writer magazine. It's a $219 "laptop" that is for writing only, basically...
2009-01-08
672 reads
Tomorrow Microsoft will make Windows 7 beta available for download. I’m a little skeptical but I think just about anyone...
2009-01-08
675 reads
Nobody bats 1.000, or one thousand. Not in baseball and not in any aspect of life. You might be able...
2009-01-08
626 reads
Yesterday I started discussing networking and the idea that it's time invested with no guarantee of a return on that...
2009-01-07
749 reads
I received word earlier today that I’ll be presenting at the upcoming SQL Saturday event in Tampa, Florida on January...
2009-01-07
979 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