TechEd 2010 – Interview With Herain Oberoi
Herain Oberoi is a Group Product Manager for SQL Server and spent 30 minutes with me talking about StreamInsight and...
2010-06-08
553 reads
Herain Oberoi is a Group Product Manager for SQL Server and spent 30 minutes with me talking about StreamInsight and...
2010-06-08
553 reads
Leisurely morning, leaving for the convention center about 8 am. Bus service has been great, they have a staff person...
2010-06-08
477 reads
After the keynote went back to the press room to write up notes (which I posted already), check email, eat...
2010-06-08
491 reads
One of the nice unplanned parts of the trip was walking out the front door of the hotel to realize...
2010-06-07
545 reads
Checkin at TechEd was fast, people were moving through very quickly. Photo ID required, get your badge, and then down...
2010-06-07
315 reads
Flew out of Orlando Sunday morning via Southwest. It was my first time flying SW, I usually go with whoever...
2010-06-07
521 reads
As you may recall we relaunched this late last year, trying to fill a gap in both content on sqlpass.org...
2010-06-04
275 reads
I’m flying out early Sunday morning, looking forward to four days at TechEd. It will be a break from the...
2010-06-04
277 reads
Note: This isn’t a recommendation or endorsement, just notes from some research I’ve done. Please contact your vendor before making...
2010-06-03
549 reads
Another recent editorial I wrote for SQLServerCentral talks about whether you would be happy doing your hobby for living. For...
2010-06-02
695 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