New Year Aspirations – Gina Walters – User Groups
Thanks for agreeing to do this Gina; from your emails things do sound quite frantic at the moment so I...
2013-02-12
868 reads
Thanks for agreeing to do this Gina; from your emails things do sound quite frantic at the moment so I...
2013-02-12
868 reads
Do you use the FLOAT datatype? If so you had better read this……
Today I came across an issue somebody posted...
2013-02-01
5,134 reads
As a former mentor Christian is used to me asking him all sorts of random questions, but this time it’s...
2013-01-29
1,535 reads
Thanks for agreeing to do this Annette, with your SQL Saturday event only a few weeks away thing must be...
2013-01-28
936 reads
I’ve been very privileged to be able to work alongside Kevin on a few projects during our time together at...
2013-01-25
883 reads
Thanks for agreeing to do this Jonathan, I know you’re busy with arrangements for SQL Saturday #194 in Exeter
Before we...
2013-01-24
1,077 reads
It’s an exciting time for SQL Server Professionals in the South West of the UK, we’re now just a few...
2013-01-24
733 reads
Thanks for agreeing to do this Gavin. It’s great to be able to interview an MCA as there are so...
2013-01-23
945 reads
Thanks for agreeing to do this boB. It’s great to be able to interview the Microsoft program manager for the...
2013-01-22
1,890 reads
Most readers will know you already, but before we start on the main part of the interview, tell us all...
2013-01-21
1,018 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