PASS Update #50-January 2010 Board Meeting
This post is my thoughts on the Board meeting, and my views on related topics. I encourage you to read...
2011-01-31
1,951 reads
This post is my thoughts on the Board meeting, and my views on related topics. I encourage you to read...
2011-01-31
1,951 reads
I’ve been taking a look at MySQL after a long absence to help a client decide if it should be...
2011-01-28
919 reads
I’ve had occasion to watch a lot of people try Profiler, and to hear a lot more about their previous...
2011-01-27
574 reads
Help us promote our upcoming PASS events by including any or all of these on your blog or in your...
2011-01-25
726 reads
I get a lot of questions about how SQLRally is going, which tells me that there is a lot of...
2011-01-20
637 reads
Kendal Van Dyke is launching a new PASS Chapter called MagicPASS in Orlando this week, with the first meeting on...
2011-01-19
682 reads
The weekend started with a later afternoon drive to Tampa, returning a couple calls and then chatting with Steve Jones...
2011-01-17
619 reads
The conventional wisdom tends to hold that you should trumpet your accomplishments to your boss, though in a way that...
2011-01-11
745 reads
I wrote Clouds in our Future to see if I could spark a good conversation about the mental shift required...
2011-01-10
608 reads
The official announcement was posted yesterday that Jeremiah Peschka and Brian Moran have decided to resign from the Board and...
2011-01-09
703 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