Devops without management buy in?
I was talking to someone at a meetup recently who was really keen on doing continuous deployment for their database but they had a number of issues, the main...
2017-02-10
8 reads
I was talking to someone at a meetup recently who was really keen on doing continuous deployment for their database but they had a number of issues, the main...
2017-02-10
8 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...
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
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
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
In this post I will talk about the in-built refactoring support in SSDT – the language is slightly different from my...
2016-09-27
51 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
58 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
25 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
By DataOnWheels
The T-SQL Tuesday topic this month comes James Serra. What career risks have you...
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...
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