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
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 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
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
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
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
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
I saw this in my blog reader today:
You can pre-order the Kalen Delaney SQL Server Internals Course - Lesson 1 DVD...
2008-01-25
1,073 reads
By DataOnWheels
The T-SQL Tuesday topic this month comes James Serra. What career risks have you...
This T-SQL Tuesday is hosted by the one and only James Serra – literally...
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
Hi, ssms is free here. I can think of other reasons to do this...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers