Viewing 15 posts - 2,416 through 2,430 (of 22,214 total)
I absolutely love Extended Events.
However, for SQL Server 2008R2, I don't recommend you use them. They were a 1.0 release then and the functionality just wasn't quite up to snuff....
August 12, 2019 at 11:23 am
You could look at transactional replication. Since you're not talking about multi-way replication, you shouldn't need to modify the existing data structure to make it work. You'd only need to...
August 12, 2019 at 11:19 am
A manual script shouldn't take hours for that amount of data. I'd investigate exactly how it's doing what it's doing.
Regardless, another vote for Data Masker. Although I do work...
August 12, 2019 at 11:11 am
Availability groups should, under most circumstances, operate within 20 seconds. It's that or transactional replication. No other choices at all.
August 12, 2019 at 9:09 am
It really does depend on the two tools we're talking about and why you're using two.
Now, take something like Microsoft System Center as a monitoring tool. It does the bare...
August 9, 2019 at 1:00 pm
A key lookup occurs when the cardinality estimator does not have a better index than the primary key to use in the query plan.
The solution to this is to...
August 8, 2019 at 12:15 pm
When handed a system, before anything else, backups. I don't care how fast or slow the system is, if the backups aren't good, all bets are off.
Once that's in place,...
August 8, 2019 at 12:08 pm
Yes. You can. Just remember, what you want to run are trace events. The Profiler tool is just for consuming the data generated.
However, I'd be remiss if I didn't point...
August 8, 2019 at 12:04 pm
I'll be honest, I'm not even going to try to propose a solution to the query. Sorry.
Instead, let me ask a question. Have you looked at using a columnstore index?...
August 8, 2019 at 12:01 pm
SQL Server will always use as much memory as it can. You may want to adjust or even disable that alert. You could be getting a lot of false positives...
August 7, 2019 at 11:36 am
Also worth noting, modifying two tables within a transaction can be a vector towards deadlocks if another procedure or query modifies the same two tables, but in a different order.
August 7, 2019 at 11:32 am
Agreed. You can run it as a push or a pull. It'll be the same. Probably, just as a general precaution, I'd run it as a pull, scheduling it from...
August 7, 2019 at 11:31 am
The differences in load is likely the differences in behavior (not necessarily, but, you know how it goes). Those settings were just a couple of examples. I'd examine both sets...
August 7, 2019 at 11:11 am
OK. Most of the work then is going to be with the structures you're building. It's a good idea to know that there are system views (frequently called tables) that...
August 7, 2019 at 12:34 am
I'm not familiar with the app, so no help there.
When you say you don't see it in your QA environment, my inclination would be to first ask what differences are...
August 6, 2019 at 11:47 am
Viewing 15 posts - 2,416 through 2,430 (of 22,214 total)