Update from Sync Service

This commit is contained in:
FNS Service
2026-04-21 11:49:59 +08:00
parent 93982f9056
commit ada5b8ad4c
219 changed files with 5633 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
use master
```sql
declare @spid int ;
declare @ddlstring nvarchar(max);
declare @dbname varchar(200);
set @dbname='数据库名';
declare tmpcur cursor
for select distinct spid as spid from sys.sysprocesses
where dbid=db_id(@dbname) ;
OPEN tmpcur;
fetch tmpcur into @spid ;
while (@@FETCH_STATUS=0)
```
 begin
```sql
   set @ddlstring=N'Kill '+CONVERT( nvarchar,@spid) ;
   execute sp_executesql @ddlstring ;
   fetch tmpcur into @spid ;
 end ;
```
close tmpcur ;
deallocate tmpcur ;