摘要:
USE master go DECLARE @Sql NVARCHAR(max) SET @Sql = '' select @Sql = @Sql + 'kill ' + cast(spid as varchar(50)) + ';' from sys.sysprocesses where dbid 阅读全文
摘要:
ALTER FUNCTION [dbo].[parseJSON]( @JSON NVARCHAR(MAX)) /** Summary: > The code for the JSON Parser/Shredder will run in SQL Server 2005, and even in S 阅读全文