Viewing 15 posts - 1 through 15 (of 2,043 total)
Thanks for showing what is available in the mssql VSCode-extension
September 23, 2025 at 11:42 am
Doesn't that show up in timesheets? Time spent actual work : 6 hours, Time spent administration/meetings 34h
September 23, 2025 at 11:39 am
Hmm, you may find the range with cross apply
Perhaps you can get lucky with windows functions
/*pseudocode as there is no copy paste sample data*/
with payments
(
select current.key currentpayment,...
August 25, 2025 at 9:37 am
Windows functions / CTE: ease of querying
Extended events for finding specific occurences
Query Store: what queries are likely the culprit
SSRS / SSAS albeit getting outdated
Read committed snapshot isolation: similar like Oracle,...
August 22, 2025 at 8:06 am
Wow, luckily you got that camping trip
August 21, 2025 at 9:15 am
Most run on standard edition, only BI has enterprise due bundle with powerbi report server
August 19, 2025 at 12:10 pm
Hmm, the newletters url's point to the same article of Koen
August 1, 2025 at 8:04 am
Post with links to those articles got automatically removed
July 25, 2025 at 8:05 am
Jasona, I would go camping, as you said time with family is valuable
July 24, 2025 at 8:36 am
What do you do when business wants an on-premises "backup" just in case the cloud would vanish or become unavailable. (We would have other problems, but let start with this)
Creating...
July 24, 2025 at 8:31 am
1.
You can probably disable step 3 "Reorganize index" in this modern world, saving a lot of io/time for minimal gains
Step 4 "Update statistics" is usually sufficient to get the best...
July 17, 2025 at 10:11 am
For SSIS, there is a property "Clean logs periodically" with retention days. This probably creates an "SSIS Server Maintenance Job" sql agent job.
For maintenance plans you can create a new...
July 17, 2025 at 8:02 am
Can you refine the logic with some sample data / wanted output?
select *
from A
where not exists (select * from b where a.server=b.server and a.login=b.login )
or
select *
from...
July 16, 2025 at 10:10 am
At first glance you use a lot of user defined functions. That makes it difficult for the SQL Server to optimize the execution as it is hidden in function logic.
Have...
July 11, 2025 at 1:18 pm
Indeed, was for a different post. Your answer should work. My usual culprit is a monitoring tool
June 11, 2025 at 3:52 pm
Viewing 15 posts - 1 through 15 (of 2,043 total)