2020-10-30
104 reads
2020-10-30
104 reads
I heard someone at the 2020 DevOps Enterprise Summit conference say that quality needs to be built in. That's something that many, or hopefully most, of us believe. Everyone ought to do quality work and build it into their daily tasks. However, the person speaking went further and defined this in a way I like: […]
2020-10-29
189 reads
2020-10-28
162 reads
IBM is breaking up and Steve thinks back about the evolution of the company and where they might go from here.
2020-10-27
114 reads
SQL Server shares some data with Microsoft, but the use is documented. Steve sees this as a model for how companies might share information.
2020-10-26
250 reads
The term DevOps gets horribly abused. Don’t get me started on all the weird additions to it like DevSecOps. No, I just mean the term itself gets beaten up quite a lot. It’s to the point where people are starting to shy away from talking about it. I’ve even changed my approach when discussing DevOps […]
2020-10-24
167 reads
How much do you love technology? Is this reflected in a budget? Let us know this week.
2020-10-23 (first published: 2016-10-21)
150 reads
Today we have a guest editorial from Alice Smith as Steve is away. Conflict can be good in a highly functional team, as noted today from the manager of the publishing group at Redgate Software.
2020-10-22 (first published: 2016-10-13)
192 reads
Steve Jones looks a little more closely at the Azure SQL Data Warehouse, perhaps a viable choice for many of us.
2020-10-21 (first published: 2016-07-14)
278 reads
Today we have a guest editorial as Steve is out of town at the PASS Summit. Grant looks at disasters and being prepared.
2020-10-20 (first published: 2016-10-24)
236 reads
By HeyMo0sh
In the realm of software development and content creation, the deployment pipeline serves as...
By Vinay Thakur
I wrote about TempDB Internals and understand that Tempdb plays very important role on...
Comments posted to this topic are about the item A Quick Restore
Comments posted to this topic are about the item Guarding Against SQL Injection at...
I have a quick question on Ola Hallengren Index Optimize Maintenance . Do we...
While doing some testing of an application, I wanted to reset my environment after doing some testing with this code:
USE DNRTest BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO /* Bunch of stuff tested here */RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens if this runs, assuming the "bunch of stuff" isn't anything affecting the instance. See possible answers