Full Backup Script


/ Published in: SQL
Save to your folder(s)

Crear un backup de una base de datos en SQL Server 2005/08 desde código en la posición predefinida del disco.

Para agregar un dispositivo y hacer el backup en posición no predefinida:
http://msdn.microsoft.com/es-es/library/ms188409(SQL.90).aspx


Copy this code and paste it in your HTML
  1. USE [master] ;
  2.  
  3. /* PRIVATE FIELD(s) */
  4. DECLARE @DATABASE SYSNAME ;
  5. DECLARE @FileName NVARCHAR(500) ;
  6.  
  7. /* FILL FIELD(s) */
  8. SELECT @DATABASE = 'NOMBRE DE LA BASE DE DATOS'
  9. SELECT @FileName = @DATABASE + '_' + CONVERT(NVARCHAR, GETDATE()) + '.bak' ;
  10.  
  11.  
  12. /* BACKUP DATABASE */
  13. BACKUP DATABASE @DATABASE TO DISK = @FileName
  14. GO

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.