Forum Replies Created

Viewing 15 posts - 1,441 through 1,455 (of 2,904 total)

  • RE: Help, Backups out of order Full and Diff

    You should set your backups to be done as jobs in SQL Server.

    If you MUST have the app do it, the app should have a way to schedule the backups...

  • RE: Database is still in use when i will backup...any idea

    If you don't care if the database is available to users, detach it. Copy the .mdf and .ldf files. Then reAttach it.

    But Grambowk's suggestion is the best. If possible, use...

  • RE: Backup can not be performed on database

    You can not do transaction log backups if:

    The database is Master

    The database is MSDB

    The database is in SIMPLE recovery mode.

    -SQLBill

  • RE: Nitpicky QA annoyance

    I use QA a lot to edit stored procedures and that has never happened to me.

    What edition of SQL Server are you using? (6.5, 7, 2000, 2005)

    What version (service pack/hotfix...

  • RE: Data Size issue

    Okay...I found the answer.

    Refer to the BOL, use the index tab and enter SQL Server, capacities. Scroll down to find the section for Maximum Amount of Physical Memory.

    Developer Edition has...

  • RE: Data Size issue

    Do you have a licensed version of Developer or did you install it as a Evaluation version? I believe that Evaluation versions have a 2GB limit.

    -SQLBill

  • RE: How do I make the Database to perform fixed things daily ?

    Here's the simplest way to get started and learn...

    In Enterprise Manager, expand until you see Management. Expand that. Click on Jobs.

    Right click on Jobs and select New Job. On the...

  • RE: Question of the Day for 01 Dec 2005

    While it was correct, the answer wasn't complete. Per BOL, VARCHAR defaults to 1 when it's used in a data definition or variable declaration statement. BUT it defaults to 30...

  • RE: do you need to take take server offline to backup, what is point of attaching and detaching?

    I use the 'native' SQL Server commands to backup the database and log to disk, then I use Backup Exec to copy the backup files to tape. All of...

  • RE: How do I restore a DB that wants 6X more space then it needs?

    SQL Server doesn't know that you don't want that extra space. It doesn't really know that it is unused space. It just knows that the backup uses 80 GB of...

  • RE: Data Size issue

    XP is not a SERVER version of Windows.

    SQL Server 2000 Standard or Enterprise edition requires a Server version of Windows.

    If you try to install SS2K Standard or Enterprise on a...

  • RE: Delete data: Offline or Online?

    As everything with management, you show them there is a problem and what the best solution is and they say we'll get around to that. We are looking at...

  • RE: sp_password problem

    It depends on why you are changing the procedure. I have changed some system procedures, specifically sp_spaceused. Spaceused returns more data than I normally need, so I changed it. However,...

  • RE: Delete data: Offline or Online?

    (quote)It seems obvious that it would be faster in single-user mode, but I don't know how you would estimate the time difference with no test system.(end quote)

    This is why I'm...

  • RE: Delete data: Offline or Online?

    That is basically what the 3rd party purge does. It breaks it down to 100 rows at a time. My question isn't about how to do the delete....I have...

Viewing 15 posts - 1,441 through 1,455 (of 2,904 total)