/ Published in: SQL
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
Para agregar un dispositivo y hacer el backup en posición no predefinida:
http://msdn.microsoft.com/es-es/library/ms188409(SQL.90).aspx
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
USE [master] ; /* PRIVATE FIELD(s) */ DECLARE @DATABASE SYSNAME ; DECLARE @FileName NVARCHAR(500) ; /* FILL FIELD(s) */ SELECT @DATABASE = 'NOMBRE DE LA BASE DE DATOS' SELECT @FileName = @DATABASE + '_' + CONVERT(NVARCHAR, GETDATE()) + '.bak' ; /* BACKUP DATABASE */ BACKUP DATABASE @DATABASE TO DISK = @FileName GO