T-SQL script to wait till status of snap agent is completed(等待快照代理状态完成的 T-SQL 脚本)
问题描述
我正在尝试构建一个 SQL 脚本,以便在删除复制之前等待快照代理完成创建快照(如果正在进行)
I'm trying to build a SQL script to wait till snapshot agent finish create snapshot (if it is in progress) before dropping the replication
当前状态:我们有一些 SQL 脚本来禁用复制(它们作为 VSTS 发布管道的一部分运行).有时,可能会生成快照.如果在执行快照时禁用复制,脚本将失败.
Current status: We have some SQL scripts to disable replication (they are run as part of VSTS release pipelines). Sometimes, there might be a snapshot being generated. If replication is being disabled while a snapshot is in progress, script fails.
我正在使用下面的脚本来检查快照代理的状态
I'm using below script to check the status of snapshot agent
选择状态从 dbo.MSReplication_monitordataWHERE 发布 = 'PublicationName' 和 agent_type = 1) = 3
SELECT status FROM dbo.MSReplication_monitordata WHERE publication = 'PublicationName' and agent_type = 1) = 3
最终目标:
我需要帮助以实现以下目标:
I want help to achieve the following:
脚本检查快照代理是否正在运行.如果它正在运行,它将等待它完成(生成快照),然后执行操作(删除复制).
script check if snapshot agent if running or not. If it is running, it will wait till it is completed (snapshot generated), then do the action (drop replication).
我已经有了删除复制的脚本,我需要帮助的是处理这种情况的逻辑.
I already have the scripts for dropping replication, what I need help about is the logic to handle this scenario.
我的问题不是来自 如何检查复制快照代理状态?
我需要有关逻辑的帮助以创建脚本以等待快照代理空闲(如果它正在运行).我不知道如何在 t-sql 中做到这一点.
i need help with the logic to create a script to wait till snapshot agent is idle (if it is running). I don't know how to do it in t-sql.
我相信 (waitfor) 或 (while) 会有所帮助,但我不知道如何使用它们.
I believe (waitfor) or (while) will help, but I don't know how to use them.
https://docs.microsoft.com/en-us/sql/t-sql/language-elements/waitfor-transact-sql?view=sql-server-2017https://docs.microsoft.com/en-us/sql/t-sql/language-elements/while-transact-sql?view=sql-server-2017
推荐答案
我能够使用 while 循环使用以下内容:
I was able to use while loop using below:
use [distribution];
declare @status int = 2
select @status = status
FROM dbo.MSReplication_monitordata
WHERE publication = 'PublicationName' and agent_type = 1
while @status = 3
begin
WAITFOR DELAY '00:00:03'
select @status = status
FROM dbo.MSReplication_monitordata
WHERE publication = 'Publication.Name' and agent_type = 1
end
这篇关于等待快照代理状态完成的 T-SQL 脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:等待快照代理状态完成的 T-SQL 脚本
基础教程推荐
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01