Do You See What I See?
Working with developers is always very interesting, especially when you are a client. I'm sure that I'm not the best...
2007-08-21
1,410 reads
Working with developers is always very interesting, especially when you are a client. I'm sure that I'm not the best...
2007-08-21
1,410 reads
2007-08-21
1,262 reads
2007-08-20
3,033 reads
2007-08-17
1,646 reads
2007-08-16
1,285 reads
2007-08-15
2,109 reads
I live in Denver. That's in the Mountain time zone, either MDT or MST depending on the time of year,...
2007-08-14
1,428 reads
I've posted in the forums fairly often that there's kind of a black art to performance tuning. As with most...
2007-08-14
1,454 reads
2007-08-14
1,442 reads
2007-08-13
2,577 reads
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
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...
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