Viewing 15 posts - 4,906 through 4,920 (of 59,089 total)
One thing I am disappointed not to be hearing more about is the use of resumable index rebuilds.
I've stopped using reorganize on huge tables where we can't rebuild because...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 2, 2021 at 11:27 am
--Jeff Moden
Change is inevitable... Change for the better is not.
August 2, 2021 at 11:17 am
My suggestion is to stop monitoring successes. Job history does that well enough.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 2, 2021 at 12:11 am
When you do a shrink-file on a data file, pages from the end of the file are moved to unused pages at the beginning of the file. That very effectively...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 2, 2021 at 12:06 am
I'd like to add my thanks as well, a great and thoroughly enjoyable presentation (and I actually understood it 🙂 ). Lots of good stuff. Now I just have...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 1, 2021 at 7:25 pm
So, the next question is, why do they want to know if you know this? Is there a non-obvious performance advantage? I wouldn't believe so but who knows?
--Jeff Moden
Change is inevitable... Change for the better is not.
July 30, 2021 at 6:23 pm
I used SQL Profiler to trace SQL scripts and got one sql statement with 53142 reads (as picture), but I executed that sql statement but found...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 30, 2021 at 6:01 pm
Here's a way, though it would be pretty stupid to do it.
SELECT x.CustomerID
FROM (SELECT c.CustomerID, 0 Col1
...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 30, 2021 at 5:51 pm
I used SQL Profiler to trace SQL scripts and got one sql statement with 53142 reads (as picture), but I executed that sql statement but found its logical reads...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 29, 2021 at 12:50 pm
Maybe it was a trick question where the expected answer was "you can't do that" or "that's a completely meaningless thing to do". Remember, the purpose of interview questions...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 29, 2021 at 12:42 pm
Thanks, David. I really appreciate you taking the time to provide feedback.
I went overtime because I got comfortable and slowed down. I needed to keep the pace up on that...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 29, 2021 at 5:33 am
However, Jeff, in all seriousness, their mistakes & shortcomings aside, would you say that "the last people you should be listening to are Microsoft employees"?
See... that's a problem...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 29, 2021 at 4:55 am
Asking for and getting a consistent format for incoming data from multiple clients is often wishful thinking. Sure, if you've done previous conversions from a system(s) that is the...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 27, 2021 at 9:15 pm
Unfortunately, that actually proves that they don't know. Bob Ward is still talking about the use of reorganize for index maintenance. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 27, 2021 at 8:39 pm
Thanks Jeff
That and control characters 28 thru 31.
I'm writing them how I would decode them in JavaScript -
Row split:
data.split("\u001e")
column split:
data.split("\u001f")
It is possible to define a whole set of JavaScript...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 26, 2021 at 8:58 pm
Viewing 15 posts - 4,906 through 4,920 (of 59,089 total)