PASS Summit 2013 Report #10 (Dr DeWitt)
I was lucky/thrilled to get to spend a few minutes chatting with Dr. DeWitt this afternoon (and thanks to PASS...
2013-10-16
637 reads
I was lucky/thrilled to get to spend a few minutes chatting with Dr. DeWitt this afternoon (and thanks to PASS...
2013-10-16
637 reads
PowerBi contest – www.facebook.com/microsoftbi. Aligns with the BA conference next year.
I’m amused thinking about PowerBi being Powered By Microsoft.
I still...
2013-10-16
603 reads
Still at the opening day keynote, waiting for next demo to start.
I think the PASS water bottles are the most...
2013-10-16
659 reads
Waiting on Microsoft keynote to begin. Hoping for excitement!
SQL 2012 has had fastest adoption rate. No arguing it’s good, wonder...
2013-10-16
571 reads
I’m starting the official ‘day one’ at the bloggers table with Tim Mitchell and Colin Stasiuk. We’re at a side...
2013-10-16
368 reads
I took a quick break at 5:30 to drop off my bag at the hotel and head back to attend...
2013-10-16
286 reads
One of the items that came up for discussion at the Chapter meeting today was the privacy policy for SQLSaturday....
2013-10-15
302 reads
Started today with breakfast with the family after packing up all their clothes and stuffed animals for the trip home....
2013-10-15
423 reads
Weather a bit cloudy today, a little rain and a little cool – not Seattle, but not Orlando either! Breakfast at...
2013-10-15
454 reads
Yesterday we drove up from Charleston where I had attended SQLSaturday #227. It’s not a bad drive, about three hours....
2013-10-14
313 reads
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...
By Vinay Thakur
Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...
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
Comments posted to this topic are about the item Restoring On Top I
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