The Guru's Guide to T-SQL
Steve Jones's review of this classic and reference. A must-have for every SQL Server DBA.
2001-07-04
5,420 reads
Steve Jones's review of this classic and reference. A must-have for every SQL Server DBA.
2001-07-04
5,420 reads
2001-07-02
4,067 reads
Ever needed to find the first occurrance of some data. This article looks at T-SQL querying for data in natural order.
2001-06-29
12,702 reads
2001-06-25
7,073 reads
Answers to the SQL quiz that Steve Jones used to give to prospective employees.
2001-06-22
11,632 reads
This article examines the hiring practices of Steve Jones and provides some ideas for how to choose between candidates.
2001-06-22
13,454 reads
2001-06-20
3,657 reads
2001-06-18
1,993 reads
Steve Jones provides some notes from the field after installing SP1 on a personal edition of SQL Server
2001-06-18
2,878 reads
A new security alert affecting SQL Server was released on June 12, 2001
2001-06-14
3,624 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...
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
Comments posted to this topic are about the item Automating SSAS Multidimensional Security Audits...
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_CustomerEmail
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.CustomerContactAfter I do this, what will I see for the index status? See possible answers