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,311 reads
By Vinay Thakur
I wrote about TempDB Internals and understand that Tempdb plays very important role on...
By Vinay Thakur
continuing from Day 1 where we covered the history of AI and GPT family,...
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