Culture Clashes and Arrogance
A guest editorial from Andy Warren looks at the disagreements between teams in technology.
2015-06-17
203 reads
A guest editorial from Andy Warren looks at the disagreements between teams in technology.
2015-06-17
203 reads
Today's guest editorial by Andy Warren is more of a movie plot than reality, but perhaps it's worth considering.
2015-04-06
135 reads
Today we have a guest editorial from Andy Warren where he looks back at how things have changed.
2015-03-23
123 reads
Learning opportunities abound, but they can be stressful, as shown in today's guest editorial.
2015-03-09
262 reads
Today we have a guest editorial from Andy Warren that looks at the upgrade cycle and how that affects our jobs.
2015-03-06
134 reads
Today we have a guest editorial from Andy Warren with a few hints on how you can continue to be proactive as a DBA.
2015-02-05
200 reads
Today Andy Warren talks about an employee work item that many of you might not be tasked with.
2014-12-22
143 reads
In a followup to his previous piece, Andy Warren looks at job titles again and they can affect the people he works with.
2014-09-05
192 reads
2014-08-08
267 reads
SQL Server is a complex product and many of us work with only a small part of the product. However many of us will have exposure to quite a few features inside of the platform. Today Andy Warren asks you if there is some feature that's harder than others.
2014-07-18
525 reads
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
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...
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