Viewing 15 posts - 1,486 through 1,500 (of 22,202 total)
Since the perfmon counters are part of the OS, I'd lean heavily towards capturing them from the OS. It's one less layer of processing necessary. The values will be the...
December 3, 2020 at 12:56 pm
A failover would only fix an overloaded server by forcing people off of it. In short, that's no fix at all. You need to monitor the server and the resources...
December 3, 2020 at 12:40 pm
2008R2? Ugh. Well, that limits your choices for monitoring down to one, Trace Events. These things do not filter well. However, you can set up a server side trace to...
December 3, 2020 at 12:26 pm
This seems like one of the times where triggers are the right mechanism. There's no complex logic in the trigger, there's nothing complicated happening to the table, updates/delete etc.......
December 1, 2020 at 7:48 pm
Take a look at the Azure measurement DTU. This is how Microsoft was primarily charging, per database, for Azure. Now, the DTU is largely a secondary measure and they're primarily...
December 1, 2020 at 3:20 pm
I haven't set up something like this, so let's get that out of the way up front.
First thing that comes to mind is simple INSERT triggers. However, generally, I don't...
December 1, 2020 at 3:11 pm
That one is simple. Not enough memory in the system for the query in question. That means also, not enough disk space to swap stuff out. Sounds like the data...
December 1, 2020 at 12:32 pm
Resource Pool Statistics are specific to Resource Pools which are how the Resource Governor works. You don't have a Resource Governor in Express Edition. Therefore, no need to look at...
November 30, 2020 at 1:16 pm
I'd suggest removing the job entirely. However, probably, what you're seeing isn't the job restarting. It's probably rolling back since you killed it. You'll need to just let that finish....
November 30, 2020 at 1:14 pm
No, we didn't make enough. Other stuff is being worked on. There are plans and plans with plans. All the details will be released soon.
November 23, 2020 at 12:12 pm
Nope. Not without tons more information. What do the wait statistics look like? What's causing it to slow down?
November 20, 2020 at 2:31 pm
It's also just possible that you're not CPU bound. In fact, it's pretty common to run out of other resources first. Disk I/O and Memory are much more frequently the...
November 20, 2020 at 1:25 pm
@Grant ,
Yes, that was my intention take a chunk of everyday data rows and execute some sql code/agaent job against the table.I am sure the datatable per day will...
November 18, 2020 at 6:30 pm
There isn't a way within the database alone to do this. You're going to have to go external to the database and set up something that polls the data. Now,...
November 18, 2020 at 1:23 pm
Viewing 15 posts - 1,486 through 1,500 (of 22,202 total)