Lock page memory
When you configure the memory and on your system if other applications are also present, in such cases specially for...
2010-08-16
468 reads
When you configure the memory and on your system if other applications are also present, in such cases specially for...
2010-08-16
468 reads
According to the timeline (PDF), the PASS Nominating Committee is supposed to contact the applicants today or tomorrow and let...
2010-08-16
746 reads
The SQL Server Society of Las Vegas meeting has come and gone once again. This meeting is held typically on...
2010-08-16
432 reads
That’s right! PASSMN is breaking the mold and heading onto new ground. We are making our second annual Friday full-day...
2010-08-16
541 reads
It has been a couple of months since I have posted an update to my “SQL Server 2008 and R2...
2010-08-16
1,693 reads
Had my final follow up call with Don Gabor, took one more run through the networking and speaker stuff (Don...
2010-08-16
647 reads
Synchronizing SQL user in Database Mirroring:
If a login used in an application that involves database mirroring has SQL Login, there...
2010-08-16
2,335 reads
Text of my keynote from SQL Saturday #28
Welcome to SQL Saturday #28 and I'm pleased to be back in Baton...
2010-08-16
2,095 reads
Had a great time in Baton Rouge. The event was well attended and had an awesome lineup of speakers. I...
2010-08-16
806 reads
Scott Gleason just posted a blog yesterday that showed an awesome new tool that people can create little animated videos....
2010-08-15
371 reads
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...
By Vinay Thakur
Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...
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