Forum Replies Created

Viewing 15 posts - 14,626 through 14,640 (of 49,552 total)

  • RE: what are the genderal reasons for database crashing

    Err.. without any clue of what you mean by 'crashing', it's a little hard to have any useful advice. Could you perhaps be a little more specific?

  • RE: Consistency Check on 3TB database

    Ratheesh.K.Nair (1/25/2013)


    Hi Experts,

    Is there any performance impact if we run DBCC CHECKDB? if yes,then what?

    Yes. Heavy CPU and IO load.

    We have a 3TB database and we are planning to...

  • RE: Transactions

    Yup, that's about it for SQL 2000's error handling. Fun, isn't it?

  • RE: Transactions

    Dave Hall (1/25/2013)


    I'm calling the 1st Proc like before and the transaction errors are gone (yay) BUT the Delete statement still executes and is not rolled back (boo).

    I thought that...

  • RE: Transactions

    Dave Hall (1/25/2013)


    Thanks, GilaMonster. I have indeed learned that they are a pain!

    I understand the concept of how nested transactions work and have tried using @@Trancount to see if...

  • RE: Transactions

    Nested transactions are a lie (and a major pain)

    The rollback in the inner procedure rolls back all the way to the first begin tran

    Hence you enter the inner proc with...

  • RE: latest row

    Add a datetime column that defaults to getdate(), that's the date inserted. You can then max that and group by account to get the latest rows

  • RE: Are the posted questions getting worse?

    SQLRNNR (1/24/2013)


    ChrisM@home (1/24/2013)


    SQLRNNR (1/24/2013)


    ChrisM@home (1/24/2013)


    SQLRNNR (1/24/2013)


    john.arnott (1/24/2013)


    Am waiting with bated breath to see if "Saint" Lynn lives up to his kind and understanding reputation. Someone stumbled on an...

  • RE: Partitioning - SQl server 2005

    poratips (1/24/2013)


    Now i have to DateTime Column - OpenDate and closeDate, I need to use following logic:

    If Opendate > Today's date then i need to move into Partition1

    If Opendate =...

  • RE: Partitioning - SQl server 2005

    You can partition an existing table.

  • RE: Partitioning - SQl server 2005

    Cool, then start by doing a lot of reading on partitioning, it's not something you want to implement without a good understanding.

  • RE: Killed clustered index creation, running out of space

    You have inadequate space on the TempDB drive and the user database drive to rebuild a clustered index (yes, rebuilding requires the same free space as creating it), that's a...

  • RE: Dynamic SQL--What is Erland Sommarskog saying?

    CREATE PROCEDURE search_orders @custid nchar(5) = NULL,

    ...

  • RE: Killed clustered index creation, running out of space

    Marius.D (1/24/2013)


    Well, it's not full, sorry, it just doesn't have enough room available (81 out of 84GB).

    That looks pretty full to me.

    I think, before worrying about indexes, you might...

  • RE: Partitioning - SQl server 2005

    poratips (1/24/2013)


    Thanks.

    We need to improve the performance.

    Partitioning is not primarily for performance. It can improve performance, but that usually requires queries constructed to take advantage of the partitioning. If your...

Viewing 15 posts - 14,626 through 14,640 (of 49,552 total)