How Far are You Willing To Go To Get Something?
There are important things in life and in our career, how far are you willing to go to get them?
2017-10-30
112 reads
There are important things in life and in our career, how far are you willing to go to get them?
2017-10-30
112 reads
It is important to have people that do good work and are good to work with.
2017-10-17
96 reads
2017-09-05
311 reads
Team building isn't easy, but important for people to work together well.
2017-07-11
66 reads
When faced with repetitive tasks how do you go about doing them in a focused timely manner?
2017-05-11
151 reads
It takes a creative mind to come up with new ideas. So how do you do it?
2017-04-21
110 reads
This article explores aspects of a job that help one feel satisfied at work.
2017-04-10
98 reads
This article explores the author's way of making big decisions.
2017-04-04
72 reads
2017-01-05
83 reads
I have seen three common responses to database messes. My favorite is nuclear.
2016-12-06
264 reads
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...
By Steve Jones
Learn how to tie a bowline knot. Practice in the dark. With one hand....
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