Busy Busy Weeks, Finally Some Good News! SQL 2008 / 2008 R2 Will Get Their Final Service Pack!
We will actually be getting our final Service Pack!
The information can be found here. You may still want extended support...
2014-06-03
655 reads
We will actually be getting our final Service Pack!
The information can be found here. You may still want extended support...
2014-06-03
655 reads
I love user groups.
I have a special place in my heart for people who go out and give their time...
2014-05-20
631 reads
I spoke for my first time at a SQL Saturday in Houston this past week. I had a lot of...
2014-05-12
733 reads
Today I'm posting a small script with a simple purpose. I wanted to search all of my SSIS packages in...
2014-05-07
783 reads
No, I haven't lost my job. This is just one of those topics that's good to get out there. There...
2014-04-28
1,217 reads
I want to congratulate OKCSQL on a 5 year run.
I personally wasn't here for that whole duration, but we have leaders and...
2014-04-14
696 reads
I will be speaking at my first SQL Saturday. I'll be in Houston May 10th. I'm rather surprised to be...
2014-04-07
573 reads
I'm not a fan of anything releasing on April Fool’s Day, but that's not for me to decide. I personally...
2014-03-31
1,788 reads
Free Month of Plural Site
I'm interested in seeing your responses. Any relevant response will be accepted and a free month...
2014-03-24
1,492 reads
SQL Server Maintenance Solution
I'll start off with Ola Hallengren's scripts. I'm not a fan of reinventing the wheel. If someone...
2014-03-19 (first published: 2014-03-17)
4,574 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