After Six Months On The Job What Challenges Remain?
Today we have a guest editorial from Andy Warren that asks what you might do when you get settled at a new job.
2018-06-19 (first published: 2015-04-10)
240 reads
Today we have a guest editorial from Andy Warren that asks what you might do when you get settled at a new job.
2018-06-19 (first published: 2015-04-10)
240 reads
Equipment can matter for IT professionals. Read a few thoughts from Andy Warren.
2017-09-07
66 reads
Today we have a guest editorial from Andy Warren that talks about auditing your organization.
2017-03-10
101 reads
Today we have a guest editorial that asks what you might do if you knew a hacker was coming after your organization.
2017-02-15
119 reads
Today we have a guest editorial from Andy Warren that looks at how we might divvy up our workload in a company.
2016-11-18
87 reads
Today we have a guest editorial from Andy Warren as Steve is on vacation. Andy talks about a trip to Microsoft for the SQL Server 2016 launch.
2016-08-12
149 reads
Today we have a guest editorial from Andy Warren that looks at the decision to leave a job. Or not.
2016-05-26
157 reads
Today we have a guest editorial from Andy Warren as Steve is away. Andy tries to define what a DBA really does in a way that might make sense to others.
2016-05-03
322 reads
Today we have a guest editorial from Andy Warren that asks if the rest of you are intimidated by PowerShell.
2016-03-30
190 reads
Today we have a guest editorial from Andy Warren that looks at the respect, understanding and compromise we might make with each other.
2016-03-21
110 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