2015-01-23
374 reads
2015-01-23
374 reads
Technology shouldn't just be a cost sink in an organization, at least that's what Steve Jones thinks.
2015-01-22
116 reads
There's one word that can make a difference in how much you like your job. Steve Jones has a few thoughts today.
2015-01-21
222 reads
With so many companies looking at other platforms, when should an organization consider changing their database? Steve Jones has a few thoughts.
2018-11-08 (first published: 2015-01-20)
254 reads
Steve Jones talks about procrastination today and how you might not want to do that with your SQL Servers.
2015-01-19
112 reads
We database developers would, of course, like easy access to all the .NET delights, such as the excellent Regex library, but we don't want a Do-It-Yourself kit to achieve this. So argues Phil Factor.
2018-12-12 (first published: 2015-01-19)
458 reads
This week we have a more technical poll as Steve Jones wonders how you best debug your T-SQL code.
2019-05-27 (first published: 2015-01-16)
465 reads
Perspective makes a big difference and Steve Jones looks at how you might change the way you think about clients, customers, and the work you do.
2015-01-15
142 reads
Hadoop is a technology that's getting quite a bit of attention in the last few years, including integration with SQL Server. Steve Jones talks about the technology and how it might fit in your career.
2015-01-14
679 reads
We know that software testing is important, but we often don't do a great job of executing. Steve Jones talk database testing today.
2015-01-13
222 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