Serious Hacking
The biggest government hack ever occurred recently. At least until the next one happens.
2019-03-19 (first published: 2015-10-20)
300 reads
The biggest government hack ever occurred recently. At least until the next one happens.
2019-03-19 (first published: 2015-10-20)
300 reads
Bad managers are everywhere, but we can improve and help them with some ideas from other companies. That's if we, as an organization, value our staff.
2019-03-21 (first published: 2015-10-19)
285 reads
Phil Factor on learning from mistakes. Preferably other people's.
2015-10-19
137 reads
Uncovering how the data 'works' in a business is harder than you might think. You can't get this knowledge second-hand from the IT department. You have to speak to the business at large. However, many people are fearful of the 'bod from IT' and the change that their IT initiatives will bring.
2015-10-12
125 reads
There is a world of difference between technology originating in or designed for the cloud and technology that predates but can run in the cloud.
2015-10-12
125 reads
Today we have a guest editorial from Andy Warren that looks at the way some companies look to hire new workers.
2015-10-09
192 reads
2019-03-28 (first published: 2015-10-07)
176 reads
2015-10-06
211 reads
Security alerts and concerns are serious, but that doesn't mean that everyone will treat them that way.
2015-10-05
91 reads
Poor patterns and practices are code smells. Steve Jones notes we have plenty in T-SQL.
2023-03-22 (first published: 2015-10-05)
565 reads
By Vinay Thakur
RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...
By Vinay Thakur
Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...
By Vinay Thakur
Continuing from Day 5 where we covered notebooks, HuggingFace and fine tuning AI now...
Comments posted to this topic are about the item Not Just an Upgrade
Comments posted to this topic are about the item Restoring On Top I
Comments posted to this topic are about the item Designing Delta Tables with Liquid...
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