Forum Replies Created

Viewing 15 posts - 11,821 through 11,835 (of 22,214 total)

  • RE: Performance issues

    forsqlserver (9/22/2011)


    Nice Grant...But this is giving the error of invalid arguments...means some invalid...how does it related with plan...

    Sorry, you have to be more clear what "this" is.

    This works fine...

  • RE: Performance issues

    Waits stats will show you what processes are waiting on, but you won't see what's up with that single request. Instead, I'd suggest using Dynamic Management Objects (DMOs). You can...

  • RE: Migrate several jobs to another server

    Scripting would be the only way I'd consider it. Even if you just backup & restore msdb to the other server (which won't work), you still need to deal with...

  • RE: Large terabyte database move to different server

    Assuming you want to minimize downtime, you might want to look into setting up log shipping so that you can get the TB worth of data moved over and only...

  • RE: Disaster recovery

    It really depends on the size of the company and your disaster recovery plan. My former employer was rather large. We had an offsite facility, several hundred miles away that...

  • RE: Are the posted questions getting worse?

    Sorry for you & your spouses loss Jim.

  • RE: Red Gate Object Level Restore Native

    Yeah, absolutely. That's the same technology at work in Virtual Restore. It reads the backup like it was a database.

  • RE: Query maxing out 24 CPUs

    Nah, no points, don't sweat it.

    Basically, you're hitting a situation that's not far removed from parameter sniffing. Your query is better off with an average, sampled, set of values, rather...

  • RE: Query maxing out 24 CPUs

    The thing is, both plans show as having done FULL optimization, so these aren't terribly complex plans. But the costs are very high, and the table scans and RID lookups...

  • RE: Query maxing out 24 CPUs

    You've got a GIANT disparity in statistics between the two data sets. One estimates 3.7 million, the other estimates 174. Right there is the main point of difference that I...

  • RE: Query maxing out 24 CPUs

    In addition to what the ninja says, you need to check all the fundamentals, server settings, is the memory identically configured, are the cpu's identically configured, do you have the...

  • RE: Red Gate Object Level Restore Native

    What it does is it gets down into the guts of the backup file and captures the calls between the two, for data & nothing else.The rest of the SQL...

  • RE: High CPU/IO

    Yeah, if it's grinding along, you should be looking as sys.dm_exec_requests for blocked & blocking processes or for processes that are using lots of resources or are waiting on resources....

  • RE: Query maxing out 24 CPUs

    It's always hard to know if the estimated values are going to be the same as the actual, but taking it as it exists, 87% of the cost of that...

  • RE: Backup to a fileshare slow down gradually for large databases

    Network backups are notorious for poor performance, although this precise behavior is not one I've seen. Generally, you're better off backing up to attached storage and then copying to a...

Viewing 15 posts - 11,821 through 11,835 (of 22,214 total)