2020-12-29
251 reads
2020-12-29
251 reads
Today Steve looks at the career paths that might, or might not, exist inside an organization.
2020-12-28
243 reads
There are plenty of opportunities to grow your career by sharing knowledge. Steve points out a few today.
2020-12-17
137 reads
Today is a day for reflections in Steve's life, looking back at the incredible year of 2020.
2020-12-11
107 reads
The annual Advent of Code challenge is underway, and you can use it to help grow your career.
2020-12-08
227 reads
Today Steve notes that we often don't have all the knowledge or information we need, but we can work to acquire it.
2020-12-07
104 reads
2020-11-25
70 reads
Steve asks what you might want to achieve or accomplish in your career.
2020-10-16
239 reads
Is going to a conference valuable for you? Your employer? Today Steve asks you to think about what might be important.
2020-10-12
94 reads
I'm learning how to be a net controller for a high frequency (HF) radio network. Nets are a fun way to make lots of contacts quickly. Taking part in a net is simple. You check in with the net control and then you can answer calls or make calls (different nets have different rules). It's […]
2020-09-26
90 reads
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
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...
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