다음을 통해 공유


CLR 사용자 정의 집계 함수 호출

적용 대상:SQL Server

Transact-SQL SELECT 문에서는 시스템 집계 함수에 적용되는 모든 규칙에 따라 CLR(공용 언어 런타임) 사용자 정의 집계를 호출할 수 있습니다.

다음 추가 규칙이 적용됩니다.

  • 현재 사용자에게 사용자 정의 집계에 대한 EXECUTE 권한이 있어야 합니다.

  • 사용자 정의 집계는 <schema_name>형식으로 두 부분으로 구성된 이름을 사용하여 호출해야 합니다.<udagg_name>.

  • 사용자 정의 집계의 인수 형식은 CREATE AGGREGATE 문에 정의된 대로 집계의 input_type 일치하거나 암시적으로 변환할 수 있어야 합니다.

  • 사용자 정의 집계의 반환 형식은 CREATE AGGREGATE 문의 return_type 일치해야 합니다.

예제

A. 사용자 정의 집계 연결 문자열 값

다음 코드는 테이블의 열에서 가져온 문자열 값 집합을 연결하는 사용자 정의 집계 함수의 예입니다.

  • C#
  • Visual Basic .NET
using System;
using System.Data;
using Microsoft.SqlServer.Server;
using System.Data.SqlTypes;
using System.IO;
using System.Text;

[Serializable]
[SqlUserDefinedAggregate(
    Format.UserDefined, //use clr serialization to serialize the intermediate result
    IsInvariantToNulls = true, //optimizer property
    IsInvariantToDuplicates = false, //optimizer property
    IsInvariantToOrder = false, //optimizer property
    MaxByteSize = 8000) //maximum size in bytes of persisted value
]
public class Concatenate : IBinarySerialize
{
    /// <summary>
    /// The variable that holds the intermediate result of the concatenation
    /// </summary>
    public StringBuilder intermediateResult;

    /// <summary>
    /// Initialize the internal data structures
    /// </summary>
    public void Init()
    {
        this.intermediateResult = new StringBuilder();
    }

    /// <summary>
    /// Accumulate the next value, not if the value is null
    /// </summary>
    /// <param name="value"></param>
    public void Accumulate(SqlString value)
    {
        if (value.IsNull)
        {
            return;
        }

        this.intermediateResult.Append(value.Value).Append(',');
    }

    /// <summary>
    /// Merge the partially computed aggregate with this aggregate.
    /// </summary>
    /// <param name="other"></param>
    public void Merge(Concatenate other)
    {
        this.intermediateResult.Append(other.intermediateResult);
    }

    /// <summary>
    /// Called at the end of aggregation, to return the results of the aggregation.
    /// </summary>
    /// <returns></returns>
    public SqlString Terminate()
    {
        string output = string.Empty;
        //delete the trailing comma, if any
        if (this.intermediateResult != null
            && this.intermediateResult.Length > 0)
        {
            output = this.intermediateResult.ToString(0, this.intermediateResult.Length - 1);
        }

        return new SqlString(output);
    }

    public void Read(BinaryReader r)
    {
        intermediateResult = new StringBuilder(r.ReadString());
    }

    public void Write(BinaryWriter w)
    {
        w.Write(this.intermediateResult.ToString());
    }
}

코드를 MyAgg.dll컴파일하면 다음과 같이 SQL Server에 집계를 등록할 수 있습니다.

CREATE ASSEMBLY MyAgg
    FROM 'C:\MyAgg.dll';
GO

CREATE AGGREGATE MyAgg(@input NVARCHAR (200))
    RETURNS NVARCHAR (MAX)
    EXTERNAL NAME MyAgg.Concatenate;

참고 항목

/clr:pure 컴파일러 옵션으로 컴파일된 스칼라 반환 함수와 같은 Visual C++ 데이터베이스 개체는 SQL Server에서 실행할 수 없습니다.

대부분의 집계와 마찬가지로 논리의 대부분은 Accumulate 메서드에 있습니다. 여기서는 Accumulate 메서드에 매개 변수로 전달되는 문자열이 Init 메서드에서 초기화된 StringBuilder 개체에 추가됩니다. Accumulate 메서드가 아직 호출되지 않았다고 가정하면 전달된 문자열을 추가하기 전에 StringBuilder 쉼표도 추가됩니다. 계산 작업이 끝나면 Terminate 메서드가 호출되어 StringBuilder 문자열로 반환합니다.

