Forum Replies Created

Viewing 15 posts - 4,066 through 4,080 (of 7,191 total)

  • RE: Index maintenance increase log size

    Well, the clustered index is the data, so I think you're looking at the larger number. Index_size only includes, I believe, the non-clustered indexes (as well as XML, spatial...

  • RE: Index maintenance increase log size

    Don't know. Where did that data come from?

    John

  • RE: Index maintenance increase log size

    In that case, I'm not sure why your transaction log should grow to nearly three times the total size of your indexes. Does that 60GB include the clustered indexes?...

  • RE: Does a "Begin... End" in a While loop act as a transaction?

    Jason

    You're only running one ALTER INDEX statement at a time, so it doesn't make any difference whether you use an explicit transaction or not. I think what Lynn was...

  • RE: Index maintenance increase log size

    If it's a simple while loop, they'll execute serially anyway and therefore putting a delay between them won't have much effect. Are you sure you're using option 3 that...

  • RE: Index maintenance increase log size

    Maybe you've got an uncommitted transaction or something like that. How much free space is there in the log file after the index maintenance has finished and the log...

  • RE: Index maintenance increase log size

    Once the rebuild of any index has used up space in your transaction log, that space won't be freed up again until the transaction log is backed up. You...

  • RE: Index maintenance increase log size

    Is your database in Full recovery mode, and if so, how often do you back up the transaction log?

    John

  • RE: Truncate Log Script

    You're doubling up your quotes. If you avoid doing that, it should solve your problem. If you're working in Management Studio, everything enclosed in quotes should be coloured...

  • RE: Update Join Query Help!!!!

    Who told you to do that? Please will you post the CREATE TABLE statement for Table A?

    John

  • RE: Update Join Query Help!!!!

    You shouldn't do that, because you'll destroy your referential integrity, and chances are you can't do it anyway, since the REASONSREFERRAL column probably has a data type that won't allow...

  • RE: error in Transactions... need urget help

    Presumably you're hitting an error in your TRY block and breaking out of it before the COMMIT TRANSACTION statement is reached. Can you not lose the explicit transaction -...

  • RE: Backups Failing

    I'm not sure it would, to be honest. They'd be two different sessions. You'd need to test. But even if it did work, I'd strongly recommend against...

  • RE: Backups Failing

    Use a UNC path, not a mapped drive. The mapped drive is only visible to the user that mapped it, not to the SQL Server service account, under whose...

  • RE: With or without DISTINCT ???

    Use DISTINCT when you want to eliminate duplicates from your result test. If you use it in an existence test, like you did in your original post, then it...

Viewing 15 posts - 4,066 through 4,080 (of 7,191 total)