Philosophy on Soldiering
This is taken from the book About Face:The Odyssey of an American Warrior.
The author is Col. David "Hack" Hackworth, one...
2006-01-01
1,410 reads
This is taken from the book About Face:The Odyssey of an American Warrior.
The author is Col. David "Hack" Hackworth, one...
2006-01-01
1,410 reads
If you haven't heard by now, there is an unpatched exploit in how
Windows handles WMF files. Since this handling is...
2005-12-28
1,434 reads
2005-12-28
1,220 reads
2005-12-20
1,239 reads
Saw this at the book store this evening and picked it up.
SQL Server 2005 Administrator's Pocket Consultant
I'll spend the...
2005-12-18
1,494 reads
This is one of those "bang head here" issues. I was trying to install
Net::SSH::Perl, which basically drives SSH through Perl,...
2005-12-16
1,794 reads
In a community the size of SQL Server Central, it's natural for people
to come and go, especially with contributions to...
2005-12-15
1,324 reads
2005-12-14
1,358 reads
Had a need for this the other day. We just needed a quick dump of which
drives each database was using....
2005-12-09
1,370 reads
I saw this first on Karen Watterson's blog. Microsoft has released an update to SQL Server 2005's Books Online:
Download
A quick...
2005-12-07
1,461 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