Forum Replies Created

Viewing 15 posts - 166 through 180 (of 220 total)

  • RE: SQL Server 2012 licensing

    up to 30 individual users

  • RE: SQL Server 2012 licensing

    anthony.green (2/4/2013)


    As with any thing licensing, speak to MS or your MS reseller directly, dont take a public forum as the truth on something as important as licensing as MS...

  • RE: High page splits/sec

    GilaMonster (2/1/2013)


    Page splits are caused by inserts into the middle of indexes and updates that grow the row, nothing else. They're internal to SQL.

    As for thresholds, take them with a...

  • RE: High page splits/sec

    GilaMonster (2/1/2013)


    Sure, often a lot higher that what you have there.

    Hi Gila,

    I read somewhere that page splits/sec should not be more then 20% of the batch requests/sec, mine are...

  • RE: High page splits/sec

    Anyone else had high page splits?

    Thanks

  • RE: High page splits/sec

    Hi, most of the time im using 90 sometimes 0

  • RE: High page splits/sec

    Not using guids, we are using identity columns

  • RE: SQL Deadlocks

    GilaMonster (1/23/2013)


    That's a whole lot of fairly useless indexes. 🙁

    🙁 why do you say that? Could you recommend better ones? thanks

  • RE: SQL Deadlocks

    GilaMonster (1/23/2013)


    Can you post the table definition and all index definitions for dbo.order?

    Just spotted there are 2 indexes on session_id I will drop one of them.

    CREATE TABLE [dbo].[order](

    [rsn] [bigint] IDENTITY(1,1)...

  • RE: SQL Deadlocks

    anthony.green (1/23/2013)


    All statistics and indexes rebuilt and updated on the order table?

    Can you post the execution plans as a SQLPLAN file from the below query, if they exist any more.

    select...

  • RE: SQL Deadlocks

    GilaMonster (1/23/2013)


    bugg (1/23/2013)


    Hi Anthony, I don't have any deadlock XML in my error log but i do have the information above just broken up into lines.

    That's a deadlock graph. 2...

  • RE: SQL Deadlocks

    anthony.green (1/23/2013)


    Do you have the deadlock XML in the error log, should be many many lines that looks like this

    <TextData><deadlock-list>

    <deadlock victim="process53b9288">

    <process-list>

    <process id="process53b9288" taskpriority="0" logused="476"...

  • RE: SQL Deadlocks

    anthony.green (1/22/2013)


    Do you have traceflag 1222 enabled?

    If so can you post the deadlock graph from the error log

    If not run

    DBCC TRACEON (1222, -1)

    and then post the graphs once a deadlock...

  • RE: SQL Deadlocks

    GilaMonster (1/22/2013)


    bugg (1/22/2013)


    GilaMonster (1/22/2013)


    bugg (1/22/2013)


    Any insight into dealing with deadlocks would be greatly appreciated.

    In general:

    Optimise the queries. If that doesn't fix the problem use one of the row versioning-based isolation...

  • RE: SQL Deadlocks

    GilaMonster (1/22/2013)


    bugg (1/22/2013)


    anthony.green (1/22/2013)


    Do you have traceflag 1222 enabled?

    If so can you post the deadlock graph from the error log

    If not run

    DBCC TRACEON (1222, -1)

    and then post the graphs once...

Viewing 15 posts - 166 through 180 (of 220 total)