StreamInsight
This is one of my favorite technologies for SQL Server 2008 R2. This session was from Torsten Grabs, the program...
2010-06-07
2,108 reads
This is one of my favorite technologies for SQL Server 2008 R2. This session was from Torsten Grabs, the program...
2010-06-07
2,108 reads
It’s a zoo.
Once again wifi sucks, sitting in the keynote room, unable to join the wireless network and get a...
2010-06-07
353 reads
I didn’t think that multitasking was a big deal for my iPhone when I got it. I’d had it on...
2010-06-04
652 reads
I’m leaving today for SQL Saturday #22 in Pensacola, FL. I’ll be there tonight and tomorrow, leaving Sun morning for...
2010-06-04
356 reads
In Pensacola, the Hampton Inn, and bandwidth sucks. I remember this from last year. Adding a few notes to my...
2010-06-04
348 reads
Today Steve Jones talks about revisiting your design and perhaps thinking about buying another edition of SQL Server to take advantage of some feature.
2010-06-03
124 reads
I found a cool series of scripts from Jeremiah Peschka on getting disk space from SQL Server. They’re useful queries,...
2010-06-03
1,980 reads
The T-SQL Tuesday party #7 is coming next Tuesday, June 8th. Since it’s TechEd week, and I’ll be there along...
2010-06-03
390 reads
Working in an office was quite a change for Steve Jones recently. He comments today that it might be something you need to consider when hiring others as well.
2010-06-02
173 reads
I was never a big fan of temp tables, mostly because there were serious contention issues in SQL Server v6.5....
2010-06-02
1,009 reads
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
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...
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