November 16, 2009 at 10:21 pm
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
November 16, 2009 at 10:29 pm
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
November 17, 2009 at 7:16 am
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
November 18, 2009 at 10:30 am
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