Forum Replies Created

Viewing 15 posts - 19,531 through 19,545 (of 22,202 total)

  • RE: Should He Stay or Should He Go?

    My personal preference is document & fire, but I know that my company will go through counseling, remediation, more counseling, documentation, extra training, heart felt discusions, yet more counseling, more...

  • RE: The Glue that Binds

    Adam Machanic (9/23/2008)


    Grant Fritchey (9/23/2008)


    While our team has chosen nHibernate and not Entity Framework ...

    Just keep thanking your lucky stars that they didn't choose EF... Here's a thread someone sent...

  • RE: Parallelism & Inconsistent Query Perormance

    colin Leversuch-Roberts (9/22/2008)


    I was told on a couple of occasions that changing the threashold actually doesn't make much difference as the optimiser will over-rule your settings if it thinks best...

  • RE: The Glue that Binds

    Adam Machanic (9/22/2008)


    Matt Miller (9/22/2008)


    Agreed. Still - my biggest objection to it is the separation of duties issue. Since we're back to putting what essentially boils down to...

  • RE: Parallelism & Inconsistent Query Perormance

    Most of our production systems don't have multiple instances, but we do see that kind of contention in the dev & qa systems. If you do have multiple instances, it's...

  • RE: How to Identify in how many Storedprocedures hasa sp been called?

    There really isn't any. The thing to remember is, that prior to 2005, when you queried the system tables, you were querying the system tables. Since 2005, all the things...

  • RE: Monitoring how to do it?

    Integrated monitoring with 2005 and earlier isn't that sophisticated. You could build your own process to do this. SQL Server 2008 has a monitoring mechanism that is much more sophisticated....

  • RE: The Glue that Binds

    Based on a meeting earlier this week, a significant part of our developers consider database access the mostly costly and least productive part of their work. They're skipping LINQ and...

  • RE: How to Identify in how many Storedprocedures hasa sp been called?

    Chirag (9/19/2008)


    GilaMonster (9/18/2008)


    Chirag (9/18/2008)


    another way is to right click on the proc in SSMS and select view dependencies. It will show all objects that depend on the proc and...

  • RE: Parallelism & Inconsistent Query Perormance

    Yes, that's it. Jeremy Brown described it well above.

    My take. The optimizer doesn't decide on parallelism or not, it's the query engine. Any given query can have two execution...

  • RE: Parallelism & Inconsistent Query Perormance

    You may also want to change the parallelism threshold. I've always found the default, 5, to be way too low. I've usually bumped it up to somewhere between 20 and...

  • RE: Get a table back that was deleted

    Time to do a point in time recovery, if you can. If not, get a log browsing tool.

  • RE: SQL Server 2005 Baseline Performance

    There's an introduction to exactly this here[/url].

    There are a lot of drill down points you can make from there, but it generally covers the basics.

  • RE: Conditional WHERE with CASE

    Cool. Keep an eye on it though. We eliminated recompiles using this method, but, if I recall correctly, we were seeing a few more scans and a few less seeks.

  • RE: Database Single user access

    Single user mode will take the first connection that comes along.

    We usually try to set servers to restricted user mode. That way, only people with admin privileges can connect.

    You...

Viewing 15 posts - 19,531 through 19,545 (of 22,202 total)