2016-03-14
104 reads
2016-03-14
104 reads
2016-03-11
127 reads
Steve Jones discusses the idea of building software better, and why that's a challenge for many of us.
2016-03-10
108 reads
Slack has become a popular phenomenon in the technical world, especially for software developers. Should we join in?
2016-03-09
222 reads
In a couple of days, Microsoft is holding Data Driven, an event that will highlight SQL Server 2016.
2016-03-08
105 reads
2016-03-07
285 reads
SMO gives every appearance of being a great example of over-reliance on automated testing at the expense of manual exploratory testing.
2016-03-07
64 reads
Today we have a guest editorial from Andy Warren that examines the costs of family at work.
2016-03-04
172 reads
Just because we can view the source code for software doesn't mean it is more secure.
2016-03-03
97 reads
Microsoft has changed their engineering to do amazing things in the cloud, especially with SQL Server. We could all learn from this.
2016-03-01
263 reads
Next Monday, March 9, 2026, my one-day live online training SQL Server 2025 Unleashed:...
By HeyMo0sh
As someone who’s worked with data for over 20 years and with many cloud...
By HeyMo0sh
2025 belongs to the AI startups. If you peek into the tech headlines, you’ll...
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