Forum Replies Created

Viewing 15 posts - 91 through 105 (of 244 total)

  • RE: Unknown Physical_Device_Name Path for SQL Server Backups

    Steve Jones - SSC Editor - Monday, March 6, 2017 8:50 AM

    I would guess there's a Data Domain process that uses the...

  • RE: Unknown Physical_Device_Name Path for SQL Server Backups

    Lynn Pettis - Friday, March 3, 2017 2:58 PM

    Snapshot backups by a SAN product maybe?

    Thanks for the reply Lynn.  I wondered the...

  • RE: Getting more info out of dm_io_pending_io_requests

    I found that sys.dm_exec_requests has a Schedule_ID field in it.  You can join dm_io_pending_io_requests to it on that field.  Join to Exec_Requests and exec_sql_text and you can get what you...

  • RE: Find Stored Proc name from ObjectId in Profiler

    SQLRNNR - Friday, February 24, 2017 1:17 PM

    That may be a safe assumption. Before accepting the assumption that it is not a...

  • RE: Questions about Upgrading SQL Server 2008 FCI to 2008R2

    Perry Whittle - Thursday, January 26, 2017 11:34 AM

    it wont matter for the Failover Cluster Instance, but for non cluster aware components...

  • RE: Deadlock Problem on a Heap Table

    TheSQLGuru (1/3/2017)


    1) You have extra BEGIN TRAN's in the sproc. You should just have one at the very top and the very bottom.

    2) You should have some explicit error checking...

  • RE: Deadlock Problem on a Heap Table

    I have attached the proposed changes to the table and to the InsertUpdate proc. Now that the Devs are in, I am hoping to confirm today that the TrackingNumber...

  • RE: Deadlock Problem on a Heap Table

    Overnight I do still see some deadlocks happening on the INSERT to UPSTRacking and on the IF NOT EXISTS(SELECT * FROM UPSTracking WHERE TrackingNumber = @TrackingNumber).

    I am working on...

  • RE: Deadlock Problem on a Heap Table

    TheSQLGuru (12/31/2016)


    Jeff Moden (12/30/2016)


    TheSQLGuru (12/30/2016)


    Jeff Moden (12/30/2016)


    TheSQLGuru (12/30/2016)


    Jeff: "Another potentially very serious problem with all of this is the idea that a lot of the rows will suffer a lot...

  • RE: Deadlock Problem on a Heap Table

    Sergiy (12/30/2016)


    lmarkum (12/30/2016)


    However, I need to solve the deadlock issue,

    Then you need to fix the code.

    Look what people told you:

    Jeffrey Williams 3188 (12/29/2016)


    You need to fix this issue:

    ...

  • RE: Deadlock Problem on a Heap Table

    Jeff Moden (12/30/2016)


    What you included in the original post was a picture of the deadlock graph, not the text, which would have shown the actual code involved.

    But, from...

  • RE: Deadlock Problem on a Heap Table

    Jeff Moden (12/30/2016)


    TheSQLGuru (12/30/2016)


    Jeff Moden (12/30/2016)


    TheSQLGuru (12/30/2016)


    Jeff: "Another potentially very serious problem with all of this is the idea that a lot of the rows will suffer a lot of...

  • RE: Deadlock Problem on a Heap Table

    TheSQLGuru (12/30/2016)


    lmarkum (12/30/2016)


    Sergiy (12/30/2016)


    lmarkum (12/23/2016)


    I also dropped the non-clustered index IX_UPSTracking on just TrackingNumber since that seemed redundant to the new clustered PK and another existing index...

  • RE: Deadlock Problem on a Heap Table

    Sergiy (12/30/2016)


    lmarkum (12/23/2016)


    I also dropped the non-clustered index IX_UPSTracking on just TrackingNumber since that seemed redundant to the new clustered PK and another existing index IX_UPSTracking on...

  • RE: Deadlock Problem on a Heap Table

    Jeff Moden (12/30/2016)


    lmarkum (12/30/2016)


    like are the TrackingNumber values always going to be ever-increasing

    You should be able to easily figure that out on your own because you have an IDENTITY column....

Viewing 15 posts - 91 through 105 (of 244 total)