Version Restores
I saw a question today on restoring a SQL Server 7 backup to SQL Server 2005, and I wasn't sure...
2008-12-19
665 reads
I saw a question today on restoring a SQL Server 7 backup to SQL Server 2005, and I wasn't sure...
2008-12-19
665 reads
2008-12-19
3,755 reads
I missed the November Car update, but I was too busy with the PASS Summit to get one done.
However last...
2008-12-18
663 reads
Hollywood does a great job of showing off technology that might be possible someday. This Friday Steve Jones wonders what amazing computer you'd like to have.
2008-12-18
563 reads
Hollywood does a great job of showing off technology that might be possible someday. This Friday Steve Jones wonders what amazing computer you'd like to have.
2008-12-18
568 reads
Hollywood does a great job of showing off technology that might be possible someday. This Friday Steve Jones wonders what amazing computer you'd like to have.
2008-12-18
797 reads
You might think it's the e-ink screen. It's not.
You might think it's the ability to carry around hundreds of books...
2008-12-17
862 reads
I saw this blog from Jeffrey Yao on investing in your career, and thought it would be a great editorial....
2008-12-16
818 reads
I remember when each of my boys started to read a lot. There was a time when both of them...
2008-12-16
767 reads
Steve Jones talks a bit about the value of learning for DBAs and other IT professionals.
2008-12-16
477 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...
By HeyMo0sh
In my experience, FinOps success has never been just about tools or dashboards. It...
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