xSQLServer is dead long live SqlServerDsc
I have had a problem with DSC in Azure Automation for a few months now, there was a change made to the xSqlServer DSC resource which meant that the...
2017-12-15
10 reads
I have had a problem with DSC in Azure Automation for a few months now, there was a change made to the xSqlServer DSC resource which meant that the...
2017-12-15
10 reads
I have had a problem with DSC in Azure Automation for a few months now, there was a change made...
2017-12-15
339 reads
I have had a problem with DSC in Azure Automation for a few months now, there was a change made...
2017-12-15
58 reads
I have had a problem with DSC in Azure Automation for a few months now, there was a change made...
2017-12-15
87 reads
There are a few different choices for tools to use when it comes to SQL Server, while the “experienced” amongst us have used query analyzer, enterprise manager and probably...
2017-12-14
5 reads
There are a few different choices for tools to use when it comes to SQL Server, while the "experienced" amongst...
2017-12-14
333 reads
There are a few different choices for tools to use when it comes to SQL Server, while the “experienced” amongst...
2017-12-14
40 reads
There are a few different choices for tools to use when it comes to SQL Server, while the “experienced” amongst...
2017-12-14
38 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting the tooling take care of the how. I guess...
2017-12-13
4 reads
Writing infrastructure as code is pretty nice and I enjoy the declarative approach of defining what you want and letting...
2017-12-13
35 reads
This T-SQL Tuesday is hosted by the one and only James Serra – literally...
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
Hi, ssms is free here. I can think of other reasons to do this...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers