The Power of Data and Privacy
Steve discusses privacy and data that is publicly available on the Internet.
2026-02-11
85 reads
Steve discusses privacy and data that is publicly available on the Internet.
2026-02-11
85 reads
Many of the GenAI services are using the free model of the past, where they use your data in ways you might not expect. Now, a court is ensuring OpenAI keeps your chat data around.
2025-09-03
103 reads
2024-09-16
89 reads
With new vehicles becoming more and more computerized and controlled, is data privacy an issue?
2023-11-29
185 reads
The idea of a Chief Data Officer is growing in many companies. Steve thinks this is a good thing.
2022-03-16
145 reads
The world of public data is scary for Steve, even when the data is aggregated. It appears that keeping information private is becoming harder, and perhaps, impossible.
2021-10-04
156 reads
Apple has implemented some privacy controls for customers, which some advertisers don't like, but Steve agrees with.
2021-06-16
135 reads
Forcing users to agree to a new EULA or removing features seems like a bad idea to Steve.
2021-05-26
164 reads
Steve looks at a technique that some think will allow more data to be used in research and training.
2021-05-24
112 reads
Using data scraped from the web might be convenient, but is it legal. Perhaps more importantly, is it moral? Steve has a few thoughts.
2021-04-19
177 reads
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
By Steve Jones
AI is everywhere. It’s in the news, it’s being added to every product, management...
Hi, ssms is free here. I can think of other reasons to do this...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers