升级应用程序数据库架构 [英] Upgrade Application Database Schema

查看:77
本文介绍了升级应用程序数据库架构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有来自应用程序供应商的70多个脚本来升级数据库,我正在尝试使用SQLCMD自动执行这些脚本。我试图通过将数据库置于单用户模式来保护数据库免受其他会话的影响。但是,当脚本从一个脚本移动到另一个脚本时,数据库
备份过程或其他杂项进程会阻止我。有没有更好的方法来处理这个?我已经禁用了尽可能多的已知流程。

I have 70+ scripts from an Application Vendor to upgrade a database and I am trying to automate executing these scripts using SQLCMD. I have tried to shield the database from other sessions by taking the database into Single-user mode. However, database backup process or other miscellaneous process keeps blocking me as the scripts move from one to another. Is there a better way to handle this? I have disabled as many known process as possible.

谢谢!

推荐答案

你是否使用脚本来在单用户模式下设置数据库,如下所示?

Do you use the script to set database in single user mode, like this?

USE master;

GO

ALTER DATABASE YourDatabase

SET SINGLE_USER

立即回滚;

GO


这篇关于升级应用程序数据库架构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