SQLSaturday #19 Call for Speakers and Registration – East Iowa, October 10, 2009
Michelle Ufford (aka SQLFool) is leading the first SQLSaturday in Iowa at the University of Iowa in Iowa City on...
2009-06-14
761 reads
Michelle Ufford (aka SQLFool) is leading the first SQLSaturday in Iowa at the University of Iowa in Iowa City on...
2009-06-14
761 reads
This past Tuesday, Brian Knight visited the St. Louis SQL Server User Group to present on SSIS. The day ended...
2009-06-14
559 reads
I read, a lot. I’ve been a prolific reader all my adult life.
I use to split my reading between...
2009-06-14
1,126 reads
Tim Benninghof tagged me with the question. "So You’re On A Deserted Island With WiFi and you’re still on the...
2009-06-13
450 reads
My first whitepaper for Microsoft, Understanding and Using PowerShell Support in SQL Server 2008 has been published. It was a...
2009-06-13
384 reads
Last week I wrote a set of Advanced SSIS Interview Questions. Here are the answers I came up for these. ...
2009-06-12
52,834 reads
We had my organization's semi-annual combined IT and financial meeting this morning. At the end of these meetings awards and...
2009-06-12
669 reads
I study karate on a regular basis, and over the years I've practiced a number of different martial arts, most...
2009-06-12
688 reads
While I was in Pensacola last weekend, I sat next to Andy Warren and I was telling him about getting...
2009-06-11
698 reads
I picked up a copy of this from the local library after reading The Making of the Atomic Bomb. Oppenheimer...
2009-06-11
605 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