SQLRally, SQL Saturday and The Summit
“Gotta say it was a good day…”
-Ice Cube
On The SQL Saturday Circuit
I’ve been speaking at all the regional SQLSaturday events I...
2011-06-17
645 reads
“Gotta say it was a good day…”
-Ice Cube
On The SQL Saturday Circuit
I’ve been speaking at all the regional SQLSaturday events I...
2011-06-17
645 reads
A nice new little add-in available for SSMS on Codeplex. It helps with repetitive tasks involved with SSAS such as processing and deployment. ...
2011-06-17
1,069 reads
The IT Con event this Saturday, June 18, is an event similar to SQL Saturday. It has three tracks, an...
2011-06-16
769 reads
I came up with a short acronym for my Preparation for Disaster presentation: BCPs. It describes what I think you...
2011-06-16
1,610 reads
Researchers at the University of California, San Diego have published a list of job-market hotspots, and in the top ten is...
2011-06-16
819 reads
One of the things I saw on Twitter yesterday was several folks saying their abstract submissions had been turned down...
2011-06-16
1,889 reads
I was running some tests on some purchased data this morning, and was getting a little perturbed because I was...
2011-06-16
605 reads
Yesterday we got confirmation from SQLPASS if our submitted sessions for the upcoming SQLPASSS
summit in Seattle (October 11 – 14) were...
2011-06-16
707 reads
It appears I was fortunate enough to be selected to speak at the 2011 PASS Summit. This is shaping up...
2011-06-16
518 reads
Yesterday I was thrilled to find out that my session "Common Analysis Services Design Mistakes and How to Avoid Them"...
2011-06-16
689 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