2005-12-07
1,272 reads
2005-12-07
1,272 reads
Slowly reworking my professional site at http://www.truthsolutions.com/
but as of right now it's more of a brochure site than anything else....
2005-11-30
1,286 reads
SQL Server MVP Erland Sommarskog has announced
a name change to MSSQL::OlleDB. It's now known as Win32::SQLServer.
This is to bring it...
2005-11-27
1,342 reads
Looked over at the Apex SQL site and noticed they released a new
version of ApexSQL Edit last weekend. I went...
2005-11-26
1,509 reads
In writing an article for SQL Server Standard's January issue, I received a tech edit comment from Adam Machanic
about a...
2005-11-25
1,491 reads
Visual Studio has spoiled me. I love the Intellisense feature that has continued to evolve with each new edition of Microsoft's...
2005-11-25
1,517 reads
Writing at article for SQL Server Central tends to be a very rewarding
experience. Every chance I get, I encourage others...
2005-11-25
1,491 reads
The following announcement came out this morning on the Annouce mailing list for MySQL:
"MySQL Connector/Net 1.0.7, a new version of...
2005-11-21
1,631 reads
David Litchfield has put out a brief (as
he says it, "It's called a brief because there's enough meat to make...
2005-11-19
1,402 reads
There has been some talk on Google Base on the Full Disclosure security
list. I've also seen on another blog about...
2005-11-19
1,393 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