PASS Update #47–Election Review Committee
As always, this represents my own views, I’m speaking only for me and not the entire PASS Board.
Early last week...
2010-11-16
676 reads
As always, this represents my own views, I’m speaking only for me and not the entire PASS Board.
Early last week...
2010-11-16
676 reads
First, if you haven’t tried PAL yet, I highly recommend downloading it from CodePlex and giving it a try. You...
2010-11-15
889 reads
Thursday ended with a ‘Meet the Board’ meeting where attendees could come ask the Board questions or present ideas. It...
2010-11-15
734 reads
Quick recap of yesterday afternoon: blur! I know I did stuff, but the pace is brisk and I’m just keeping...
2010-11-12
545 reads
Started the day with a work call and some email, then down to Top Pot with Ron Dameron and Aaron...
2010-11-10
658 reads
I’m writing this Wednesday morning, and it’s hard to describe the feeling of speed that comes with being here this...
2010-11-10
511 reads
I’m writing this on Tuesday morning, Monday was a blur. I awoke at 4 am, finally decided that sleep wasn’t...
2010-11-09
628 reads
My day started at 5:15 to get moving for the airport. Arrived right at 2 hours early to find that...
2010-11-09
536 reads
Started my day by going up to the club floor for the continental breakfast, met Mark Souza on the elevator...
2010-11-09
564 reads
I wrote the editorial asking what people would have been if they had been born 100 years earlier. It’s a...
2010-11-09
449 reads
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...
By Vinay Thakur
Continuing from Day 5 where we covered notebooks, HuggingFace and fine tuning AI now...
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
Comments posted to this topic are about the item Designing Delta Tables with Liquid...
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