The Story of the TV Stand
We all have those things that happen at work that somehow turn into something other than expected, and sometimes in...
2009-01-15
650 reads
We all have those things that happen at work that somehow turn into something other than expected, and sometimes in...
2009-01-15
650 reads
If you couldn’t make it to the 2008 PASS Community Summit in Seattle, WA last fall, perhaps you can attend...
2009-01-14
669 reads
There was a time that I really felt I would be more productive with two monitors. I think I found...
2009-01-14
1,278 reads
It's been about two weeks since I posted PASS Update #1, so time for another update on my activities as...
2009-01-14
715 reads
One of my goals for the year is to update my blog roll some and try to recognize new/interesting bloggers....
2009-01-13
650 reads
Last night, Steve Jones, 41, was preparing a pot of brown rice. After feeling all, he was making a bland...
2009-01-13
620 reads
If you live in the Colorado area, you might want to attend the upcoming, free Rocky Mountain Tech Tri-Fecta event,...
2009-01-13
423 reads
SQLBits is the largest free SQL Server conference in Europe, and will include 20 hours of SQL Server sessions to...
2009-01-13
701 reads
I have been thinking of writting a blog for the past 6 months but never had time or could I...
2009-01-13
433 reads
I'm a technology guy, but one lesson I've learned is that not all solutions can be solved by throwing technology...
2009-01-12
712 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