Event Driven SSIS with Synchronous Processing and Dynamic Subscriptions
I know the title of this post is a little cryptic and something that only a techie would like but...
2011-10-12
1,869 reads
I know the title of this post is a little cryptic and something that only a techie would like but...
2011-10-12
1,869 reads
COMMUNITY!
It is a packed house again this year. If you were here on Tuesday night and you were a first...
2011-10-12
941 reads
It is hard to live tweet or live blog when the Wi-Fi is not working reliably. The keynote starts out...
2011-10-12
617 reads
Hello again. The PASS Organization has once more allowed me to sit at the bloggers table for the key note....
2011-10-12
992 reads
Welcome to PASS Summit 2011 Day 1!! Be sure to get your very own copy of the hot-off-the-presses MVP Deep Dives...
2011-10-12
1,423 reads
One of the sayings that I’ve heard a few times from professional atheletics is this:
“Amateurs practice until they get it...
2011-10-12
812 reads
Do you have your head in the clouds? Have you wanted to take flight? Have you been called “Space Case” If you are a DB Professional, then all of...
2011-10-12
15 reads
Do you have your head in the clouds?
Have you wanted to take flight?
Have you been called “Space Case”
If you are...
2011-10-12
725 reads
The second day of the Summit was full of even more pre-con’s. Word on the street last night is that...
2011-10-12
954 reads
It’s that time of the year again – the SQL PASS summit 2011 is underway! Today I’m participating in the blogger...
2011-10-12
1,334 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