A Long Overdue Database Security Rant
I've been dealing with a security product from a security company in recent days that breaks best practices with respect...
2008-01-30
2,302 reads
I've been dealing with a security product from a security company in recent days that breaks best practices with respect...
2008-01-30
2,302 reads
The Windows Server Performance Team has published part 2 of troubleshooting memory issues.
This one covers excessive paging and memory...
2008-01-29
1,669 reads
Microsoft and Seagate have partnered togethered to put together an IT Heroes comic (daily even). The first one is here:
...
2008-01-29
1,562 reads
I know I'm not the first in the SQL Server community to post this, but Ken Henderson has passed away...
2008-01-29
1,909 reads
The new version of Metasploit is out. Included is a GUI interface. It's a complete re-write in Ruby (note to...
2008-01-28
1,513 reads
First saw this off of Planet MySQL:
New Vendor Neutral Database Certification (Dave's Stuff)
Following the link to the CIW site, there...
2008-01-28
2,868 reads
Citrix is changing the name of its flagship product from Citrix Presentation Server (CPS) to XenApp. More from the blogosphere:
Citrix...
2008-01-28
1,990 reads
Saw this first on Aaron Stebner's blog:
.NET Framework 3.5 deployment guides have been published on MSDN
Guidance information for both...
2008-01-28
1,559 reads
This one is geared towards IT management:
IT Manager Webcast: Dynamic IT and Security (Part 4 of 5): Identity and Access...
2008-01-28
1,651 reads
On the Microsoft Data Platform Insider blog, there is a post indicating new roadmap dates:
Microsoft SQL Server 2008 Roadmap...
2008-01-25
1,642 reads
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...
I’m starting a webinar series about SQL Server indexing with the fine folks of...
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