Forum Replies Created

Viewing 15 posts - 11,161 through 11,175 (of 22,214 total)

  • RE: SQL Profiler

    I wouldn't recommend using Profiler on a production system. The way it gathers data can lead to performance problems. Better to set the trace up using TSQL scripts.

    If you can't...

  • RE: Performance issues on huge table (40 columns, 500M rows)

    aaron.reese (4/3/2012)


    Grant Fritchey (4/3/2012)


    And the JOIN criteria

    DRP.rank = DRD.rank + 1

    I suspect that's going to lead to scans too.

    Why? - not saying it won't but what makes you think that...

  • RE: is it possible to re-order the intellisense options as they appear?

    There must be something else going on. You should be seeing Football first. See this example from AdventureWorks

    You can see the SalesPerson and then the SalesPersonQuotaHistory. Yours should be going...

  • RE: Performance issues on huge table (40 columns, 500M rows)

    And the JOIN criteria

    DRP.rank = DRD.rank + 1

    I suspect that's going to lead to scans too.

  • RE: Are the posted questions getting worse?

    Lynn Pettis (4/3/2012)


    Some people really shouldn't be allowed near SQL Server systems.

    Come on. I'm not that dangerous.

  • RE: sql parameters

    dianerstein 8713 (4/3/2012)


    My company has such extreme change control procedures, it is difficult to put anything into production. There is so much you need to fill out to put anything...

  • RE: DeadLock

    The things I'd look at first are the two processes. Each of those shows you the lock that it was holding. That's where the conflict comes in, so that's the...

  • RE: Catching the culprit!!

    S_Kumar_S (4/3/2012)


    Thanks So much Grant! Good to see big guys helping out "lesser knowns" 🙂

    Grant Fritchey (4/3/2012)


    Since you're trying to track data changes, batch_requests and rpc_complete are the two events...

  • RE: Catching the culprit!!

    Since you're trying to track data changes, batch_requests and rpc_complete are the two events I would track. For details on how to use extended events, hit the Books Online and...

  • RE: Help Me:Order of operators operation.

    I posted the question on twitter (#sqlhelp) to get some more feedback. This is anticipated behavior (at least according to Microsoft). You can see it in this Connect item.

    Basically...

  • RE: How to deploy scripts??

    There is no "ideal" deployment. In most systems I've worked on, I put the database into source control and then use comparisons between source control and a database to generate...

  • RE: Service Account

    Depending on what you're trying to do, you may want to use a different account for production and non-production environments in order to prevent any chance of a non-production environment...

  • RE: DeadLock

    You just use the OBJECT_NAME function to identify the object in question.

  • RE: Help Me:Order of operators operation.

    That's a good one. It looks like the minus sign is reversing the division, creating a multiplication when is then divided, unless you set the parenthesis so that it's a...

  • RE: Catching the culprit!!

    What about setting up an extended events session and just capturing changes over time. Then, if something goes wrong, you query the extended events results and see who did what...

Viewing 15 posts - 11,161 through 11,175 (of 22,214 total)