Viewing 15 posts - 31 through 45 (of 1,489 total)
Nothing to do with SQL but if you have an Android phone it looks as though Tasker can be made to play music:
iOS probably has similar apps.
ps This forum is...
June 3, 2025 at 1:33 pm
The OP needs to ask what restores they will need and under what circumstances. Backups can then be planned to align with the restore strategy. Then the restores need to...
April 28, 2025 at 7:18 am
Untested:
WITH Grps
AS
(
SELECT PID, Category, [status]
,MAX(IIF(Category <> 'greatherthan8', 1, 0)) OVER (PARTITION BY PID) AS LTExists
FROM #test
WHERE [status] = 'compliant'
)
UPDATE Grps
SET [status] = 'Missing'
WHERE Category = 'greatherthan8'
AND LTExists...
April 23, 2025 at 8:49 pm
If you think other systems will ever need the data, you could also look at exporting the table to parquet format. Using Python is the normal way to do this....
April 11, 2025 at 4:58 pm
Same, I'd love a lightning fast, small, query editor only.
The SQL Server extension in VS Code is not too bad for quick queries.
March 28, 2025 at 5:11 pm
It was strange that he was so adamantly opposed to at least upgrading the frameworks involved
Not really. If most people are happy with the way a system is working...
March 24, 2025 at 10:21 am
We all must work with technologies that are at best 15 years old.
Would upper management actually realize if you used .Net 8 instead of .Net 2? Would...
March 23, 2025 at 5:54 pm
You could also look at asking your network team to create a load balancer and then use the load balancer in the connection strings.
Once all the connection strings are pointing...
March 20, 2025 at 9:55 am
"this is not enough of an annoyance for most people to seriously start looking at something like PostgreSQL"
Most? Probably still true. But they might want to re-evaluate their over-confidence...
March 18, 2025 at 9:48 pm
We all must work with technologies that are at best 15 years old.
Would upper management actually realize if you used .Net 8 instead of .Net 2? Would they realize...
March 17, 2025 at 6:38 pm
An interesting article:
What the Decline of Sql Server Quality means for Developers and DBAs
March 17, 2025 at 8:13 am
I just want them to fix the serious performance problems that started in 2019 and they've done (apparently) nothing to fix even up 'til today for SQL Server 2022....
March 1, 2025 at 3:52 pm
You are going to have to provide a lot more detail for anyone to give you a sensible answer but, from what you are saying, this sounds more like an...
March 1, 2025 at 3:37 pm
Before you delete that data, as a minimum I would BCP it out and save it securely somewhere. Long term you might want to look at partitioning the table so...
February 27, 2025 at 8:23 am
Viewing 15 posts - 31 through 45 (of 1,489 total)