So I Won't Be Going to the Summit This Year
As the deadline for abstracts to be submitted to the PASS Summit came due, I made the hard decision not...
2010-06-16
643 reads
As the deadline for abstracts to be submitted to the PASS Summit came due, I made the hard decision not...
2010-06-16
643 reads
This is just tragic. Thanks to Brent Ozar (twitter | blog) for posting it.
Idera web site hit by SQL injection attack
The...
2010-06-11
573 reads
As I age in years, I realize more and more how blessed I was to attend The Citadel, the Military...
2010-06-08
1,263 reads
Here are the slides from the SQL Server Auditing Class held on June 2, 2010.
Hour 1 - Attacking SQL Server
Hour 2...
2010-06-03
1,017 reads
This has been on my mind since last week after a conversation with a friend of mine, Bobby Dimmick (twitter)....
2010-05-19
1,188 reads
A friend of mine had been out to the Microsoft Certified Architect site recently and noted that the Infrastructure and...
2010-05-14
1,962 reads
In recent days I've kind of dropped off the map with respect to SQL Server, including with the Security and...
2010-05-11
762 reads
I just got done reading Brent Ozar's post about why folks don't get the telecommuting job they want. It's a...
2010-05-07
3,112 reads
This is a short note to say that the SQL University post will arrive tomorrow. Today we're dealing with the...
2010-04-28
1,439 reads
This is the official announcement that we are officially scheduled for holding a SQL Saturday in Columbia, SC, on October...
2010-04-27
883 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