Forum Replies Created

Viewing 15 posts - 61 through 75 (of 282 total)

  • RE: When my Application is UP SQL server is Slow

    My application is taking rest of the memory and the CPU is high when it get launched.

    my question is if sql is allocated with 3 gb of RAM why it...

  • RE: Ghost records still exits

    If millions of record are there and if delete is done on this , will the pages remain in db and occupy space?

  • RE: GUID vs BIGINT

    GilaMonster (5/21/2014)


    Are you explicitly inserting NEWID() into the table, or are you allowing the default to be used?

    I am explicitly Inserting into table using UidcreateSequential Method

    ]http://msdn.microsoft.com/en-us/library/aa379322(VS.85).aspx[/url]

    http://msdn.microsoft.com/en-us/library/ms189786.aspx

    Thanks

  • RE: When my Application is UP SQL server is Slow

    3GB for SQL server and 2 GB for Application

  • RE: GUID vs BIGINT

    My question was to will the table be fragment again if the old values where there.

    I did rebuild (alter index) post changing to NEWSEQUENTIALID().

    I see table getting fragmentation after changing...

  • RE: When my Application is UP SQL server is Slow

    free_mascot (5/21/2014)


    You mean once your application launch everything become normal?

    Opposite ...abnormal

    on launching my app my sql server query runs slow. before launch it normal

  • RE: GUID vs BIGINT

    What will happen for the pregenerated id's?

    those ids are generated by NEWID() which is around 10 million record in the table.

    now changed NEWSEQUENTIALID() and it starts its sequential orders.

    will my...

  • RE: When my Application is UP SQL server is Slow

    free_mascot (5/21/2014)


    What kind of application you are using on database server? As best practice microsoft recomend to have dedicated database server.

    Check for any hardware bottlenack. Are you facing issue...

  • RE: GUID vs BIGINT

    Thanks Gail

    so what if the unique id is generated from outside database

    If it is from UidcreateSequential function

    how the performance will be?

    it is same as NEWSEQUENTIALID?

    is the behaviour is same for...

  • RE: Merging of another DB's data

    What do you mean by merge in your case?

    moving Database B details to Database A

    1. May you have the same data in both databases?

    If Q#1 = Yes:...

  • RE: Need Query for calculation total

    The pic is not clear can u tell in select statement

    like 1+4 and so on....

    since id 1 is not clear.

    for 2 it is like ?

    Select 1+4=5

    Select 4+2=6

    Select 2+4=6

    Select 4+0=4

  • RE: Need Query for calculation total

    vignesh.ms (5/20/2014)


    Hi there,

    here is the sample

    create table Sample (id int ,value int,total int)

    insert into Sample (id,value) values (1,1)

    insert into Sample (id,value) values (1,4)

    insert into Sample (id,value) values...

  • RE: GUID vs BIGINT

    GilaMonster (5/20/2014)


    No, the fragmentation will be the same, both are having NEWID() specified as the value so the default is being overridden.

    No Gail

    I checked it ...there is less frag when...

  • RE: GUID vs BIGINT

    Grant Fritchey (5/19/2014)


    Then the default of NEWSEQUENTIALID wasn't actually used. Microsoft says that NEWSEQUENTIALID will be faster, so that's not a surprise. It's right there in the documentation that I...

  • RE: GUID vs BIGINT

    Grant Fritchey (5/19/2014)


    Can it still fragment? Yes. If you substitute NEWID will that lead to even more fragmentation? Yes. Nothing has changed since the last time we talked about how...

Viewing 15 posts - 61 through 75 (of 282 total)