2019-03-28 (first published: 2015-10-07)
176 reads
2019-03-28 (first published: 2015-10-07)
176 reads
Today, Steve wonders when we'll stop installing SQL Server on a host machine.
2019-03-26
1,268 reads
If you have been working with SQL Server long enough, you have probably been involved with a SQL Server 2000 to 2005 upgrade. It was painful for many shops due to the deprecation of some features like DTS and the removal of old-fashioned comma joins with the plus operator. It was worth the pain as […]
2019-03-25
1,237 reads
Steve has a few thoughts on what is worse than telling your boss about a data breach.
2019-03-25
146 reads
2019-03-22
123 reads
Bad managers are everywhere, but we can improve and help them with some ideas from other companies. That's if we, as an organization, value our staff.
2019-03-21 (first published: 2015-10-19)
285 reads
This week's poll asks about virtualization in your environment. Let us know if you are moving your SQL Server to virtual machines.
2019-03-20 (first published: 2015-05-08)
192 reads
The biggest government hack ever occurred recently. At least until the next one happens.
2019-03-19 (first published: 2015-10-20)
300 reads
A minor disaster in Colorado reminds Steve about the need to prepare, and think about the failure points in our preparations.
2019-03-18
81 reads
A new version of an existing application doesn't always provide an upgrade.
2019-03-18
106 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