SQL Server 2008 R2 Released to Manufacturing
Microsoft scheduled a conference call this morning, and I jumped on since I was laid up in bed with a...
2010-04-21
1,691 reads
Microsoft scheduled a conference call this morning, and I jumped on since I was laid up in bed with a...
2010-04-21
1,691 reads
A funny example of SQL Injection has Steve Jones reminding us that every application needs to protect itself.
2010-04-20
371 reads
I feel like I have some bad digital karma lately. In the past week I’ve had these downed systems:
iPod iTouch...
2010-04-20
645 reads
You can only have one mirror of a SQL Server database in SQL Server 2005/2008. I researched that last year...
2010-04-19
644 reads
A change in the support policy from Microsoft is a good thing, Steve Jones notes. Now you can still get help if you haven't been applying service packs.
2010-04-19
44 reads
Quite a few new SQL Saturday events were announced recently in Louisville, Phoenix, and Raleigh.
2010-04-19
894 reads
With so many people looking at virtualizing their environments, it's easy to assume it's easy to get done. Steve Jones, however, points out some advice from a very performance oriented company: the NYSE.
2010-04-19
424 reads
Is there something that your company could do for you that would show that they valued your employment? That you were somehow important to them? Answer this Friday's poll.
2010-04-16
306 reads
The RTM date is out for SQL Server 2008 R2. At the UK Tech Days it was released as May...
2010-04-16
624 reads
One of my 2010 goals is to really increase my SSRS knowledge. I’ve used SSRS in a cursory manner over...
2010-04-15
692 reads
By Brian Kelley
If your organization is spending money, then meaningful results are a must. Pen testing...
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...
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