Viewing 15 posts - 4,006 through 4,020 (of 22,211 total)
BTW, I agree with what everyone else is saying. Of course you should be deleting the data in such a way that you're not violating referential integrity. It's there for...
March 2, 2017 at 5:17 am
March 2, 2017 at 2:09 am
For DELETE and UPDATE operations, you can't simply disable the constraint by using NOCHECK. Instead, you have to drop and recreate the constraint. Just be sure that when you recreate the...
March 2, 2017 at 1:35 am
March 1, 2017 at 7:13 am
Can you have an availability group across two different failover clusters? Yes.
The issue is, generally, AG is meant as a replacement for failover clusters. Unlike failover clusters, there...
March 1, 2017 at 3:58 am
How to replicate or backup/restore a SQL azure...
March 1, 2017 at 1:43 am
Have you looked at the execution plans to understand how the optimizer is choosing to resolve the query? Can you capture the actual plan (although, an estimated plan would work...
February 28, 2017 at 7:12 am
February 28, 2017 at 3:40 am
My, very general, rule is that the clustered key should be on the column or columns most frequently used to access the data. In many, probably even most, cases that's...
February 28, 2017 at 1:41 am
Off the top of my head? No. I'd want to go back & reread the relevant sections of Kalen's book to be able to answer your question with even a...
February 27, 2017 at 3:02 am
Man, Jeff. Leave some crumbs for the rest of us.
February 27, 2017 at 2:18 am
Generally, when trying to troubleshoot performance issues, you start with identifying where the issue is coming from. You've done that. Next, before we start talking solutions, we need to understand...
February 27, 2017 at 2:15 am
So PLE is just measuring how long a page lasts in memory (it's an average, obviously). So a page of data from a lookup table used in lots of different...
February 27, 2017 at 2:08 am
You can use replication. Microsoft has great documentation on how to set it up. That's about your only option for going Azure SQL Database from an on-premises database....
February 25, 2017 at 5:59 am
It's going to halt the execution.
I'd put extended events on the job to monitor for procedure start and finish. If you have an unmatched pair, you've at least...
February 25, 2017 at 5:54 am
Viewing 15 posts - 4,006 through 4,020 (of 22,211 total)