Technology in Schools
There's an interesting series about technology in schools in Milwaukee
(part
1, part
2, and part
3) and it inspired me to an edditorial...
2005-08-24
1,812 reads
There's an interesting series about technology in schools in Milwaukee
(part
1, part
2, and part
3) and it inspired me to an edditorial...
2005-08-24
1,812 reads
We had a major out of memory error on ASP.NET this morning and I woke
up to a few dozen messages...
2005-08-23
1,379 reads
The top ten MS blogs were
listed in Redmond magazine and two were SQL Server guys. I do get quite
a few...
2005-08-19
1,380 reads
the more I'm sure that I'm getting dumber with SQL Server.
This week I've been working on some QODs based...
2005-08-09
1,356 reads
I scan about 30 or 40 blogs these days, all from various SQL Server
people around the globe, and enter the...
2005-08-08
1,454 reads
I got asked by someone to technically review their SQL Server 2005
book, so I'm betting that there will be lots...
2005-08-05
1,452 reads
Interesting post by Andy Leonard.
I'll add in my two cents that you should seek happiness and
satisfaction in your job. I...
2005-07-29
1,519 reads
for a week. I'm leaving for vacation and leaving SQLServerCentral.com
in the capable hands of Andy. He'll be sending out some...
2005-07-15
1,388 reads
If you are interested in helping to organize or be a part of an
official Professional Association of SQL Server chapter...
2005-07-15
1,401 reads
A couple of days ago I noticed that the index rebuild for the search
engine was failing at night. In line...
2005-07-14
1,477 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