Forum Replies Created

Viewing 15 posts - 16 through 30 (of 38 total)

  • RE: Service broker filling up Tempdb

    Is it as simple as just giving rid of the ‘with clean up’ or does it need a rewrite as the link suggests as it is a fire and forget...

  • RE: Service broker filling up Tempdb

    Is it as simple as just giving rid of the ‘with clean up’ or does it need a rewrite as the link suggests as it is a fire and forget...

  • RE: Service broker filling up Tempdb

    It is then ended by the target with

    Cursor deallocated.

    END

    IF @message_type_name = 'http://schemas.microsoft.com/SQL/ServiceBroker/EndDialog'

    BEGIN

    END CONVERSATION @dh WITH CLEANUP

    END

  • RE: Service broker filling up Tempdb

    Not exactly my code but it is a set up like this

    DECLARE @dh UNIQUEIDENTIFIER;

    BEGIN DIALOG CONVERSATION @dh

    FROM SERVICE [Initiator]

    ...

  • RE: Service broker filling up Tempdb

    SB waittype is either sleep_task or Broker_Flush. This would indicate to me that it is flushing in memory to tempdb. Hence my problem. How do I stop this

  • RE: Service broker filling up Tempdb

    Thanks for your posts, can I get back to you mid next week with the SB setup.

    I can see that I am getting the http://schemas.microsoft.com/SQL/ServiceBroker/EndDialog

    Message returned, the sproc...

  • RE: Service broker filling up Tempdb

    If you are referring to how are the queues dealt with, they are processed via a sproc. Which does have logic to capture 'http://schemas.microsoft.com/SQL/ServiceBroker/EndDialog'and end the converstaion with cleanup....

  • RE: Service Broker filling Tempdb

    Correction they are both appearing in this query, and can hang about for between 30 mins to 1 hour.

    Additional info-

    Alloc_pages in tempdb keeps growing with dealloc = 0 from...

  • RE: Tempdb

    Thanks, I'm getting closer to finding the issue.

    When I execute

    select * from sys.dm_db_task_space_usage

    where internal_objects_alloc_page_count <> 0

    Session 10 and 14 have a very high number of internal_objects.

    Activity monitor show system...

  • RE: Tempdb

    How do I find out what is causing the Internal_objects size to grow in tempdb.

    I have dbcc running each night and update stats runs each night. I would expect tempdb...

  • RE: Point in time restore

    Nice. Will try it tomorrow. Just what i was looking for.

  • RE: Shrink DB

    Is this for a production db. If so I wouldn't shrink the db and there are considerations to take into account when shrinkung the logfile many people advise not to....

  • RE: Tempdb

    Additionally , each file was set to 4gb, would it be worth extending this to 5gb and turning off autogrowth.

  • RE: Import Multiple XML files into Sql Server using SSIS

    I'm having the same issue, anybody.

  • RE: Index consolidation

    SELECT sys.objects.name

    , (avg_total_user_cost * avg_user_impact) * (user_seeks + user_scans) AS Impact

    , 'CREATE NONCLUSTERED INDEX ix_IndexName ON ' + sys.objects.name COLLATE DATABASE_DEFAULT + ' ( ' + IsNull(mid.equality_columns, '')...

Viewing 15 posts - 16 through 30 (of 38 total)