Chapter 38 – Successfully Implementing Kerberos Delegation
Cross posted from the SQLPespectives blog put together Richard Rodriguez, Chris Shaw, and Jeremy Lowell for a chapter by chapter...
2010-10-19
777 reads
Cross posted from the SQLPespectives blog put together Richard Rodriguez, Chris Shaw, and Jeremy Lowell for a chapter by chapter...
2010-10-19
777 reads
A few months ago as I came across tab groups in SSMS and once I found them I was very...
2010-10-11
1,096 reads
Well, the event is closing in fast, less than 2 weeks away! We have over 300 registered, a great schedule,...
2010-10-06
543 reads
I had the good fortune of being able to travel to Denver for SQLSaturday #52 the weekend of September 25,...
2010-10-04
668 reads
This morning we made some changes to the database. We realized that as part of a re-factor we needed to...
2010-09-30
1,374 reads
Since there has been a bit of a furor over the PASS election process the past 2 years I thought...
2010-09-23
477 reads
We are less than an month from SQLSaturday #49 – Orlando at Seminole State College – Sanford/Lake Mary campus on October 16th. ...
2010-09-20
496 reads
Well, I’ve been waiting to book hotel and rental car for SQLSaturday #52 – Colorado because I wasn’t sure if my...
2010-09-17
355 reads
Live Meeting: https://www.livemeeting.com/cc/usergroups/join?id=NQ65ZG&role=attend
Mini-Session
Topic: Using PIVOT – Going from Static to Dynamic
Sometimes data normalization results in a data structure that is not convenient for...
2010-09-14
457 reads
I had the pleasure of making my second annual September visit to the Space Coast SQL Server User Group in...
2010-09-13
339 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