Whitepaper Wednesday - Mirroring a Large Number of Databases in a Single SQL Server Instance
Hey folks,
With high availability being so “high” on everyone’s list mirroring is a hot topic. This article by Sanjay Mishra...
2010-09-06
204 reads
Hey folks,
With high availability being so “high” on everyone’s list mirroring is a hot topic. This article by Sanjay Mishra...
2010-09-06
204 reads
Did you ever set a goal and then sort of … demolish it without realizing it? That has happened this year....
2010-08-26
342 reads
Did you ever set a goal and then sort of … demolish it without realizing it?
That has happened this year....
2010-08-25
357 reads
Hey Folks,
We have some great speakers coming up at the SFSSUG in South Florida. Check out Devin Knight here talking...
2010-08-25
670 reads
Hey Folks,
We ahve some great speakers coming up at the SFSSUG in South Florida. Check out Devin Knight here talking...
2010-08-24
706 reads
Hey there
I’m excited to be one of the speakers on this fall’s 24 Hours of PASS. Check it out here...
2010-08-19
178 reads
I’m excited to be one of the speakers on this fall’s 24 Hours of PASS.
It’s coming on quickly so make...
2010-08-19
209 reads
Hey there gang ! – It’s been a while since I’ve written on here and I apologize. It’s shameful I know. I...
2010-08-19
363 reads
Pretty exciting stuff gang! I have an approved session and an alternate for the PASS Summit in November. The SQL...
2010-08-19
314 reads
What are we talking about?
Recently Microsoft released a new version of SQL Server 2008 R2 called Parallel Data Warehouse Edition....
2010-08-19
784 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