Forum Replies Created

Viewing 15 posts - 34,786 through 34,800 (of 49,552 total)

  • RE: Identity column limitation

    And I've seen many where the developers thought it worked like a charm until suddenly there were duplicate key errors.

    If you insist on maintaining the sequence yourself you've got...

  • RE: when a checkpoint was last performed

    Why overwrite at all? Each log backup to an individual file, each full backup to an individual file. Then there's no chance of overwriting the wrong file, they can...

  • RE: Identity column limitation

    Dugi (1/12/2010)


    I said before that large and medium DBs have tables that the Identity Col has generated value with combination, and the last value can be sequence number that generated...

  • RE: when a checkpoint was last performed

    I stand by what I said earlier. What happens if shortly after the full backup you find that a table something has messed up data and you need to restore...

  • RE: Unexpected !!!!!!!!!!! having CLUSTERED INDEX SEEK

    I have never posted such a link because, as far as I know, there's no legal downloadable eBook of any of the Inside SQL Server series. Go and buy the...

  • RE: when a checkpoint was last performed

    I would rather suggest one file per backup. That way you don't overwrite every day. Problem with your design is, say 20 minutes after you did the backup with init,...

  • RE: memory in 64 bit when idling

    repent_kog_is_near (1/12/2010)


    I do not (yet) use that trace. Do you recommend it?

    Have you looked up that traceflag (search engine of your choice)? Have you examined info given regarding when...

  • RE: Identity column limitation

    Dugi (1/12/2010)


    I said, because meant if you start form 1 till 2 000 000 000 will take long time (maybe 1 year on large companies like banks and telephony), I...

  • RE: Trigger on table is Broke?

    First things first, that trigger will not work correctly when more than one row is inserted into the table. You're selecting values from the inserted table into variables, what's going...

  • RE: Identity column limitation

    Dugi (1/12/2010)


    usually the tables cannot have 2 billion records

    Why do you say that? There's no inherent restriction that stops tables from having 2 billion rows. It's easily possible on larger...

  • RE: Identity column limitation

    That's not a limitation of identity. That's a limitation of the data type you used on that column. As I said, identity is not a data type. The data type...

  • RE: Identity column limitation

    What do you mean by 'limit'?

    Identity is not a data type, it's just a property of a numeric column. You can set identity on an int column for a max...

  • RE: Locks

    Can you be more specific? Sample for what regarding locking?

    All SQL queries take locks without you having to do anything. In the default isolation level shared locks are released as...

  • RE: Restricting a backup from restore

    No way to ensure that in SQL 2000/2005. Just make sure the backups are secured so that unauthorised people can't get at them.

    The post was in the SQl 2008 forum,...

  • RE: Some issues in query plan's interpretation

    huhaoranxing (1/12/2010)


    But I guess there should be a parse tree before generating the query plan.But the tree's format is a secret to us,do you known anything about it?

    If it's...

Viewing 15 posts - 34,786 through 34,800 (of 49,552 total)