Traveling More Than Expected
For a guy that was looking to not travel much, it seems that I’ve got way more on my plate...
2012-03-09
1,019 reads
For a guy that was looking to not travel much, it seems that I’ve got way more on my plate...
2012-03-09
1,019 reads
First, only support Women in Technology if you want to. It’s an idea that appeals to some, but not to...
2012-03-09
957 reads
Steve Jones likes Service Broker as a scale out technology, but it hasn't caught on. He thinks more people should take a look at this technology and implement it in places where it fits well.
2012-03-08
186 reads
If you create your own certificate in SQL Server, you need to make sure that you back it up immediately....
2012-03-07 (first published: 2012-02-27)
10,721 reads
Does data have gravity? Will the law affect how applications are built and deployed? Steve Jones has a few thoughts.
2012-03-07
140 reads
Filestream is a cool feature, albeit one that’s cumbersome to use in SQL Server 2008 and R2. However the FileTable...
2012-03-07
3,643 reads
I had an exchange with someone that had plagiarized some work recently. That’s nothing new, and I run into plagiarism...
2012-03-06
1,204 reads
Today we have an editorial originally published on Mar 13, 2007 that is being re-run as Steve is on vacation. This one looks at all the world's data.
2012-03-06
194 reads
Today Steve Jones talks about code scanning and the analysis that tools can do for us today.
2012-03-05
200 reads
I have written about creating a certificate and backing up a certificate, and the next step is the restoration of...
2012-03-05
20,128 reads
By Steve Jones
I come to Heathrow often. Today is likely somewhere close to 60 trips to...
By Brian Kelley
If your organization is spending money, then meaningful results are a must. Pen testing...
By HeyMo0sh
In my experience, FinOps success has never been just about tools or dashboards. It...
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