Midlands SQL User Group Meeting
Come see John Welch speak on Getting Started With Analysis Services 2008, July 7, 2009 in Columbia, SC
2009-06-25
1,554 reads
Come see John Welch speak on Getting Started With Analysis Services 2008, July 7, 2009 in Columbia, SC
2009-06-25
1,554 reads
It's time for the Exceptional DBA Awards again, and SQLServerCentral.com and Red Gate want to give recognition to a DBA for outstanding work and achievements. Enter Today!
2009-06-15
1,386 reads
If you are near Ahmedabad, come to this event with MVPs Pinal Dave and Jacob Sebastian.
2009-06-12
407 reads
SQLSaturday #17 will be held Aug 1, 2009 in Baton Rouge, LA. Read more about it.
2009-06-10
219 reads
Birmingham (May 20), Pensacola (June 6), and Portland (June 6) are upcoming SQLSaturday events. If you are in the area, please attend.
2009-06-04 (first published: 2009-05-05)
1,524 reads
Come learn about advanced data modeling with Paul Neilsen and DMVs with Glenn Barry, Thur, May 21 in Denver. Steve Jones will attend as well.
2009-05-20
1,223 reads
2009-05-19
751 reads
The June meeting of the Triangle SQL Server User group features MVP Andy Leonard. If you are in the Raleigh area, check this out.
2009-05-18
318 reads
We have a sample chapter available from The Data Access Handbook, written by experts at DataDirect Technologies.
2009-05-15
1,944 reads
Come and join us for this great evening focusing on SQL Server Integration Services and Reporting Services in Cambridge, UK on Wed, May 20, 2009.
2009-05-13
1,313 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