Rethinking Your Design
This week Steve Jones notices some good advice from Brent Ozar and the fastest query in your database.
2013-02-11
225 reads
This week Steve Jones notices some good advice from Brent Ozar and the fastest query in your database.
2013-02-11
225 reads
This past weekend was the first SQL Saturday in New Mexico. I had written about our trip down last week,...
2013-02-11
1,070 reads
I’ve never felt the need to allow this, but I saw someone ask the questions recently. Suppose you had a...
2013-02-08 (first published: 2013-01-28)
2,564 reads
Steve Jones is up in the Redmond area at Microsoft's HQ looking for SQL Server developers. This editorial was originally published on April 17, 2008. It is being re-published as Steve is on holiday.
2013-02-08 (first published: 2008-04-17)
679 reads
2013-02-08
2,083 reads
IBM is sending a Watson supercomputer to college. We don't know what will happen with this experiment, but it is exciting for those of us looking forward to interacting more with computers in the future.
2013-02-07
105 reads
2013-02-07
2,335 reads
Data Journalism is a new idea that is bringing us a new way of reporting on the world. Steve Jones thinks this might be useful inside of all kinds of organizations.
2013-02-06
94 reads
Last week I noted that I was speaking at the new SQL Intersection event. Hopefully I’ll see some of you...
2013-02-05
888 reads
There are a lot of advantages for small companies in using cloud services, but is that the case for large IT groups? Steve Jones has a few thoughts.
2013-02-05
174 reads
By HeyMo0sh
In my experience, FinOps success has never been just about tools or dashboards. It...
By HeyMo0sh
As a DevOps person, I know that to make FinOps successful, you need more...
By HeyMo0sh
As someone who works in DevOps, I’m always focused on creating systems that are...
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