I don't use the Visual Studio SSDT Publish
I see questions pretty regularly on stack overflow and the ssdt msdn forum that is some variation on "I am...
2015-08-19
876 reads
I see questions pretty regularly on stack overflow and the ssdt msdn forum that is some variation on "I am...
2015-08-19
876 reads
I see questions pretty regularly on stack overflow and the ssdt msdn forum that is some variation on “I am...
2015-08-19
35 reads
I see questions pretty regularly on stack overflow and the ssdt msdn forum that is some variation on “I am...
2015-08-19
44 reads
I see questions pretty regularly on stack overflow and the ssdt msdn forum that is some variation on “I am doing a publish through visual studio and it doesn't...
2015-08-19
8 reads
I worked on a project where we had two SSDT projects with different versions of SQL, one 2012 and one...
2015-08-17
707 reads
I worked on a project where we had two SSDT projects with different versions of SQL, one 2012 and one...
2015-08-17
42 reads
I worked on a project where we had two SSDT projects with different versions of SQL, one 2012 and one...
2015-08-17
42 reads
I worked on a project where we had two SSDT projects with different versions of SQL, one 2012 and one 2008. The 2012 project referenced the 2008 project as...
2015-08-17
2 reads
Traditionally database developers have shared a database and while this certainly made sense when everyone had a limited amount of...
2015-08-21 (first published: 2015-08-17)
1,961 reads
Traditionally database developers have shared a database and while this certainly made sense when everyone had a limited amount of...
2015-08-17
36 reads
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
By Steve Jones
AI is everywhere. It’s in the news, it’s being added to every product, management...
By Vinay Thakur
RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...
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