SQL Server 2012 released!
Exciting news! Microsoft announced today that SQL Server 2012 has released to manufacturing (RTM). Customers and partners can download an...
2012-03-06
1,646 reads
Exciting news! Microsoft announced today that SQL Server 2012 has released to manufacturing (RTM). Customers and partners can download an...
2012-03-06
1,646 reads
So it looks like today is the day.
SQL Server 2012 has been RTM’d today.
General Release 1st April 2012
http://www.microsoft.com/Presspass/press/2012/mar12/03-06SQLServer12PR.mspx
2012-03-06
2,041 reads
This week I had an application team report the error “SQL Connection Lost”. Fortunately they also reported the exact times...
2012-03-06
1,676 reads
I asked a few questions on twitter this morning after a friend of mine said they were have problems downloading...
2012-03-06
779 reads
I was back at MagicPASS last week to do a presentation, my first time with the group at the new...
2012-03-06
563 reads
Today, I am following up on a topic I mentioned in an earlier post. In case you haven’t read the post on finding your linked servers, you can read...
2012-03-06
4 reads
Today, I am following up on a topic I mentioned in an earlier post. In case you haven’t read the...
2012-03-06
683 reads
In this short post, I’ll discuss NoRowsMessage property. When there is no data for a data region, the message you...
2012-03-06
1,852 reads
When you try to log on to a remote server on emergency to perform some task , it may throw an...
2012-03-06
8,221 reads
All, wanted to immediately share the news today from Microsoft regarding SQL Server: This just in from the MVP/MS Newsroom. I'm...
2012-03-06
1,634 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