Viewing 8 posts - 1 through 8 (of 8 total)
I know it's an old post, but I thought I'd mention what helped me.
The message indicates that sessions are active inside workgroups that are changing.
To get past the error, you...
August 16, 2023 at 7:15 pm
I've tried to look at some deadlocks in Management Studio but I get the same error that mentions "key cannot be null".
In my case, I've noticed a few interesting...
March 15, 2018 at 7:04 am
philcart (5/19/2011)
May 19, 2011 at 6:27 am
Your method of analyzing blocking was interesting. Could you compare it to the "blocked process report" event that is available in system traces (i.e. profiler)
February 24, 2011 at 7:04 am
Hi Jeff,
Records aren't always stored physically ordered on a data page. Most of the time they are physically ordered correctly, but the actual order comes from the slot array....
September 22, 2010 at 6:51 am
Ha!
CREATE PROCEDURE enTibble AS
DECLARE @tableName sysname = NULL;
DECLARE @newName sysname = NULL;
SELECT TOP (1) @tableName = name,
@newName = 'tbl' + name
FROM sys.tables
WHERE name not like 'tbl%';
WHILE (@tableName IS NOT NULL)
BEGIN
EXEC...
January 25, 2010 at 9:53 am
If we change domains slightly: Consider a text-editing problem rather than a programming problem:
When working in Management Studio if you want to replace one (and only one) string of spaces...
November 16, 2009 at 6:52 am
For what it's worth, there is now a microsoft connect item for this problem.
May 6, 2009 at 11:34 am
Viewing 8 posts - 1 through 8 (of 8 total)