Who is the best person for the job?
Sometimes it is hard to admit that you are not the best person for the job that is presented to you.
2020-04-09
116 reads
Sometimes it is hard to admit that you are not the best person for the job that is presented to you.
2020-04-09
116 reads
Today we have a guest editorial from Ben Kubicek as Steve is away from the office. It is hard to be humble, but it is needs to learn something new.
2019-11-27 (first published: 2016-11-07)
476 reads
The point of this article is that only service accounts and/or specific network sql admin accounts should have sysadmin rights.
2019-03-11
1,532 reads
2019-01-07
138 reads
2018-11-15
701 reads
In larger shops with multiple database servers, it is very important to have consistency.
2018-10-12
163 reads
It is important to train new people, so what is the best way to go about doing it?
2018-09-06
365 reads
When we risk failure, we also have the opportunity for success, so try something new today.
2018-08-30
83 reads
In many ways job titles matter, just not when telling a stranger what you do for work.
2018-07-30
458 reads
Normalization is important for relational databases, but sometimes too much of a good thing can be bad.
2018-07-23
2,466 reads
By HeyMo0sh
As a DevOps person, I know that to make FinOps successful, you need more...
By HeyMo0sh
As someone who works in DevOps, I’m always focused on creating systems that are...
By Brian Kelley
I am guilty as charged. The quote was in reference to how people argue...
Comments posted to this topic are about the item Restoring On Top II
Comments posted to this topic are about the item SQL Art 2: St Patrick’s...
Comments posted to this topic are about the item Breaking Down Your Work
I have a database, DNRTest, that has a number of tables and other objects in it. The other day, I was trying to mock up a test and ran this code on the same server:
-- run yesterday CREATE DATABASE DNRTest2 GO USE DNRTest2 GO CREATE TABLE NewTable (id INT) GOToday, I realize that I need a copy of DNRTest for another mockup, and I run this:
-- run today USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO RESTORE DATABASE DNRTest2 FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens? See possible answers