Windows 7 v the iPad
No, I didn’t buy an iPad, but I have to say on a trip to the Apple Store this week...
2010-04-30
2,104 reads
No, I didn’t buy an iPad, but I have to say on a trip to the Apple Store this week...
2010-04-30
2,104 reads
For this Friday poll, Steve Jones talks about an interesting concept. The "stay interview."
2010-04-30
383 reads
Someone asked an interesting question recently. If they had this code:
if OBJECT_ID('aa') is not null
drop table aa
create table...
2010-04-29
2,225 reads
Are you worried about man in the middle attacks on your database server? If you run Oracle you should be, but SQL Server DBAs should not assume they are safe. Adding communication encryption can be a good idea for SQL Server DBAs.
2010-04-29
289 reads
From the PASS 2010 Summit Survey: 29% of people want a presentation on backup compression. OK, here it is.
Turn it...
2010-04-28
2,368 reads
Steve Jones feels that we ought to get regular service packs from Microsoft to support SQL Server. Not everyone agrees. Do you?
2010-04-28
105 reads
When building a new database or system, are you designing concrete code? Should you be? Steve Jones comments on matching your needs with your architecture.
2010-04-27
192 reads
Tia thinks I’m crazy to book early, but I like to have a choice of flights, and I like to...
2010-04-27
779 reads
I hope there will be more surveys, so I’ll tag this as 2010. The results were released recently, and there...
2010-04-27
2,191 reads
Are SQL Saturdays falling from the sky? (from Jen McCown, @midnightDBA)
I think so. This past weekend had three events, #39...
2010-04-26
753 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