2019-07-22
773 reads
2019-07-22
773 reads
Steve doesn't think Windows containers are the future for the data platform.
2019-07-19
516 reads
In this next level of the Stairway to Database Containers learn how to customer a container and save the changes to a new image.
2024-07-28 (first published: 2019-07-18)
2,668 reads
2019-07-15
1,052 reads
Some recommendations for determining when it makes sense to run Docker Containers on Windows--and when it doesn't.
2019-05-31
Grant Fritchey plays around with container volumes, showing how to move a backup file into a container by just copying it to the volume, and then running a restore from that backup.
2019-05-31
Grant Fritchey creates a container with a database & some data and a couple of general customization, then creates from it a new custom image.
2019-05-31
2019-05-24
2019-05-23
2019-05-22
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
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