Lots of Security Concerns
This past week saw lots of security concerns, especially around data. Steve Jones has a few comments about the implications.
2014-05-05
103 reads
This past week saw lots of security concerns, especially around data. Steve Jones has a few comments about the implications.
2014-05-05
103 reads
When building a system, you need to make choices. However, do you always need to make the choice of only two of the three "good, fast, or cheap" choices? Andy Warren has a few thoughts.
2014-05-05
206 reads
What would build if you had time? Anything fun or interesting? What's on your mind if you're a maker?
2014-05-02
134 reads
2014-05-01
83 reads
2014-04-30
839 reads
There's a push to the cloud from Microsoft, and Steve Jones has a few thoughts. Have you warmed up to the cloud at all?
2014-04-29
170 reads
Trying to take the time to fix sub-par processes has some surprising parallels in nature.
2014-04-28
174 reads
We always want to follow the best, or at least good, practices for software development. However do you know what those are? Steve Jones notes there's at least one that isn't often followed.
2017-11-02 (first published: 2014-04-24)
384 reads
The MCM certification program has been abandoned by Microsoft. Steve Jones thinks the material can still be useful for the community.
2014-04-23
252 reads
How can you perform due diligence on new employees? There are a variety of ways, but Steve Jones has an idea that might help you nudge a potential employer in the direction you want them to move.
2014-04-22
414 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