2018-05-11
74 reads
2018-05-11
74 reads
Power Bi is one of the neatest tools that Microsoft has built for data professionals. It allows anyone to build fantastic interactive visualizations that can help tell a story and help someone make decisions. There have been some amazing demo visualizations from Microsoft customers. I've seen a predictive maintenance visualization for airplanes, one for diabetes […]
2018-05-10
3,586 reads
Steve talks about the difference between anonymisation and pseudonymisation, which can be confusing.
2018-05-09
81 reads
The problems at TSB Bank in the UK have Steve worried about his own records.
2018-05-08
92 reads
Phil Factor on a journey that started with a decision to introduce a new IT platform, and ended in a disaster that left TSB customers locked out of their accounts, experiencing problems such as zero balances, incorrect currencies, and massively inflated mortgage amounts.
2018-05-07
310 reads
2018-05-07
75 reads
2018-05-04
144 reads
There are always reasons to upgrade or avoid upgrading to a new version. Steve Jones has a few thoughts.
2018-05-03
66 reads
There's a sale on the price of SQL Server for Linux and Steve wonders if people will move.
2018-05-02
68 reads
Steve likes that idea of auto deleting data, especially with legislation increasing.
2018-05-01
97 reads
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...
By Vinay Thakur
RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...
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