1. -- To allow advanced options to be changed.  
  2. EXEC sp_configure 'show advanced options', 1  
  3. GO  
  4. -- To update the currently configured value for advanced options.  
  5. RECONFIGURE  
  6. GO  
  7. -- To enable the feature.  
  8. EXEC sp_configure 'xp_cmdshell', 1  
  9. GO  
  10. -- To update the currently configured value for this feature.  
  11. RECONFIGURE  
  12. GO  
  13.  
  14. declare @sql varchar(2000)  
  15. set @sql='del E:\database_data_Bak\database_data_2005\database_backup_' 
  16. + rtrim(convert(varchar,getdate()-15,112))+'*.bak' 
  17. exec master..xp_cmdshell @sql  
  18. set @sql='del E:\database_Bak\database_data_2005\database_backup_' 
  19. + rtrim(convert(varchar,getdate()-15,112))+'*.trn' 
  20. exec master..xp_cmdshell @sql