Celebration
Steve Jones reminisces a bit and comments on reaching one million members in the community.
2009-01-28
777 reads
Steve Jones reminisces a bit and comments on reaching one million members in the community.
2009-01-28
777 reads
Steve Jones reminisces a bit and comments on reaching one million members in the community.
2009-01-28
535 reads
2009-01-28
3,022 reads
I saw this book (It's Your Ship) in a Barnes and Noble and the title and cover attracted me. So...
2009-01-27
1,779 reads
With the start of a new year, Steve Jones gets back to the car updates with a look at winter driving and changes in the car industry.
2009-01-27
149 reads
The topic of plagiarism rears its head at SQLServerCentral and Steve Jones has some comments and an apology.
2009-01-27
537 reads
The topic of plagiarism rears its head at SQLServerCentral and Steve Jones has some comments and an apology.
2009-01-27
530 reads
The topic of plagiarism rears its head at SQLServerCentral and Steve Jones has some comments and an apology.
2009-01-27
805 reads
I had to go to the UK recently and took my Kindle along. I put some thought into my Kindle...
2009-01-26
1,552 reads
Would you want to have your pay docked for time spent rebooting? It seems some companies are trying to do just that.
2009-01-26
245 reads
By HeyMo0sh
In my experience, FinOps success has never been just about tools or dashboards. It...
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...
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