SSDT and Friends - .net meetup video
I did a talk at the london .net meetup if you want to get an overview of what SSDT is...
2017-02-10
64 reads
I did a talk at the london .net meetup if you want to get an overview of what SSDT is...
2017-02-10
64 reads
I did a talk at the london .net meetup if you want to get an overview of what SSDT is...
2017-02-10
37 reads
I did a talk at the london .net meetup if you want to get an overview of what SSDT is...
2017-02-10
16 reads
There have been a couple of fixes in SQLCover this week, kindly submitted by John Mclusky (https://github.com/jmclusky):
Code coverage not reported...
2016-10-07 (first published: 2016-09-30)
1,735 reads
There have been a couple of fixes in SQLCover this week, kindly submitted by John Mclusky (https://github.com/jmclusky):
Code coverage not reported correctly for CTEs at the end of a stored...
2016-09-30
5 reads
There have been a couple of fixes in SQLCover this week, kindly submitted by John Mclusky (https://github.com/jmclusky):
Code coverage not reported...
2016-09-30
208 reads
There have been a couple of fixes in SQLCover this week, kindly submitted by John Mclusky (https://github.com/jmclusky):
Code coverage not reported...
2016-09-30
211 reads
The ideal is to make a change and see that change deployed to production, in a perfect world we would...
2016-09-29 (first published: 2016-09-20)
1,309 reads
In this post I will talk about the in-built refactoring support in SSDT – the language is slightly different from my normal style as originally it was going to...
2016-09-27
12 reads
In this post I will talk about the in-built refactoring support in SSDT – the language is slightly different from my...
2016-09-27
1,312 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