Viewing 15 posts - 1,111 through 1,125 (of 59,072 total)
Another thing to add to your list is a nightly file usage check. That should also include a "Page Density" check on your indexes and heaps. Your infrastructure guys should...
--Jeff Moden
Change is inevitable... Change for the better is not.
@jeff, while I agree with you about the most important goal, I don't think Steve meant "daily" when he said "everyday". He meant "quotidien/mundane/matter-of-fact/run-of-the-mill/as-expected". And no, I'm not checking...
--Jeff Moden
Change is inevitable... Change for the better is not.
Hey Jeff,
I was talking to Bob Ward about your tests. He was interested in an introduction to talk about them. Any interest? If so, which email should...
--Jeff Moden
Change is inevitable... Change for the better is not.
Many thanks all for all the replies!
Thanks for the feedback.
--Jeff Moden
Change is inevitable... Change for the better is not.
It's still a scalar function and your retry explains why this thread took so long and died.
--Jeff Moden
Change is inevitable... Change for the better is not.
From the Article:
The goal is repeatable, reliable software deployments, with releases, or at least deployments, being an everyday occurrence, not a big event.
I have to strongly disagree... the goal is...
--Jeff Moden
Change is inevitable... Change for the better is not.
@Grasshopper's solution does not work for negative numbers, so here's his version that does work for negative numbers:
create function dbo.RoundToEven(@num numeric(38,19)) returns decimal(19,2)
begin
return case
...
--Jeff Moden
Change is inevitable... Change for the better is not.
Good Lord! I've got more testing to do but I ran a simple "Tally CTE Function" test in 2017 and 2022 on my laptop. The results...
--Jeff Moden
Change is inevitable... Change for the better is not.
Thanks for the post about SQL 2022, Jeff. I've reached out to my team and mentioned that we need to fix all the problems we're currently having with SQL...
--Jeff Moden
Change is inevitable... Change for the better is not.
Hey Jeff,
I was talking to Bob Ward about your tests. He was interested in an introduction to talk about them. Any interest? If so, which email should I use?
Yes. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
The only difference I see between that code and mine is CONVERT rather than CAST ... I didn't realize CAST had that "big overhead". (Presumably using LEFT rather than...
--Jeff Moden
Change is inevitable... Change for the better is not.
IF the MMDDYYYY formatted string date is guaranteed to always be 8 characters, the following works (most of the posted code doesn't consider the inclusion of the ".txt") according to...
--Jeff Moden
Change is inevitable... Change for the better is not.
Deleted. Made a mistake and didn't check before I posted. 🙁
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 15 posts - 1,111 through 1,125 (of 59,072 total)