SQL PASS Summit–Day 3 (Keynote)
From the PASS president, Rushabh Mehta. PASS has facilitated 430,000 hours of training and expansion into the global community. These...
2011-10-12
467 reads
From the PASS president, Rushabh Mehta. PASS has facilitated 430,000 hours of training and expansion into the global community. These...
2011-10-12
467 reads
So far SQL Pass Summit has been great for me. I have had a great time from day one onwards....
2011-10-12
1,754 reads
When Jes Borland suggested we do a group SQL Run in Seattle, I was thinking that we’d have a few...
2011-10-12
1,629 reads
You must read this if you work with SSAS:
Analysis Services 2008 R2 Performance Guide
Infact, I would recommend re-reading it a number...
2011-10-11
1,033 reads
We all know that SQL Server loves memory, and in my opinion SQL Server can never have to much RAM....
2011-10-11
686 reads
My first day in Seattle has ended. My flight arrived around 12:30 and I was in good company with John...
2011-10-11
743 reads
On Wednesday, October 12, at 10:15AM, I am going to get the pleasure of presenting my Hardware 301: Diving Deeper...
2011-10-11
1,101 reads
I used to work with a guy who was adamant that before you asked him for help, you had done the...
2011-10-11
1,305 reads
Since I put up the lyrics for “SQL and I Know It”, it only makes sense to continue the tradition...
2011-10-11
528 reads
Master Data Services provides a way of de-activating entity members using the StgMemberAttribute table as described in Books On Line...
2011-10-11
1,014 reads
By Steve Jones
I recently started playing with the MCP Server for SQL Server, which is a...
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...
Has anyone written a wrapper function (or similar) around STRING_AGG() to allow the retrieval...
Putting this here as we're currently on SQL Server 2019 installed on Windows Server...
Comments posted to this topic are about the item Never is Not the Policy
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_CustomerPhone
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.CustomerContact rebuildAfter I do this, what will I see for the index status? See possible answers