HSA for Training
Is there a good way to ensure employees get trained? Steve has a few thoughts today on an idea that could help.
2019-12-03
182 reads
Is there a good way to ensure employees get trained? Steve has a few thoughts today on an idea that could help.
2019-12-03
182 reads
2019-11-23
1,881 reads
The period after a conference is a good time to start driving yourself forward.
2019-11-20
131 reads
2019-11-18
229 reads
Steve ends his week of career thoughts with a look at the job descriptions that we often use to decide if we want to apply for a job.
2019-11-15
278 reads
Today Steve talks about a new way of achieving some certification and education from Microsoft.
2019-11-13
267 reads
2024-05-15 (first published: 2019-11-12)
385 reads
The challenges of information overload can weigh on technology workers.
2019-10-30
200 reads
The decision to work for yourself instead of full time for an organization can be a hard one.
2019-10-28
365 reads
One skill that's useful to develop is the ability to learn things on your own. Often with a little help, but not too much.
2019-10-16
227 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