How SQL Server Full Backups Work
I’m writing this in support of a few talks I give that talk about backups. This is how I see...
2013-11-11
893 reads
I’m writing this in support of a few talks I give that talk about backups. This is how I see...
2013-11-11
893 reads
This Friday Steve Jones wants to know what do you want to learn more about in SQL Server? It's the end of the year, with lots of speakers winding down their events, but looking forward to next year. Let us know now what you'd like to learn about in 2014.
2013-11-08
127 reads
I’ve been wanting to do more with Powershell (PoSh). I’ve seen Allen White present on it for years, and I’ve...
2013-11-07
1,407 reads
Today Steve Jones talks about the Hekaton features that are coming in SQL Server 2014.
2013-11-06
313 reads
What does this mean? I had someone ask me in a session recently, and I think I have a good...
2013-11-06
1,100 reads
2013-11-06
1,680 reads
The interface is crucial for getting data in and out of a system. Steve Jones talks a little about past interfaces and possible future ones.
2013-11-05 (first published: 2009-04-23)
298 reads
2013-11-05
2,206 reads
This Friday's poll looks at the encryption options for your code in SQL Server. Steve Jones asks if there is a benefit for these routines.
2013-11-04 (first published: 2009-04-10)
628 reads
Testing matters for software and Steve Jones points out a current example of where cutting testing has caused lots of problems.
2013-11-04
96 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