千家信息网

sql server数据库备份语句

发表于:2025-01-31 作者:千家信息网编辑
千家信息网最后更新 2025年01月31日,DECLARE @strPath NVARCHAR(200)set @strPath = convert(NVARCHAR(19),getdate(),120)set @strPath = REPLA
千家信息网最后更新 2025年01月31日sql server数据库备份语句

DECLARE @strPath NVARCHAR(200)


set @strPath = convert(NVARCHAR(19),getdate(),120)
set @strPath = REPLACE(@strPath, ':' , '.')
set @strPath = '备份路径'+'CopyBSS'+@strPath + '.bak'

backup database 数据库名 to disk = @strPath
with noinit , nounload , noskip , STATS = 10, NOFORMAT

0