예를 들어 다음 스키마가 있는 테이블을 고려합니다.

CREATE TABLE BookAuthors
(
    BookID INT NOT NULL,
    AuthorName NVARCHAR (200) NOT NULL
);

그런 다음, 다음 행을 삽입합니다.

INSERT BookAuthors
VALUES
    (1, 'Johnson'),
    (2, 'Taylor'),
    (3, 'Steven'),
    (2, 'Mayler'),
    (3, 'Roberts'),
    (3, 'Michaels');

다음 쿼리는 다음 결과를 생성합니다.

SELECT BookID, dbo.MyAgg(AuthorName)
FROM BookAuthors
GROUP BY BookID;
BookID 작성자 이름
1 Johnson
2 Taylor, Mayler
3 Roberts, Michaels, Steven

B. 두 개의 매개 변수를 사용하여 사용자 정의 집계

다음 샘플에서는 Accumulate 메서드에 두 개의 매개 변수가 있는 집계를 보여줍니다.

  • C#
  • Visual Basic .NET
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;

[Serializable]
[SqlUserDefinedAggregate(
    Format.Native,
    IsInvariantToDuplicates = false,
    IsInvariantToNulls = true,
    IsInvariantToOrder = true,
    IsNullIfEmpty = true,
    Name = "WeightedAvg")]
public struct WeightedAvg
{
    /// <summary>
    /// The variable that holds the intermediate sum of all values multiplied by their weight
    /// </summary>
    private long sum;

    /// <summary>
    /// The variable that holds the intermediate sum of all weights
    /// </summary>
    private int count;

    /// <summary>
    /// Initialize the internal data structures
    /// </summary>
    public void Init()
    {
        sum = 0;
        count = 0;
    }

    /// <summary>
    /// Accumulate the next value, not if the value is null
    /// </summary>
    /// <param name="Value">Next value to be aggregated</param>
    /// <param name="Weight">The weight of the value passed to Value parameter</param>
    public void Accumulate(SqlInt32 Value, SqlInt32 Weight)
    {
        if (!Value.IsNull && !Weight.IsNull)
        {
            sum += (long)Value * (long)Weight;
            count += (int)Weight;
        }
    }

    /// <summary>
    /// Merge the partially computed aggregate with this aggregate
    /// </summary>
    /// <param name="Group">The other partial results to be merged</param>
    public void Merge(WeightedAvg Group)
    {
        sum += Group.sum;
        count += Group.count;
    }

    /// <summary>
    /// Called at the end of aggregation, to return the results of the aggregation.
    /// </summary>
    /// <returns>The weighted average of all inputed values</returns>
    public SqlInt32 Terminate()
    {
        if (count > 0)
        {
            int value = (int)(sum / count);
            return new SqlInt32(value);
        }
        else
        {
            return SqlInt32.Null;
        }
    }
}

C# 또는 Visual Basic .NET 소스 코드를 컴파일한 후 다음 Transact-SQL을 실행합니다. 이 스크립트에서는 DLL을 WghtAvg.dll이라고 하고 C 드라이브의 루트 디렉터리에 있다고 가정합니다. 테스트라는 데이터베이스도 가정합니다.

USE test;
GO

-- EXECUTE sp_configure 'clr enabled', 1;
-- RECONFIGURE WITH OVERRIDE;
-- GO
IF EXISTS (SELECT name
           FROM systypes
           WHERE name = 'MyTableType')
    DROP TYPE MyTableType;
GO

IF EXISTS (SELECT name
           FROM sysobjects
           WHERE name = 'WeightedAvg')
    DROP AGGREGATE WeightedAvg;
GO

IF EXISTS (SELECT name
           FROM sys.assemblies
           WHERE name = 'MyClrCode')
    DROP ASSEMBLY MyClrCode;
GO

CREATE ASSEMBLY MyClrCode
    FROM 'C:\WghtAvg.dll';
GO

CREATE AGGREGATE WeightedAvg(@value INT, @weight INT)
    RETURNS INT
    EXTERNAL NAME MyClrCode.WeightedAvg;
GO

CREATE TYPE MyTableType AS TABLE (
    ItemValue INT,
    ItemWeight INT);
GO

DECLARE @myTable AS MyTableType;

INSERT INTO @myTable
VALUES (1, 4),
(6, 1);

SELECT dbo.WeightedAvg(ItemValue, ItemWeight)
FROM @myTable;
GO
  • CLR 사용자 정의 집계