Post Deploy Scripts In Composite Dacpacs not deploying
Composite projects in SSDT are a really useful way to logically split databases up while still being able to deploy...
2016-03-03
35 reads
Composite projects in SSDT are a really useful way to logically split databases up while still being able to deploy...
2016-03-03
35 reads
Composite projects in SSDT are a really useful way to logically split databases up while still being able to deploy...
2016-03-03
36 reads
Composite projects in SSDT are a really useful way to logically split databases up while still being able to deploy into a database as a whole. Even if you...
2016-03-03
6 reads
Composite projects in SSDT are a really useful way to logically split databases up while still being able to deploy...
2016-03-03
774 reads
I have been pretty busy over january and the first half of feburary and haven’t had time to write any...
2016-02-16
44 reads
I have been pretty busy over january and the first half of feburary and haven’t had time to write any...
2016-02-16
52 reads
I have been pretty busy over january and the first half of feburary and haven't had time to write any...
2016-02-16
475 reads
I have been pretty busy over january and the first half of feburary and haven't had time to write any blogs, I did have an article on simple talk...
2016-02-16
4 reads
Code Coverage
What is code coverage?
When you write some code and then test it, how sure are you that you have...
2016-01-22 (first published: 2016-01-13)
2,066 reads
Code Coverage What is code coverage? When you write some code and then test it, how sure are you that...
2016-01-13
55 reads
By Vinay Thakur
it has been a year since i have not written much on the blog...
By Steve Jones
on tenderhooks – adj. feeling the primal satisfaction of being needed by someone, which...
By DataOnWheels
I have been active in the data community throughout my career. I have met...
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