Unused Heaps? - Quick Tips: Day 10
Don't forget! This coming Monday is the last Monday to win a free month of Pluralsight! All it takes is...
2013-12-26 (first published: 2013-12-20)
1,713 reads
Don't forget! This coming Monday is the last Monday to win a free month of Pluralsight! All it takes is...
2013-12-26 (first published: 2013-12-20)
1,713 reads
Small disclaimer
I'm going to file this one under rant. Let me first say that there are some wonderful recruiting agencies...
2013-12-19
647 reads
Winner Announcement!
The third winner of this month is Annapu Reddy Gayathri! I've seen a nice increase of participants so far. I...
2013-12-18
434 reads
Recently we were talking about Backups and how you need to test them often. The most complete way to test...
2013-12-17
637 reads
Monday Giveaway!
It's Monday again! I know we all hate Mondays, but let's have a Fun Monday!It's another week to give...
2013-12-16
655 reads
Let's keep this talk going about what you can do. We know I'm rather big on user groups and SQL...
2013-12-13
446 reads
Well, we talked about user groups... Let's talk about their big brother; SQL Saturdays. @SQLCenturion runs them here in OKC. They...
2013-12-12
471 reads
Today's winner is! Aadhar Joshi!
Congratulations for winning a free month of PluralSight. I'm E-Mailing you the code right now.
We still...
2013-12-11
538 reads
As a reminder, we have one more day before this weeks giveaway is over. All you need is a single...
2013-12-10
533 reads
We have 16 days until Christmas. Since I started this blog, I've posted every day Monday through Friday. I am...
2013-12-09
369 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