Pimp My Data Center
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
2008-08-03
60 reads
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
2008-08-03
60 reads
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
2008-08-03
97 reads
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
2008-08-03
67 reads
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
2008-08-02
75 reads
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
2008-08-02
531 reads
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
2008-08-02
69 reads
I'm tech editing a book on Full-Text Search for SQL Server 2008 and the last few weeks have been quite...
2008-08-01
1,288 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-08-01
152 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-07-31
62 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-07-31
64 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...
I’m starting a webinar series about SQL Server indexing with the fine folks of...
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