October 2011 LV UG Meeting
Boo!
OK, so it really isn’t that scary. But it is that time of year and we happen to have something...
2011-10-11
718 reads
Boo!
OK, so it really isn’t that scary. But it is that time of year and we happen to have something...
2011-10-11
718 reads
Boo! OK, so it really isn’t that scary. But it is that time of year and we happen to have something that could fix something that might be scary....
2011-10-11
11 reads
Today was a good day. I posted about the first part of today earlier, and we left off there with...
2011-10-11
518 reads
Hello, SQL Community and PASS Summit attendees!
This is an exciting week for all of us! It's wheels down for so many in...
2011-10-11
750 reads
To clear test data from a database we could use truncate commands but sometimes we need to get rid of...
2011-10-11
40,802 reads
Keeping track of all the versions and editions SQL Server instances can be a daunting task if you don’t have...
2011-10-11
1,251 reads
Reporting Services is one of those tools that just keeps on giving. I’ve been using SSRS since the early beta...
2011-10-11
2,862 reads
The 2012 South Florida Code Camp is scheduled for February 11, 2012 at Nova University in Ft Lauderdale, and the...
2011-10-10
658 reads
A couple weeks back, I drove out to Madison to present at the MADPASS user group. These guys have a...
2011-10-10
530 reads
With relatively little fanfare, Microsoft added a few new DMVs into the SQL Server 2008 R2 SP1 release, which came...
2011-10-10
1,346 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