SSDT DevPack + Visual Studio 2017
I have upgraded the ssdt dev pack to support visual studio 2017 and fixed a couple of minor annoyances and have started to think about how to improve it...
2017-05-08
6 reads
I have upgraded the ssdt dev pack to support visual studio 2017 and fixed a couple of minor annoyances and have started to think about how to improve it...
2017-05-08
6 reads
I have upgraded the ssdt dev pack to support visual studio 2017 and fixed a couple of minor annoyances and have started to think about how to improve it...
2017-05-08
9 reads
I have been quite interested by vs code and have been using it more and more recently. I use it...
2017-05-09 (first published: 2017-04-27)
3,422 reads
I have been quite interested by vs code and have been using it more and more recently. I use it...
2017-04-27
233 reads
I have been quite interested by vs code and have been using it more and more recently. I use it...
2017-04-27
222 reads
I have been quite interested by vs code and have been using it more and more recently. I use it for all my GO (#golang FTW) work and also...
2017-04-27
6 reads
This one is for the DacFx nuts out there, it can't be a very big club but judging from the...
2017-04-26
390 reads
This one is for the DacFx nuts out there, it can’t be a very big club but judging from the...
2017-04-26
49 reads
This one is for the DacFx nuts out there, it can’t be a very big club but judging from the...
2017-04-26
61 reads
This one is for the DacFx nuts out there, it can't be a very big club but judging from the occasional emails I get about it, the quality is...
2017-04-26
8 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