XP Struggles
My new laptop came with Vista Home and I messed with it for awhile last night, but I didn't see...
2007-12-24
1,459 reads
My new laptop came with Vista Home and I messed with it for awhile last night, but I didn't see...
2007-12-24
1,459 reads
My new laptop showed up today at my desk. Actually it probably showed up yesterday, but since I never went...
2007-12-23
1,536 reads
What would you recommend for the holidays next week when the office is closed.
2007-12-21
110 reads
Someone posted a question about what should they try to learn for an interview coming soon, but the company was...
2007-12-20
1,534 reads
2007-12-20
1,903 reads
Test data is critical to being sure your application works, but is production data ok to use in test environments?
2007-12-19
518 reads
Being a part of the community means that there are certain standards that we'd like you to adhere to. Steve Jones brings you a few reminders of how to behave when posting in the community.
2007-12-19 (first published: 2007-01-01)
3,143 reads
Who owns the data that we generate ourselves? It's not as easy to answer that as you think.
2007-12-18
54 reads
Usually I'm the one working on my podcasts and starring in them. However I got invited to participate in and...
2007-12-18
1,434 reads
2007-12-17
148 reads
By HeyMo0sh
As someone who works in DevOps, I’m always focused on creating systems that are...
By Brian Kelley
I am guilty as charged. The quote was in reference to how people argue...
By Steve Jones
Learn how to tie a bowline knot. Practice in the dark. With one hand....
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