Forum Replies Created

Viewing 15 posts - 19,546 through 19,560 (of 22,213 total)

  • 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...

  • RE: Conditional WHERE with CASE

    One way you can do this, and it's a bit problematic let me say up front, is to do something like this (p-code):

    WHERE... 1 = CASE WHEN (ColA IS NULL)...

  • RE: SQL server performance monitor

    Too true. You're right. I keep forgetting those things are in there.

  • RE: SQL server performance monitor

    To determine what's happening with the system, yes, you use Perfomance Monitor. For a detailed look inside the databases, to get individual query performance and behavior, then you use a...

  • RE: SQL Spelling mistakes

    Or, write all your code in a syntax checking tool like Visual Studio Team System Database Edition. I can't even save a script with bad syntax without getting an alert...

Viewing 15 posts - 19,546 through 19,560 (of 22,213 total)