What Twitter Account Should SQLSaturday Use?
Last week PASS sent out an email saying that on June 15 all the tweets from @sqlsat would be changed...
2018-06-18
340 reads
Last week PASS sent out an email saying that on June 15 all the tweets from @sqlsat would be changed...
2018-06-18
340 reads
Late writing notes!
55 registered, 28 attended. Not bad, and about on track for expected 50% drop. Really, 28 made for...
2018-06-11
286 reads
Continuing the notes I wrote in Update #1, got a few more things done last week:
Received confirmation that the event...
2018-06-05
265 reads
We’ve just opened up registration and the call for speakers for our 12th SQLSaturday here in Orlando. We did #1...
2018-06-01
651 reads
Each year I try to capture a little more on how to set things up here in Orlando. Right now...
2018-05-29
306 reads
Last week Wendy Pastrick of the PASS Board posted PASS Election 2018 Timeline. It’s a good post for a few...
2018-05-16
313 reads
I just finished reading The Perfect Machine about the construction of the Hale Telescope at Mount Palomar (here is a pretty...
2018-05-08
260 reads
We’ve been on a break with regards to most things SQL here in Orlando, but we’re getting things going again...
2018-05-08
313 reads
Notes:
Great attendance, easily 400+Lunch was smooth this year due to changing to boxed lunchesRooms were in 2 different buildings. Sometimes...
2018-05-07
277 reads
Wanted to share a few things I came across recently with regards to benefits for veterans:
You can get a printed...
2018-04-25
347 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