PASS Summit 2009 – Day -1
The official start date for the summit is Tuesday, but trust me, everything kicked off on Sunday when registration opened....
2009-11-02
363 reads
The official start date for the summit is Tuesday, but trust me, everything kicked off on Sunday when registration opened....
2009-11-02
363 reads
As if I needed more.
I’ll be sitting at the blogger table and blogging live (as live as I get) during...
2009-10-30
1,388 reads
2009-10-28
576 reads
Running the Profiler GUI against a production server is not something you should do. I’ve outlined my research into exactly...
2009-10-28
878 reads
It’s alive! It’s alive!
That’s enough from Colin Clive.
It’ll be out for the Summit. SQL Server Standard lives again! Although, not quite in...
2009-10-27
699 reads
It’s just a week and a couple of days before I’ll be hopping a plane for Seattle and the 2009...
2009-10-23
582 reads
No, I’m not talking about a Dickens novel. I’m talking about the number of characters in a string. I had...
2009-10-21
1,639 reads
Quest Connect 2009 is occurring even as I type this. Get on over there if you’re interested in some free...
2009-10-21
502 reads
The PASS Summit agenda is shaping up and it’s already looking to be much busier than last year. The latest...
2009-10-21
553 reads
The Southern New England SQL Server Users Group’s October meeting was a bit sparsely attended with 7 attendees. The sponsor...
2009-10-15
704 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