My PASS Summit 2011 Schedule
The annual PASS Summit is upon us once again! Here's where I'll be next week:
Monday
Arriving in Seattle mid-afternoonMonday Night Networking...
2011-10-07
675 reads
The annual PASS Summit is upon us once again! Here's where I'll be next week:
Monday
Arriving in Seattle mid-afternoonMonday Night Networking...
2011-10-07
675 reads
After last year's PASS Summit I put my money where my mouth was and said I will do something this...
2011-10-05
1,239 reads
Tomorrow marks the 4th annual SQLSaturday Orlando, held at Seminole State College in Sanford. We've got 46 sessions by 40+...
2011-09-23
864 reads
In recent years solid state drives (SSD for short) have dropped in price enough to be an affordable option in...
2011-09-08
1,177 reads
I've recently been talking to people looking for DBAs and one of the questions that always gets asked early on...
2011-08-31
2,720 reads
I've done it; I've violated one of the rules I give to people who are interested in blogging: I went...
2011-08-29
766 reads
The 2011 version of SQLSaturday Orlando (officially SQLSaturday #85), a joint effort between Orlando's PASS chapters OPASS and MagicPASS, is...
2011-07-22
589 reads
Tonight, June 22, at 6:30 PM EDT I'm presenting Paging DR Availability, You're Wanted In The Recovery Room for the...
2011-06-22
632 reads
The official notices went out to speakers last week and I am privileged to have the opportunity to present two...
2011-06-21
475 reads
The inaugural SQLRally in Orlando is less than a week away (May 11-13)! Maybe you're coming to Orlando for the...
2011-05-06
836 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