Viewing 15 posts - 271 through 285 (of 39,699 total)
If you want to convert from a csv, python can help:
def detect_date_format(date_str):
if re.match(r'^\d{4}-\d{2}-\d{2}$', date_str):
return 'YYYY-MM-DD'
...
June 23, 2025 at 12:32 pm
Don't threaten the AIs: https://venturebeat.com/ai/anthropic-study-leading-ai-models-show-up-to-96-blackmail-rate-against-executives/
So much for Asimov's laws of robotics.
June 23, 2025 at 8:52 am
Interesting debate and technique. I tend to like looking for creative solutions that might not impact users. A new table, if this one isn't too active with changes, is a...
June 23, 2025 at 8:45 am
Likely some weird VS thing related to the shell.
I am glad in many ways that v21 uses the newer VS shell. Seems cleaner, though the different icon and slightly different...
June 23, 2025 at 8:41 am
I tend to use Brian's approach, doing an update then insert. One of the things that sometimes helps if it's a lot of records is I'll add a bit col...
June 23, 2025 at 8:40 am
I tend to agree. I was surprised that some DBAs didn't want to compromise to 1 tool and then ad hoc queries as needed. The overhead worries me, especially if...
June 23, 2025 at 8:38 am
I keep thinking about OT as well. I think xEvents do a lot of what OTEL would want, though perhaps not without some overhead of the fields being collected.
I do...
June 20, 2025 at 1:39 pm
It might be. I am not a huge fan of multiple instances, especially with trying to get RAM right, but if 4 instances vs 4 VMs is affected by licensing,...
June 13, 2025 at 9:27 pm
It's returned in an order, but technically that can be changed:
SELECT value
FROM GENERATE_SERIES(1, 10) ORDER BY value desc;
June 13, 2025 at 9:25 pm
It also means teamwork across dev, qa, ops, etc. is really important to solve problems efficiently.
June 13, 2025 at 9:10 pm
Viewing 15 posts - 271 through 285 (of 39,699 total)