PASS 2009 Summit - Call for Speakers is Open
The call for speakers is open through midnight on April 10, 2009, so get busy submitting those abstracts! Work hard...
2009-03-22
747 reads
The call for speakers is open through midnight on April 10, 2009, so get busy submitting those abstracts! Work hard...
2009-03-22
747 reads
I've been amazed at the amount of content that I am getting at SQLServerCentral. So far, in 2009, I've received...
2009-03-20
635 reads
I’m not sure how I feel about Amazon invoking the DCMA clause to prevent other e-books from being read on...
2009-03-20
991 reads
I found a cool video on the 37 Signals blog that showed the Audi A4 production process. It’s relatively low...
2009-03-19
780 reads
I was browsing the March 2009 issue of Visual Studio Magazine today and found that it's changing again. It's been...
2009-03-19
778 reads
Starting the summer 2002, for about a year or so, the team and I embarked on a project to develop business...
2009-03-19
984 reads
I've been slowly looking at and experimenting with LinkedIn to see if it has value and if so, how to...
2009-03-19
914 reads
I committed today to attend SQL Saturday #14 in Pensacola on June 6, 2009. I'll be giving The Modern Resume...
2009-03-19
579 reads
I joined in late to a conference call this morning from Quest where a number of their experts were talking...
2009-03-19
1,072 reads
I tend to work with a fair number of documents in my job. Between articles that are sent to me,...
2009-03-18
1,130 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