9 resources not to be Skeptic about Big Data
2 years ago I posted “16 papers and original articles on Big Data” It’s now time to review and extend my original list. “Big Data” reached its Peak in...
2013-06-01
31 reads
2 years ago I posted “16 papers and original articles on Big Data” It’s now time to review and extend my original list. “Big Data” reached its Peak in...
2013-06-01
31 reads
2 years ago I posted “16 papers and original articles on Big Data” It’s now time to review and...
2013-06-01
16 reads
The Big Data revolution will be more important than the PC or the Internet. While there were many interesting conversations last week at Strata, two new publications captured my...
2013-03-04
25 reads
The Big Data revolution will be more important than the PC or the Internet. While there were many...
2013-03-04
13 reads
What are the most influential papers in the world of Big Data? Let me suggest: http://bit.ly/BigData1 We face a data management problem: IDC 2010 Digital Unverse Study http://bit.ly/BigData2...
2011-05-30
25 reads
What are the most influential papers in the world of Big Data? Let me suggest:...
2011-05-30
17 reads
I searched the internet for “connect and forget”. Wonderbox.net offer is described as a “revolutionary computer server”… I think of wonderbox as a “computing appliance”, but Wikipedia limits the...
2010-10-10
17 reads
I searched the internet for “connect and forget”. Wonderbox.net offer is described as a...
2010-10-10
35 reads
10 years ago IT professionals considered database technology “mature” and analysts were preparing to slide it into a commodity status… But on the Exabyte era, we depend on databases...
2010-09-13
23 reads
10 years ago IT professionals considered database technology “mature” and analysts were preparing to...
2010-09-13
25 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