Viewing 15 posts - 1 through 15 (of 16 total)
Make no mistake, I will performance test it when I get access to a SQL 2022 instance. To me, it's not worth installing Dev Edition on my own...
September 9, 2022 at 12:09 am
Jeff Moden - Tuesday, April 11, 2017 8:42 PMThe answer is...
SELECT N FROM fnTally(1,11000);
Jeff, from a performance perspective, would you prefer to...
April 11, 2017 at 11:44 pm
colin.counsell (5/23/2012)
I added code to the sp last night set ARITHABORT and QUOTED_IDENTIFIER.
It has just finished after 3 hours 10 mins!
It ran in 50 mins on the old server and...
July 15, 2015 at 8:11 pm
Tac11 (4/28/2015)
Msg 9436, Level 16, State 1, Line 7
XML parsing: line 5, character 15, end tag does not match start...
April 28, 2015 at 3:55 pm
Tac11 (4/28/2015)
How do I delete previous deadlock report?
They're coming from a DMV (Dynamic Management View) so you cannot delete them, per se. All DMVs retain their data until either the...
April 28, 2015 at 3:43 pm
m60freeman (6/11/2014)
IF OBJECT_ID('tempdb..#ZZ_DeadlockEvents2008') IS NOT NULL Drop Table #ZZ_DeadlockEvents2008
in a Microsoft SQL Server 2012 (SP1) - 11.0.3128.0 (X64) instance, I...
June 11, 2014 at 7:30 pm
@shahgols: The Deadlock Graph visualizer in SSMS expects XDL (XML Deadlock List) files as output from SQL Profiler using the following technique: How to save deadlock graph events...
September 26, 2013 at 5:11 pm
hello mahesh (9/17/2012)
but nothing is captured with this query..
select XEventData.XEvent.value('(data/value)[1]', 'varchar(max)') as DeadlockGraph
FROM
(select CAST(target_data as xml) as TargetData
from sys.dm_xe_session_targets st
join sys.dm_xe_sessions s on s.address =...
September 24, 2013 at 7:24 pm
Something else I wanted to add although this an ongoing issue, not new to SSRS 2008 R2...
I've always found it disappointing/annoying/frustrating that for report images, and charts in particular, you...
September 8, 2011 at 11:04 pm
Lisa Slater Nicholls (9/6/2011)
September 6, 2011 at 5:41 pm
peterw 85974 (9/6/2011)
September 6, 2011 at 2:18 am
Hey Andy,
Great article, but finished up with:
I particularly like its ease of use and its superb error messages (other Microsoft departments could learn a lot from the SSRS team).
Are you...
September 6, 2011 at 12:55 am
This is still an issue in SSRS 2008 and 2008 R2. We hit this today and, in the interests of not breaking Reporting Services whilst still preserving the sanity of...
February 9, 2011 at 9:48 pm
Hi Jeff,
Using NEWID() as you have is a better way to get random data out of SQL if you don't want repeatability, but getting repeatable random-ish data out of this...
August 30, 2010 at 7:36 pm
I just thought I'd share a head-smacking moment with you. It's been touched-on previously in this thread, but I don't think anyone's come right out and demonstrated it.
What happened?
This one...
August 30, 2010 at 5:41 pm
Viewing 15 posts - 1 through 15 (of 16 total)