SQL2005 自动备份的脚本
避免无用日志过大(根据实际情况选择)按照不同版本来备份
此版本是始终只有最新的一版(我自己的用的是版本是每天都有一个备份)代码如下:
declare @DBName varchar(200)
set @DBName='ReportServer$SQL2005'
--截断日志
DUMP TRANSACTION @DBName WITH NO_LOG
--收缩数据库
DBCC SHRINKDATABASE (@DBName,TRUNCATEONLY)
--备份数据库
USE master
declare @Version varchar(20)
declare @DateAppend varchar(20)
declare @BasePath varchar(200)
declare @BakPath varchar(200)
--设定备份的基本目录
set @BasePath='f:\tmp'
--设定版本,每个版本的备份放在不同的地方
set @Version='V6.1'
--设定备份的完整路径
set @BakPath=@BasePath+'\'+ @Version +'\Db.Bak'
USE master
--创建备份设备,如果存在则无需建立
if exists(select * from sysdevices where name='CTOS_DB_Bak')
begin
EXEC sp_dropdevice 'CTOS_DB_Bak'
declare @tmpcmd varchar(100)
set @tmpcmd='del ' + @BakPath
EXEC sp_configure 'show advanced options',1
RECONFIGURE
EXEC sp_configure 'xp_cmdshell', 1
RECONFIGURE
exec master..xp_cmdshell @tmpcmd
EXEC sp_configure 'show advanced options', 1
RECONFIGURE
EXEC sp_configure 'xp_cmdshell', 0
RECONFIGURE
end
EXEC sp_addumpdevice 'disk','CTOS_DB_Bak',@BakPath
--备份数据库
BACKUP DATABASE @DBName TO CTOS_DB_Bak

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Some Windows 10 users have found that the system's built-in automatic backup function is activated during use. Although this function helps ensure data security, some users may not feel the need to continue enabling it due to storage space considerations or other reasons. This function. Therefore, if you want to turn off the automatic backup function in Windows 10 system, the correct operation steps are particularly important. Next, this article will introduce in detail how to turn off the automatic backup function of the Win10 system for the reference implementation of users who have this need. Close method 1. Use the "win+i" shortcut key to quickly open the "Settings" page. After entering the new page, you need to click the "Update and Security" option. 2. In the new interface that opens, click in the left column

Are you also using Quark Network Disk software? But do you know how to automatically back up Quark Network Disk? The editor below will bring you the method of automatic backup of Quark Network Disk, let us take a look below. Open Quark Network Disk on the desktop. Click on my avatar to enter the main interface. Click the Quark Network Disk automatic backup option to turn it on.

With the popularity of Internet applications, database backup is particularly important for website operation and maintenance and data security. Manual backup can certainly provide certain protection, but for websites with large amounts of data, manual backup is obviously cumbersome and time-consuming. At this time, the automatic backup method has become an indispensable choice. One of the more popular and easy-to-understand automatic backup methods is to use PHP scripts to automatically backup the MySQL database. This article will introduce how to use PHP to implement automatic backup of MySQL database. 1. Backup My

1. Enter Xiaomi WiFi and click on the toolbox in the lower right corner. 2. Find the routing settings. 3. Enter the router configuration backup. 4. Click to turn on automatic backup of router settings.

1. Press the [Win+R] keys to open the run; as shown in the figure: 2. Enter cmd in the following window to open the command line window; as shown in the figure: 3. Enter the command robocopy in the command line window to view it. Corresponding parameter description; as shown in the figure: 4. For example, to automatically back up the demo folder under E drive to the demo folder under H drive every 10 minutes, use the following command: robocopyE:demoD:demo/R:0/ W:0/MOT:10; As shown in the figure: 5. The parameter R above represents the number of retries after the backup fails, W is the retry interval, and MOT represents the time interval of automatic backup; as shown in the figure: 6 . After the automatic backup is completed, you can see the automatically backed up folder under the D drive.

With the wide application of Redis database in Internet applications, more and more enterprises and developers have begun to pay attention to the backup and protection of Redis database. Automatic backup is an effective means to ensure the security of Redis. This article will introduce how to use PHP to implement automatic backup of the Redis database. 1. Redis database backup Redis is an open source key-value database. It not only supports basic data types, but also supports complex data structures, such as lists, hash tables, and sets. Redis backup can be

In the process of using Baidu Netdisk, we can set up a function that allows automatic backup of photos. The following is an introduction to the operation method. Interested friends come with me to take a look. After opening the Baidu Netdisk application on your mobile phone, enter the main interface, and then click the "My" button in the lower right corner to enter the personal center page. Next, find the "Settings and Services" option at the bottom of the page, click to enter and select the "Settings" function to open the settings page. 2. There is an "Automatic Backup Setting" on the settings page, click on it to enter. 3. Next, click the "Album Backup" item on the entered page to enter. 4. After coming to the new page, you will see a switch button behind "Automatically backup photos". Click the circular slider on it to set it.

With the continuous development of Internet technology, the importance of databases has become increasingly prominent. The database is an important carrier for storing data. If the database fails, problems such as data loss and data inconsistency will cause huge losses to the enterprise. In order to ensure data security and integrity, a backup solution must be adopted. This article will introduce how to use PHP to realize automatic backup of MongoDB database to help enterprises improve data security. 1. Introduction to MongoDB backup MongoDB is a brand new non-relational database that can store sea
