Living With Broken Software
Steve has to use software that is broken, but it's OK. It actually works well enough.
2023-04-03
117 reads
Steve has to use software that is broken, but it's OK. It actually works well enough.
2023-04-03
117 reads
Learn about how you can work with your SQL Server data from C#. A good basic tutorial for beginning C# developers.
2023-03-24
16,145 reads
Do you have a set of practices for building software in your organization?
2023-02-17
200 reads
Helping your business get value from a digital transformation can start within your own team or group.
2023-02-08
108 reads
2023-02-06 (first published: 2023-02-04)
249 reads
Building software means not only considering the data people expect, but also edge cases. Steve asks if you know what those edge cases are?
2022-11-14
290 reads
Our design and modeling is often done with some level of uncertainty. Steve has a few guidelines today.
2022-10-26
177 reads
2022-10-24
191 reads
2022-10-17
100 reads
Building software is becoming harder as new attacks try to inject malicious code into products.
2022-10-12
121 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