Notes from SQLSaturday #168 in Tampa
I made a quick trip to Tampa for #168 this past weekend. It was a “BI Edition” and it felt...
2012-11-21
944 reads
I made a quick trip to Tampa for #168 this past weekend. It was a “BI Edition” and it felt...
2012-11-21
944 reads
For the few past few years the Board has scheduled time to take questions from members at the Summit. This...
2012-11-11
1,071 reads
Allen Kinsel will be leaving the Board of Directors this year after serving a two year term and Kendal is...
2012-11-09
1,045 reads
Late posting this, has been a busy week!
Started the day at Top Pot, meeting up with Jack Corbett and some...
2012-11-09
860 reads
Wednesday was a blur. I had breakfast at the Convention Center, mostly to see how it was – ok, muffins, cereal,...
2012-11-09
896 reads
Thursday. Slept a little better but still waking up on east coast time. Not a lot to do in Seattle...
2012-11-09
906 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-08
854 reads
Starting off with Douglas McDowell talking about the opening video that highlighted people from a lot of different countries, lots...
2012-11-08
751 reads
Quentin Clark today:
Long monologue about the possibilities of data.I’d like to think we all get that already.
2012-11-08
767 reads
It’s 8:15 on Wednesday and I’m at the blogger table, hoping for a good to great keynote.
First up is Bill...
2012-11-07
780 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