Forum Replies Created

Viewing 15 posts - 22,006 through 22,020 (of 39,824 total)

  • RE: Licensing fun

    Elliot is correct, you upgrade your license to 2008 from 2000, picking the edition you want. Standard -> Enterprise may be costly, and I'm not sure you save much if...

  • RE: Are the posted questions getting worse?

    D.Oc (10/12/2009)


    Anyone watched Broncos vs Patriots game yesterday, it was a gr8 game.

    Of course! I was surprised to see the Broncos win, but it was a great...

  • RE: Are the posted questions getting worse?

    I think you can be anonymous, or create a local account.

  • RE: Manager of One

    Doing what you think is the best practice, or implementing something independently doesn't necessarily mean you are managing yourself. Managing yourself includes communication with your boss and appraising them of...

  • RE: SQL Server Log

    If you rarely restart SQL Server, the log grows like crazy. I'd set a job to periodically cycle error logs. However I would also increase the number of logs you...

  • RE: Weekly Maintenance

    Looks like a good plan overall. I agree with Silverfox, don't shrink.

  • RE: Reindex - database grow

    Everything is still logged in simple mode. Once the transaction commits, the space is reused.

    The index is rebuilt as a separate copy, that's in the data file, and you need...

  • RE: When is [With Replace] used

    What do you mean by disturb the log? When you set up a new database (new or restored), the log starts from zero. Old logs don't matter.

    You would use WITH...

  • RE: Reindex - database grow

    This is a logged operation, and so two copies of the index are needed until the reindexing is finished.

    Your databases are growing because you have not properly sized them. The...

  • RE: Database corruption / steps to fix issues

    If this is production, call MS. Don't mess around with this.

  • RE: Dynamic stored procedure hangs, Select works fine

    Are you sure it's the same code?

    Can you post it?

  • RE: MCITP...

    Silverfox is correct, this wouldn't apply if you don't hold a MS certification.

    I wouldn't look at the exam page, look at the certification page and choose the path the makes...

  • RE: Auto Growth

    Yes, that's all you do. Monitor the size and free space, and keep enough space to last you 3-6 months. Increase it in one large chunk for the next 3-6...

  • RE: a simple store procedure

    As Mike showed, you need to write the update statement first.

    Once you do that, just enclose it in a stored procedure.

    create procedure UpdateDownload

    as

    update....

    return

    Let me say that I might recommend you...

  • RE: Auto Growth

    change the file sizes in the database properties in SSMS, or you can use the ALTER DATABASE command (http://msdn.microsoft.com/en-us/library/aa275464%28SQL.80%29.aspx) modify the file size.

Viewing 15 posts - 22,006 through 22,020 (of 39,824 total)