T-SQL Tuesday/Wednesday #21: A Crappy Workaround
A long time ago (in IT terms) in a galaxy far, far away I was helping an organization with a...
2011-08-10
2,065 reads
A long time ago (in IT terms) in a galaxy far, far away I was helping an organization with a...
2011-08-10
2,065 reads
There are a few posts and articles around the security-scape lately concluding Windows 7 is more secure than OS X,...
2011-08-09
811 reads
My primary responsibility at my organization is no longer to be the security architect and incident response team lead. I...
2011-08-08
950 reads
I'm always wary of contests to win free stuff, but the folks running MSSQLTips.com are legitimate (I write there as...
2011-08-04
1,043 reads
I grew up immersed in security. My father was a US Marine and going on and off base meant... security....
2011-08-03
1,232 reads
We recently ran into a case where connecting to a Windows Server 2003 server with SQL Server installed on it,...
2011-08-02
15,668 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-28
2,177 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-25
1,061 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-22
1,371 reads
In a previous post I gave suggestions on how to get speaking credentials for consideration at a larger event, such...
2011-07-21
940 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