2001-06-04
2,738 reads
2001-06-04
2,738 reads
Review of the MeasureUp test preparation serivce actually used by the author for the SQL Server 7 Design exam(70-029).
2001-05-31
3,520 reads
You know it is time to reassess your relationship with
your computer when....
2001-05-28
1,608 reads
2001-05-25
4,002 reads
2001-05-23
2,181 reads
VMWare is a software product that is great for testing new ideas without having to purchase and install a separate machine.
2001-05-21
4,345 reads
A review of the SQL Server 2000 Black Book from the Coriolis Black Book series.
2001-05-18
4,612 reads
These are some stories that show the downside of everyone having cell phones.
2001-05-16
1,814 reads
There is a web site devoted to humorous tales from the tech
support field. Check out these samples and submit your own.
2001-05-15
1,233 reads
2001-05-15
1,918 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