Shkurtesa ne SQL Server 2008
Pershendetje juve qe punoni vazhdimisht me SQL Server 2008!
Une sapo e instalove SQL Server 2008 RTM versionin e fundit edhe...
2008-10-05
541 reads
Pershendetje juve qe punoni vazhdimisht me SQL Server 2008!
Une sapo e instalove SQL Server 2008 RTM versionin e fundit edhe...
2008-10-05
541 reads
Hi there, I just installed the SQL Server 2008 RTM and I try to open with shortcut CTRL+R writing sqlwb...
2008-10-05
480 reads
I'm writing this as I wait on a flight back to Orlando after spending yesterday with John Magnabosco and team...
2008-10-05
165 reads
Technical:Counter Hack Reloadedby Ed Skoudis with Tom Liston
It's a security book and I'm rather late getting a review of it...
2008-10-05
735 reads
I'm in Indianapolis for the Indy Tech Fest, having been talked into speaking by John M. He started emailing me...
2008-10-03
412 reads
Perhaps you've noticed a few of the blog changes if you visit via the web rather than RSS. One good...
2008-10-03
364 reads
Why did I write this? I got challenged by Andy Warren
to write a bit about why I wrote something. I...
2008-10-03
368 reads
Midlands PASS was privileged to host SQL Server MVP Andy Leonard (Blog #1, Blog #2, his VSTS site, Twitter) tonight...
2008-10-03
735 reads
SQL Server as an EAV Database -Good Idea?
It seems like I am getting more and more inquires from potential clients...
2008-10-03
376 reads
We upgraded our blog server yesterday, making some changes and better integrating the blogs into the site. We now have...
2008-10-02
498 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