PreCon–SQL Saturday Tampa
I recently had a great opportunity to present a preconference all day event in Tampa with the crew from the...
2011-11-09
721 reads
I recently had a great opportunity to present a preconference all day event in Tampa with the crew from the...
2011-11-09
721 reads
So last year in improved transparency move, the board and the nomination committee began posting the questions the noncom asked...
2011-10-14
852 reads
Wow, what an event. I had to run to Redmond right after this so I am sorry this post is...
2011-10-06
811 reads
The other day, someone said to me ?You guys are growing like a weed? Now it was a competitor, so...
2011-10-04
1,028 reads
It?s never easy to beat up on a friend. Sometimes they have it coming though!.
The Webinar smackdown is over....
2011-10-03
772 reads
Quick update for all of you!
Hey there everyone! We are going to have some awesome surprises, new software features...
2011-09-30
1,562 reads
So I am really close to Atlanta geographically, but I?m never there. I?m going to change that after this SQL...
2011-09-30
1,569 reads
Many of you know recently the PASS board announced that elections will be coming up for three seats on the...
2011-09-30
2,610 reads
Weekday Lunch RAW!
Welcome to the Smack-down ladies and gentleman. I couldn?t believe it when Brian walked into my office the...
2011-08-31
1,797 reads
That title may evoke thoughts of inappropriate SQL Karaoke or perhaps not but It is so nice to know I’m...
2011-06-18
864 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