PASS 2008 - Day 1 (Mon)
Fairly easy day, up at 5 am for an 8:15 am flight to Seattle via Detroit, arrived about 2:30 pm...
2008-11-17
532 reads
Fairly easy day, up at 5 am for an 8:15 am flight to Seattle via Detroit, arrived about 2:30 pm...
2008-11-17
532 reads
More updates from the nominating committee:
"As a PASS-slated candidate, we would like to promote you and your vision and experience...
2008-11-16
503 reads
This is what I provided to the nominating committee today. I think I could have worked on this for weeks...
2008-11-16
1,418 reads
Looks like I'm still in the game! Just received word from Kevin Kline (Past PASS President). Here are the candidates:
Andy...
2008-11-14
1,312 reads
I'm using a Goggle blog for another project and overall it works fine, no complaints. I've also switched to using...
2008-11-13
576 reads
We had our meeting on November 11, 2008, with 27 people attending. Our featured speaker was Jessica Moss, SQL MVP...
2008-11-12
538 reads
Just heard back from Allen White, due to his schedule and minimal success creating a true team effort plans for...
2008-11-12
544 reads
I don't typically do Internet chain mail, but Brian Kelley mentioned me in his post on his two mistakes and...
2008-11-11
737 reads
I'm going to share what I can from the interview, but I'm going to have to be a little less...
2008-11-10
378 reads
It's funny that many employees see moving into management as a way to stop actually doing work. In practice - if...
2008-11-09
244 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