We can do professional SQL Server deployments using SSDT
Really excited by my first post on medium, haven’t really used it before but found it to be a really...
2015-09-02
20 reads
Really excited by my first post on medium, haven’t really used it before but found it to be a really...
2015-09-02
20 reads
Last night I had a lot of fun presenting on one of my favorite topics, MARS and SQL Server protocols...
2015-08-26
495 reads
Last night I had a lot of fun presenting on one of my favorite topics, MARS and SQL Server protocols including a rather fun live demo.
The slides and demo...
2015-08-26
6 reads
Last night I had a lot of fun presenting on one of my favorite topics, MARS and SQL Server protocols...
2015-08-26
42 reads
Last night I had a lot of fun presenting on one of my favorite topics, MARS and SQL Server protocols...
2015-08-26
42 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
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 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...
2015-08-19
876 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