2012-02-28 (first published: 2010-10-20)
9,601 reads
2012-02-28 (first published: 2010-10-20)
9,601 reads
2012-02-23 (first published: 2010-10-13)
11,962 reads
2012-02-21 (first published: 2010-10-06)
9,432 reads
2012-02-16 (first published: 2010-09-29)
8,654 reads
2013-05-17 (first published: 2010-09-22)
11,245 reads
2012-02-09 (first published: 2010-09-15)
10,190 reads
2012-02-07 (first published: 2010-09-08)
9,754 reads
2012-02-02 (first published: 2010-09-01)
9,306 reads
2012-01-31 (first published: 2010-08-11)
9,250 reads
2012-01-26 (first published: 2010-08-04)
9,120 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