MSSQL 脚本还原数据库命令总结
本文章收藏了大量的关于MSSQL 脚本还原数据库命令,有需要学习的朋友可参考参考。
例1
代码如下 | 复制代码 |
use master --还原数据库 RESTORE DATABASE [数据库] |
例2
sqlserver2005数据库备份文件,在management studio中使用restore总是提示异常
只好尝试用sql脚本进行还原,成功!
代码如下 | 复制代码 |
RESTORE DATABASE IAC |
注:move后面的文件名是原有数据库的 data 文件名,以及data日志文件名
如果出现错误可参考
在management studio中使用restore时,生成的脚本如下:
RESTORE DATABASE IAC FILE = N'IAC'
FROM DISK = 'l:IACSystemDb071218.bak' WITH FILE = 1,
WITH MOVE 'IACSystemDb' TO 'D:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLDataIAC.mdf',
MOVE 'IACSystemDb_Log' TO 'D:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLDataIAC_log.ldf',
STATS = 10, REPLACE
错误提示bak包含了不止一个文件,所以去掉FILE = N'IAC'和WITH FILE = 1
脚本是从网上搜索的一些方法
事务日志是可以基于时间点恢复的,必须在full或bulk_logged模式下
代码如下 | 复制代码 |
Alter database [DBName] set recover bulk_logged, then the following operation will not be logged: |
差异备份的数据文件不和数据备份的文件用一个文件,尽管可以
每一种备份模式下,备份的同时要备份master和msdb数据库
数据备份和清空日志没有关系,但清空日志要发生在事务日志备份之后,在这个之间
模式设置:
代码如下 | 复制代码 |
alter database CACDB_S1000 set recovery bulk_logged |
数据备份:
代码如下 | 复制代码 |
backup database CACDB_S1000 to disk='E:backupdataCACDB_S1000_200801031245.data' |
差异备份:
代码如下 | 复制代码 |
backup database CACDB_S1000 to disk=' E:backupdiffCACDB_S1000_200801031245.diff' with DIFFERENTIAL |
清空日志:
代码如下 | 复制代码 |
DUMP TRANSACTION CACDB_S1000 WITH NO_LOG BACKUP LOG CACDB_S1000 WITH NO_LOG DBCC SHRINKDATABASE (CACDB_S1000) |
事务日志备份:
代码如下 | 复制代码 |
BACKUP LOG CACDB_S1000 to disk = ' E:backuplogCACDB_S1000_200801031245.log' |
还原:
代码如下 | 复制代码 |
RESTORE DATABASE CACDB_S1000 FROM DISK = 'E:backupdataCACDB_S1000_200801031245.data' with NORECOVERY RESTORE LOG CACDB_S1000 from disk = ' E:backuplogCACDB_S1000_200801031250.log' |

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

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)
