Forum Replies Created

Viewing 6 posts - 31 through 36 (of 36 total)

  • RE: I want to avoid transactions

    You may want to experiment with the SET IMPLICIT_TRANSATIONS option. I would be interested if this helps.

    On the other hand, you could influence the level of 'locking' by using SET...

  • RE: Which is faster?

    It really depends on the Query plan and the query plan may depend on table statistics, indexes etc.

    One thing I noticed is the constant 1518 in your query. If this...

  • RE: "insert exec" much slower than exec alone

    More news: Inside a transaction (and also inside an implicit insert..exec transaction) the SP does not have proper statistics on the tables. At least this is what the query...

  • RE: "insert exec" much slower than exec alone

    Oh no !

    It's the implict transaction for insert..exec, it makes SQL Server use a different query plan. Apparently statistics for temp tables are missing when the SP is executed within...

  • RE: "insert exec" much slower than exec alone

    > you're saying overall its slower, or

    > you've narrowed it to one line in the proc?

    I put various 'print getdate' statements into the proc and found out that...

  • RE: No debugging on SQL Server 7

    The Server runs 7.00.1077 (i.e.Service Pack 4 plus hot fix 7.00.1077).

    The SQLServer Service uses "system account", my client logs in as SA. I have also tried different user log-ins, but...

Viewing 6 posts - 31 through 36 (of 36 total)