Viewing 15 posts - 241 through 255 (of 59,069 total)
The OP said "but that session is a background session with a command of "DB Startup" and that he has the logfile being backed up an truncating every hour but...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 18, 2024 at 3:49 pm
What type of files are you doing this for? Plaiu text., CSV, TSV, PDF, what?
--Jeff Moden
Change is inevitable... Change for the better is not.
December 17, 2024 at 8:41 pm
You might want to send an email to webmaster@sqlservercentral.com with that question.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 17, 2024 at 6:20 pm
I think people have been going a bit nuts for the last 15 or so years and especially in the last 6 or so years. I just found out about...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 17, 2024 at 5:48 pm
Eirikur Eiriksson wrote:Does anyone have an idea for RPO 😉
Return Porkchop Output
EDIT: Or Rebounding Porkchop Objective?
--Jeff Moden
Change is inevitable... Change for the better is not.
December 17, 2024 at 10:34 am
Interviewing for open position...
My boss: Rate your SQL skills & knowledge on a scale of 1 to 10.
Interviewee: 7 or 8
Me: Let's talk about backups and restores.
Interviewee: I...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 17, 2024 at 3:46 am
Too much fun, Michael!
--Jeff Moden
Change is inevitable... Change for the better is not.
December 17, 2024 at 3:42 am
I have to disagree with the answer here. If you run the code more than once, it comes up with the same 10 rows. Therefor, they are NOT "random rows"....
--Jeff Moden
Change is inevitable... Change for the better is not.
December 16, 2024 at 6:14 am
Hey Jeff, was simply responding to the question on the scenario you posed.
Totally understood and I was just answering the new question.
Just to say it again, there is no...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 16, 2024 at 5:55 am
Try fixing things, rather than breaking them further.
Now that, I agree with!
A lot of people immediately respond with "Well, just turn on RCSI". Folks really need to be careful...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2024 at 3:18 pm
Jeff. I'll take a crack at your question:
In your example, are you assuming the date column is indexed and would be used? What if that is not the case,...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 11, 2024 at 7:15 am
Jeff, with RCSI enabled, it’s barely if ever necessary.
Agreed... all you have to do there is accept an extra 14 bytes per row and extra usage of TempDB. Since...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 10, 2024 at 4:05 am
On what grounds?
Uh, because the data is right, and the implementation is right.
You set up a straw man, where this condition applies, and you don't care about this,...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 10, 2024 at 4:04 am
The responses are as expected... some hardcore "NEVER"s.
To those people, I ask, if you want a simple report, say the number of products purchased by day for the previous calendar...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 10, 2024 at 1:14 am
With regard to the following code from the article...
CREATE PROCEDURE dbo.GetDashboardStats
AS
BEGIN
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
SELECT
(SELECT COUNT(*) FROM Orders WITH (NOLOCK)
WHERE OrderDate = CAST(GETDATE() AS...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 9, 2024 at 1:46 am
Viewing 15 posts - 241 through 255 (of 59,069 total)