Guilty of Over-Customising
Am I guilty of over-customising software? Read this and let us know what you think.
2017-06-12
106 reads
Am I guilty of over-customising software? Read this and let us know what you think.
2017-06-12
106 reads
2023-05-12 (first published: 2017-06-09)
326 reads
SQL Server is becoming more capable all the time, requiring fewer human resources for basic management.
2017-06-08
89 reads
2017-06-06
99 reads
I don’t doubt for a minute that on a certain level you’re sick to death of people talking about the Wanna Cry ransomware. However, bear with me, we need to go through it just a little more because it actually has some bearing on us as data professionals. OK, more than some bearing, it’s a […]
2017-06-05
190 reads
2017-06-05
80 reads
Today Steve Jones talks presentations, specifically the best way to share information on a projector.
2017-06-02
172 reads
Steve Jones asks software developers to consider the issues we may have with lax internal security.
2017-06-01
89 reads
Data storage is something all data professionals need to care about, and today Steve Jones talks about a research project from Microsoft.
2017-05-31
103 reads
2017-05-30
56 reads
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...
By Vinay Thakur
Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...
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
Comments posted to this topic are about the item Restoring On Top I
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