2005-09-23
1,680 reads
2005-09-23
1,680 reads
The September CTP of SQL Server 2005
is not available and I'm sure lots of people have downloaded it. I
actually grabbed...
2005-09-23
1,429 reads
Continuing with the humanization of the amazing team hard at work on SQL Server, Steve Jones takes a few minutes with Donald Farmer, BI guru.
2005-09-23
6,235 reads
Have you been burned by sysdepends at some point in your SQL Server DBA career? Steve Jones has many times, but a FREE new utility ends all that.
2005-09-22
9,830 reads
2005-09-22
2,499 reads
2005-09-20
1,429 reads
Surprisingly the DELL server showed up late Friday afternoon last week
when I was expecting more of a Wed-Thur delivery this...
2005-09-20
1,429 reads
2005-09-19
2,087 reads
Confidential until the official release at 9:00am Pacific Time today. Check back after that time to get the big news!
2005-09-14
18,980 reads
I setup an announcement for today (Sept 14) that the Sept CTP for SQL
Server 2005 was released and that Database...
2005-09-14
1,433 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