Viewing 15 posts - 346 through 360 (of 1,193 total)
There are a number of things that could result in those figures not lining up, but the main thing is that sys.dm_exec_query_stats only has information for plans that are still...
October 24, 2016 at 11:12 am
If my memory serves me correctly, in Hungarian 'ly' is its own letter.
Seems to account for those results, e.g., 'GL' is a two letter string consisting of 'G' and...
October 24, 2016 at 8:49 am
Another way to try is to unpack the ranges into their constituent values and then do a join based on equality to those values.
Sometimes that's slower, but at least with...
October 21, 2016 at 2:48 pm
Nah, many of our customers are baffled by this when they see it the first time too (and so was I when I first started playing with indexed views...
October 21, 2016 at 9:11 am
Are you using columnstore indexes?
Documentation for that wait type is basically nonexistent (Paul Randal's compendium has it, but says nothing other than that it was added in 2016).
Since it...
October 21, 2016 at 9:04 am
This has gotten a bit meandering, so let me see if I can summarize what's happened so far before I suggest anything.
You have a stored procedure for which you want...
October 19, 2016 at 2:29 pm
Thanks for that update!
From looking at the log it looks like it probably is something along the lines of what Kevin suggested.
For both failed and successful full backups, there's a...
October 19, 2016 at 9:54 am
October 18, 2016 at 12:07 pm
The plan that uses seeks is actually quite a bit less efficient than the one that uses a scan, for a couple reasons.
First, the seek operator that is the outer...
October 18, 2016 at 9:08 am
Another good bit of info to get would be whether most of the data backed up for the large differentials is from the data files or the log file.
Something like...
October 17, 2016 at 10:36 am
WayneS (10/6/2016)
Sean Lange (10/6/2016)
Ed Wagner (10/6/2016)
Sean Lange (10/6/2016)
This may be the funniest thing I have seen in quite some time. You just gotta love 3rd party software.
Yeah, that's a good...
October 6, 2016 at 1:47 pm
Revenant (9/28/2016)
This is still undocumented and Azure Data Lake is still in preview. I had to ask guys on the ADL team to get the correct answer.
Really? Is the documentation...
September 28, 2016 at 10:48 am
Mike Scalise (9/27/2016)
...However, it can't be sized below what its initial size of 500MB was. Is my understanding correct, and is everything I've written accurate?
...
Actually, that's not really true.
The log...
September 27, 2016 at 2:55 pm
The detail on JOINs is in a different section from the one you cited, "U-SQL SELECT Selecting from Joins", one level down the tree from the "U-SQL SELECT FROM Clause".
That...
September 27, 2016 at 8:53 am
The Dixie Flatline (9/26/2016)
you should specify the window frame (generally ROWS UNBOUNDED PRECEDING), because the default is RANGE UNBOUNDED PRECEDING, and which is much slower than specifying the range...
September 27, 2016 at 8:28 am
Viewing 15 posts - 346 through 360 (of 1,193 total)