New SSDT Projects default to the latest version of SQL Server
When you create a new SSDT project it is created (at the moment) as a SQL Server 2014 project which...
2015-10-14
380 reads
When you create a new SSDT project it is created (at the moment) as a SQL Server 2014 project which...
2015-10-14
380 reads
When you create a new SSDT project it is created (at the moment) as a SQL Server 2014 project which...
2015-10-14
65 reads
When you create a new SSDT project it is created (at the moment) as a SQL Server 2014 project which...
2015-10-14
37 reads
If you already have a source code repository for your app code or other databases or you have another team that uses source control then just use theirs.
If you...
2015-10-09
3 reads
If you already have a source code repository for your app code or other databases or you have another team...
2015-10-09
407 reads
If you already have a source code repository for your app code or other databases or you have another team...
2015-10-09
34 reads
If you already have a source code repository for your app code or other databases or you have another team...
2015-10-09
42 reads
I had a lot of fun yesterday presenting my talk on how to go from not having your database in version control to deploying to a CI database, running...
2015-10-09
5 reads
I had a lot of fun yesterday presenting my talk on how to go from not having your database in...
2015-10-09
495 reads
I had a lot of fun yesterday presenting my talk on how to go from not having your database in...
2015-10-09
51 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