Waking Up to No Support
Support for SQL Server 2008 and 2008 R2 ended yesterday. Steve has a few thoughts on what you should be thinking about today.
2019-07-10
321 reads
Support for SQL Server 2008 and 2008 R2 ended yesterday. Steve has a few thoughts on what you should be thinking about today.
2019-07-10
321 reads
The future of databases is in the cloud. Maybe not for everyone, but it is becoming a trend.
2019-07-09
365 reads
Using a VCS is a core skill, according to Steve. One part of that is learning to write better commit messages.
2019-07-08
477 reads
Just one day between a holiday and a weekend, so Steve asks for the ways you escape work this summer.
2019-07-05
124 reads
2019-07-04
123 reads
A government is fined for allowing inappropriate access to data. That might be something we deal with in other companies at some point.
2019-07-03
192 reads
Today Steve talks about the soft skills and why these might be important as you advance in your career and grow into a senior role.
2019-07-02
537 reads
The California Consumer Privacy Act takes effect in a year and there is lots of work to be done. One firm is trying to help companies get ready.
2019-07-01
341 reads
With SQL Server we tend to build databases, when necessary, from one or more build scripts. If making changes to existing versions of the database, we then script the required changes. Usually, a synchronization tool will create a script that can be tweaked to work; although occasionally it will require something more complicated, as when […]
2019-06-29
341 reads
Today we have a guest editorial that looks at DevOps and the need for your culture to promote collaboration.
2019-06-28
293 reads
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...
By Vinay Thakur
it has been a year since i have not written much on the blog...
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