PASS Summit 2012-Wednesday Keynote Part 2
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
822 reads
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
822 reads
I like reading and while I read more on an e-reader than I used to, I still prefer the printed...
2012-11-05
839 reads
I started this trip with a 4:30 am wake up on Sunday to be at the airport for the direct...
2012-11-05
831 reads
If you’re in Seattle for the PASS Summit and would like a chance to meet some new people in a...
2012-11-05
826 reads
I tend to take it for granted and I imagine most of you do as well, but not everyone is...
2012-11-01
813 reads
I’ve been living with my Mac Air for a few weeks now, thought I’d share some quick thoughts:
I miss the...
2012-10-24
811 reads
Congratulations to Wendy Pastrick, James Rowland-Jones, and Sri Sridharan on winning a two year term on the PASS Board of...
2012-10-17
805 reads
We just crossed the 100 mark for registrants for our Monday Night Networking Party and still room for more. If...
2012-10-12 (first published: 2012-10-09)
1,813 reads
My friend Richard Salogub is heading up this years Give Camp Orlando, an effort to link developers and IT professionals...
2012-10-08
771 reads
I was just answering an email and realized I’m behind on posting on a few topics, one of them the...
2012-10-08
927 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