Speaking at the 2014 PASS Summit
Finally the email we’d all been waiting for arrived yesterday, the results of session selection for the 2014 PASS Summit....
2014-06-25
735 reads
Finally the email we’d all been waiting for arrived yesterday, the results of session selection for the 2014 PASS Summit....
2014-06-25
735 reads
There may be an easier way, but this was a quick way to find ALL the checked out files in...
2014-06-24
1,423 reads
No Files For You is another Question Of The Day. I ended up making this one just a little more...
2014-06-24
477 reads
Bad Meetings or Meeting Badly is the editorial of the day today. Looking at it today, I wish I had...
2014-06-23
516 reads
Reading, Writing, and Riskmetic is another Question of the Day, this one about how to allow developers to understand performance...
2014-06-23
540 reads
Poecilonym Madness! is my latest question that tests your knowledge of creating/dropping tables, views, and synonyms. Here’s the fun part...
2014-06-20
609 reads
Next week will begin our weekly planning call, so ahead of that (and perhaps a bit later than I should...
2014-06-19
566 reads
Below is the chart Kendal Van Dyke maintains for us in Orlando showing year over year registration counts. Don’t I...
2014-06-19
501 reads
I’m on vacation this week, but enjoying some quiet time during the day to think a little, going back through...
2014-06-17
750 reads
I try to find good stories for editorials at SQLServerCentral and the one this week about Kitchen Duty seems to...
2014-06-17
586 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