SQLServerCentral.com Track to be Offered at 2012 SQL Server Connections in Las Vegas this Spring
As we have done for the last several years, SQLServerCentral.com will be offering its own track at SQL Server Connections...
2011-11-29
746 reads
As we have done for the last several years, SQLServerCentral.com will be offering its own track at SQL Server Connections...
2011-11-29
746 reads
Pro-tip on how to quickly and easily migrate data sources for reporting services.
Related Posts:
File Maintenance - Cleaning Up Old Files December 21, 2018
Get a List of Files with...
2011-11-29
18 reads
Back in August, I published a post on exporting SSRS report files en masse. That article (which can be read...
2011-11-29
1,692 reads
It's amazing to me how the herd mentality works in Technology (and many other things) sometimes. I get the idea...
2011-11-29
1,175 reads
This post was published to Vinay Thakur – Sql Server DBA at 5:05:51 PM 11/25/2011 Day 28: Linked server errors Linked...
2011-11-28
632 reads
If you are a DBA in Space fan, and in case you missed them, there have been two items published...
2011-11-28
670 reads
This is a continuation of my DBA in Space journal.
Episode six is filmed at the “Visions of the Future Exhibit”...
2011-11-28
749 reads
Ed Wilson (Blog|Twitter) aka Scripting Guy is kicking off another guest blogger week (Nov 28th 2011) with my guest blog...
2011-11-28
3,569 reads
Do you have $5 you could re-direct from a cup of coffee to a donation on men’s health issues?
If you...
2011-11-28
486 reads
2011-11-28
763 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