Viewing 15 posts - 16 through 30 (of 65 total)
How did anyone get it right? Obviously I knew I'd be marked wrong as you asked for two answers and provided radio buttons, so I chose one of the right...
April 15, 2016 at 5:45 am
george sibbald (2/19/2014)
cough
Ha ha, sorry George, much appreciated too 🙂
February 19, 2014 at 7:55 am
Aha! Thanks Gail, I didn't know about DATALENGTH! That was the tool I needed to get to the bottom of it.
Nearly all the space is used by the _FullCommand column....
February 19, 2014 at 7:35 am
GilaMonster (2/19/2014)
Ooh, that's a lot of LOB columns.Maybe an index reorganise with LOB_Compaction on?
I tried that originally, then rebuilt the index, neither helped.
February 19, 2014 at 6:50 am
CREATE TABLE [data].[Cluster_SqlServer_SqlProcess_UnstableSamples](
[Id] [bigint] NOT NULL,
[CollectionDate] [bigint] NOT NULL,
[_Blocked] [bigint] NULL,
[_BlockingLoginTime] [bigint] NULL,
[_Command] [nvarchar](max) NULL,
[_CumulativeProcessorTime] [bigint] NULL,
[_DatabaseName] [nvarchar](max) NULL,
[_FullBlockingCommand] [nvarchar](max) NULL,
[_FullCommand] [nvarchar](max) NULL,
[_LastBatch] [bigint] NULL,
[_LastWaitType] [nvarchar](max) NULL,
[_MemoryUsage] [bigint] NULL,
[_OpenTransactions] [bigint]...
February 19, 2014 at 5:48 am
No, it has a clustered primary key on two columns (both bigint), no other indexes.
February 19, 2014 at 5:23 am
Thanks Jim,
Anyone else have anything to suggest? There must be some Service Broker experts out there in this community?
January 31, 2014 at 2:53 am
My understanding (and if it's wrong, I'd be happy to be corrected):
The queue was not being poisoned. That disables the queue, which did not happen.
Also, poisoning happens because of errors...
January 29, 2014 at 4:27 am
Jeff Moden (1/2/2009)
battelofhalfwits (1/1/2009)
Two things
1) Never use Cursors! Looping through a temp table takes less overhead than a Cursor; especially when you are working on a 24/7/365 server where...
May 27, 2011 at 2:57 am
rmechaber (3/22/2011)
A fascinating and scary exploration of how SQL Server doesn't always follow ANSI syntax for dates:
Thanks for that - excellent article.
When trying some of the examples in there, I...
March 22, 2011 at 11:41 am
Tom.Thomson (3/19/2011)
March 22, 2011 at 8:21 am
Koen Verbeeck (3/18/2011)
Chris Howarth-536003 (3/18/2011)
"The conversion of a char data type to a datetime data type resulted in an out-of-range datetime...
March 18, 2011 at 3:27 am
DNA_DBA (3/17/2011)
March 17, 2011 at 4:09 am
Duncan Pryde (3/10/2011)
Jamie Thomson (3/10/2011)
The big benefits as far as I can see them are:
-Development-time error checking (i.e. find out about errors before you actually run the code - so...
March 10, 2011 at 9:58 am
I'm loving the reference to "Visual Studio Database Davelopment Tools"... that's how I shall think of it henceforth 🙂
Dave.
March 10, 2011 at 2:58 am
Viewing 15 posts - 16 through 30 (of 65 total)