Viewing 15 posts - 31 through 45 (of 22,189 total)
If you're running in Azure SQL Database, there are two mechanisms that can allow you to set up a read only secondary that you can then point the AI to....
July 1, 2025 at 11:40 am
How are you measuring the duration and getting the average? DMVs, Query Store, Extended Events?
Is it linear?
June 12, 2025 at 2:07 pm
I agree. It would have to be an added column on a given table that states the source of the data. You could create a user-defined-type using ENUM for the...
June 12, 2025 at 2:06 pm
Something like this would do it:
WITH datebreakdown
AS (SELECT DATEPART(hh, sod.ModifiedDate) AS hourval,
DATEPART(mi, sod.ModifiedDate) AS minval,
...
June 10, 2025 at 12:45 pm
I'm pretty sure every union on the planet would lose their minds over what my job entails. The number of weekends that just go away. Holidays I don't get. Crazy...
June 4, 2025 at 1:29 pm
How do you control production deployments without source control? How can you be sure that the code that was tested is what gets deployed? In our world, nothing gets...
May 22, 2025 at 11:48 pm
"It's a pull because you're asking someone to accept your code. You pushed it into the Pull Request, but they don't have to take it. They have to pull...
May 22, 2025 at 12:32 pm
You can. However, it's work to get it set up well so you get the info you want without putting too much load on the system.
Extended Events has a thing...
May 22, 2025 at 12:30 pm
I see your point, Grant. I hesitate because I saw what happened when we had TFS on-prem. My employer is so dead set against spending any money that when...
May 22, 2025 at 11:32 am
Rod, they could set up a central Git server, no cost at all, locally and then use that. It's going to be all command line driven (although I'm sure there's...
May 21, 2025 at 2:50 pm
I can't imagine working without source control. It's like boxing with one hand tied behind your back.
Yeah, in all seriousness, I can't imagine not using it. Heck, I use...
May 21, 2025 at 2:47 pm
Strong suggestion, don't use Profiler. The GUI puts considerable load on a server. Trace Events, the underlying technology, aren't all that kind to a server either. Instead, use Extended Events.
Also,...
May 21, 2025 at 2:46 pm
You know it does. We've talked about this. Why do you keep bringing it up?
May 21, 2025 at 1:06 pm
Deadlocks are, at least in part, a performance problem. If all the transactions occur fast enough, the deadly embrace is less likely to occur and deadlocks are avoided. Yes, fundamentally...
May 21, 2025 at 1:05 pm
Sorry to hear it Jason. Best of luck. My son is now traveling for work for a giant corporation. He's reminding me why I like working for smaller companies. He...
May 8, 2025 at 2:36 pm
Viewing 15 posts - 31 through 45 (of 22,189 total)