SQL Saturday 58 This Week #sqlsat58
Don’t forget the Minnesota SQL Saturday is this Friday. Remember, we’re DIFFERENT and out event is on a Friday instead...
2010-10-25
578 reads
Don’t forget the Minnesota SQL Saturday is this Friday. Remember, we’re DIFFERENT and out event is on a Friday instead...
2010-10-25
578 reads
Only 3 more weeks until the PASS Summit and it’s time for another countdown post. I’ve done a few of...
2010-10-23
751 reads
Let’s Anaylze An Index!We’ve got through the first three parts of this continued series on the Index Analysis query last...
2010-10-22
615 reads
Wow! Minnesota’s SQL Saturday event is next week already. We still have a lot to do to be ready. Some...
2010-10-22
558 reads
Conference Time! The SSWUG Fall 2010 Virtual Conference is starting today. It’ll go on from today through Friday – if might...
2010-10-20
578 reads
Conference Time! The SSWUG Fall 2010 Virtual Conference is coming up this week. On October 20-22, you can attend a...
2010-10-18
562 reads
There are now 4 weeks until the PASS Summit and a few times now I’ve discussed ( 1, 2, 3 ) some...
2010-10-14
776 reads
Missing NumbersToday a developer came up to me and wanted help solving a problem he was running into with a...
2010-10-13
1,056 reads
Let’s Anaylze An Index!Time for part three of my continued Index Analysis query. The previous posts in this series are:...
2010-10-13
972 reads
Project PhoenixSometime people need a hand up – an opportunity to rise from the ashes. Over the last couple of years...
2010-10-09
891 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...
Fare Labs' shelf life testing facility has been accredited by the NABL. The best...
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...
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