#SQLRelay 2013 R2 – Week 2
If you haven’t heard of SQL Relay and you live in the UK then shame on you. SQL Relay is...
2013-11-21
974 reads
If you haven’t heard of SQL Relay and you live in the UK then shame on you. SQL Relay is...
2013-11-21
974 reads
I feel really bad that I’ve not been able to blog recently. My draft area is littered with half written...
2013-11-19
729 reads
I’ve been a bit lapse in posting what I am up to recently. For example, I completely missed blogging about...
2013-11-19
713 reads
A lot has been said about what each candidate would like to do and their track record of delivering in...
2013-09-26
1,089 reads
As you may have seen in my post yesterday “PASS Board of Directors Election: Candidates announced” I am running for...
2013-09-24
705 reads
As you may have seen in my post yesterday “PASS Board of Directors Election: Candidates announced” I am running for...
2013-09-24
737 reads
Earlier this morning the official list of candidates running for the PASS Board of Directors was announced. I’m both delighted...
2013-09-23
570 reads
For those of you who may have been living under a rock for the last few years every year PASS...
2013-09-13
482 reads
The second incarnation of 2013 “SQL Relay” is bigger and better than ever. We have taken on board all of...
2013-09-12
669 reads
Snazzy title eh, I bet you can’t guess what this post is about. That’s right, it’s all about Monty Python!
A...
2013-09-11
772 reads
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
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...
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