Forum Replies Created

Viewing 15 posts - 9,766 through 9,780 (of 49,552 total)

  • RE: how opening 64bit sql2008 database by 32bit sql2012

    Database files aren't processor-architecture specific. A database file for a 32 bit instance is identical to one for a 64 bit instance.

    You're trying to attach a SQL 2008 database on...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: PK column don’t have constraint?

    ananda.murugesan (3/8/2014)


    By default PK does not allowed duplicate values on table also not allow NULL value, Why again need to create ADD CONSTRAINT against to primary key filed?

    You mean the...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Are the posted questions getting worse?

    Anyone?

    http://www.sqlservercentral.com/Forums/Topic1548708-324-1.aspx

    I have a nasty feeling that it's blocked waiting for the alter database to go through (without a WITH ROLLBACK clause, that will wait forever iirc) because of an existing...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Rebuild Script Has Been Running 24 Hours

    Check if it's blocked and if so by what and on what resource.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Reseed Max value

    Koen Verbeeck (3/7/2014)


    Maybe the information is outdated?

    "No performance comparisons", as in hard numbers. Yes, I could run some myself, right now it's not something I can be bothered with. More...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Reseed Max value

    Koen Verbeeck (3/7/2014)


    Denny Lee has written on the subject:

    Microsoft SQL Server: The Sequencing Solution

    Although I guess you already knew this. 🙂

    Denny Cherry?

    No performance comparisons there though.

    I'd be interested to see...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Reseed Max value

    Sushil Dwivedi (3/7/2014)


    If you inserting value into table and your transaction got failed,identity assigned value to failed transaction as well

    like

    1,2,3,4...failed... than it will not start from 5.. it will start...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Reseed Max value

    Sushil Dwivedi (3/7/2014)


    performance wise, Sequence is better than Identity

    Can you show your tests and benchmarks which show this performance improvement from sequence?

    we don’t have limitation in sequence like we...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: sp performance

    Sqlsavy (3/7/2014)


    Thanks. Does updating stats on heap table is of any use?

    Yes

    How to reduce fragmentation <30?

    IndexTypeavg_fragmentation_in_percent

    CLUSTERED INDEX 97.67442

    CLUSTERED INDEX...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Migrate GUID TO BIGINT

    yuvipoy (3/7/2014)


    As i said since the data is growing large and large having uniqueidentifier and querying the data might takes time.

    Inorder to reduce the time in future to insert the...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: So what does constitue "high logical reads"

    simon_s (3/7/2014)


    Do you have a ballpark youd start at for total LIO per server or for a level of percentage increase where youd start to think ouchie

    Depends on the server,...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Migrate GUID TO BIGINT

    Maybe, maybe not, very hard to tell without knowing a lot about your app.

    You need to test this process out in dev, first see if it's even possible in the...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Migrate GUID TO BIGINT

    Have you tested the procedure out on your dev/test server? Can it be done in the time you have?

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: blocking session id does not release its key

    Akayisi (3/7/2014)


    Then how im suppose to see the open transactions ?

    sys.dm_tran_active_transactions

    sys.dm_tran_session_transactions

    sys.dm_tran_locks

    Lots of options. Good examples in Books Online, there's one on the page for sys.dm_exec_sessions, probably elsewhere too.

    First confirm...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: blocking session id does not release its key

    Akayisi (3/7/2014)


    as far as i know if sys dm exec requests returns nothing there is no open transactionn. isn't it ?

    No.

    Nothing from exec requests means there's no currently executing statement....

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 15 posts - 9,766 through 9,780 (of 49,552 total)