Forum Replies Created

Viewing 15 posts - 76 through 90 (of 152 total)

  • RE: How could these queries be blocked?

    Grant Fritchey (5/6/2009)


    Based on the name, vWorkflowTransition is a view. That means it's probably hitting both tables and maybe more.

    Here is the command in the view.

    SELECT ...

  • RE: How could these queries be blocked?

    I found it through Activity Monitor.

    And i should add that "WITH (NOLOCK)" is also present in the view "vWorkflowTransition" which is the first query.

  • RE: How could these queries be blocked?

    No Foreign keys, completely independent tables.

  • RE: Why index is not being utilized

    Mayank Khatri (5/6/2009)


    You can for SQL Server to use a particular index by using 'Index Hints'

    For e.g. Select * from Tab_Name WITH (INDEX(Index_lala))

    WHERE ColName = 'yoyo'

    )

    sorry i should have said,...

  • RE: Why index is not being utilized

    Lynn Pettis (5/6/2009)


    Why can't you modify the query?

    becuase it is embeded in a third party dll, which i can not modify.

  • RE: reporting service issue

    I should add that you can try re-installing IIS too if you donot have any other application deployed to it.

  • RE: reporting service issue

    Try to reconfigure the reporting services, if this does not help then try to re-install reporting services.

    I am sorry i cannot suggest a better solution.

  • RE: reporting service issue

    What error are you getting?can someone else connect to these?

    Make sure services are running.

  • RE: reporting service issue

    Try deleting the existing report and shared data sources (if you have any) and then deploy the report again.

  • RE: TIMEOUT error (client thinks it's SQL Server)

    there are two things that you can try at the client level, first is "Connection Timeout=n" property of the connection string in the client application, second is "CommandTimeout=n" property of...

  • RE: Row level locking

    Thanks Gail, will give it a shot.

  • RE: Row level locking

    This is a third party CRM application that we are using, i understand that there is no need of coalesce function but the delete query is coming from a dll...

  • RE: Row level locking

    Thanks Gail i appreciate your suggestions.

    Here is the script for the problematic table, 2 indexes on the table, and 2 queries that are coming for this table, and these queries...

  • RE: Row level locking

    GilaMonster (4/24/2009)


    Can you explain more your concerns with Snapshot and why you think it won't help?

    The only concern i have is, its a very critical production db and i am...

  • RE: Row level locking

    GilaMonster (4/24/2009)


    Have you considered snapshot isolation? It'll hit TempDB hard if you have that much activity, but you'll have no blocking. It may be worth testing out on a test...

Viewing 15 posts - 76 through 90 (of 152 total)