SQL Server 2005 Automatic Backups

  • Hi Friends,

    Is it possible to perform Automatic Backups (ex: Daily at 8 pm)

    in SQL Server 2005 Standard edition.If so,Pl give me a detailed explanation about it....

    Thanks in advance

    Regards,

    Sundar

  • Hi, you've got quite a few options...

    1. Maintenance Plans

    2. Schedule a TSQL task job with relevant BACKUP.... code...

    3. Build a SSIS package with the backup tasks.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • You can use the Maintenance plan for the scheduled database backup option as suggested by Henrico Bekker.

    You can read more about maintenance plan on SQL Book on Line. Some summary is here listed on below url:

    http://www.sql-server-performance.com/articles/dba/creating_backup_jobs_p1.aspx

  • manikam_sundar (11/16/2009)


    Hi Friends,

    Is it possible to perform Automatic Backups (ex: Daily at 8 pm)

    in SQL Server 2005 Standard edition.If so,Pl give me a detailed explanation about it....

    Thanks in advance

    Regards,

    Sundar

    Hello,

    You can use SQL Agent job -> TSQL code -> schedule at 8PM.

    For TSQL code:

    Backup database [databaseName]

    to disk = '\\Servername\sharefolder\filename.bak'

    with init, stats = 10

    Hope this helps,

    \\K

    ______________________________________________________________________________________________________________________________________________________________________________________
    HTH !
    Kin
    MCTS : 2005, 2008
    Active SQL Server Community Contributor 🙂

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply