Google Scale
Not many of us work at Google scale, where every little thing you do can matter. However Steve Jones thinks that the little things still matter when you are building software.
2010-11-16
231 reads
Not many of us work at Google scale, where every little thing you do can matter. However Steve Jones thinks that the little things still matter when you are building software.
2010-11-16
231 reads
I’m traveling to New York City on Friday for SQL Saturday #59 and returning Sunday morning. As soon as I...
2010-11-16
800 reads
I get asked this question fairly often. How do I find time to write so much, work on SQL Server,...
2010-11-15
999 reads
Steve Jones outlines some ways that you might look to get additional training that can help move your career along.
2010-11-15
3,704 reads
We have to provide security for our data, and to some extent that means verifying who has access. SQL Server has limited means for doing this other than relying on the OS, but Steve Jones has some ideas on how to make this more secure.
2010-11-15
137 reads
This past week saw the next version of SQL Server, code named Denali, released as a public CTP. Steve Jones comments on the new version.
2010-11-15
326 reads
This is a great sign. I see if every time I go to Brother’s BBQ in Denver and it never...
2010-11-12
770 reads
This Friday Steve Jones talks about database design and specifically asks how you prefer to design triggers.
2010-11-12
887 reads
You can get a look into how SQLServerCentral handles the load of it's database servers with a new tool, and release of reports.
2010-11-11
352 reads
The SQL Rally pre-conference sessions were announced today, and congratulations to the winners. They are:
Business Intelligence Workshop - Patrick LeBlanc, Devin...
2010-11-11
859 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