Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 3.99 KB

File metadata and controls

56 lines (39 loc) · 3.99 KB
title Assemblies (Database Engine) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql
ms.reviewer
ms.technology clr
ms.topic reference
helpviewer_keywords
assemblies [CLR integration]
assemblies [CLR integration], about assemblies
managed code [SQL Server], assemblies
ms.assetid 4b146437-3061-47f6-9e8c-26eeea10b54e
author rothja
ms.author jroth

Assemblies (Database Engine)

[!INCLUDEappliesto-ss-xxxx-xxxx-xxx-md] The topics in this section provide information to help you understand, design, and implement assemblies.

Assemblies are DLL files used in an instance of [!INCLUDEssNoVersion] to deploy functions, stored procedures, triggers, user-defined aggregates, and user-defined types that are written in one of the managed code languages hosted by the [!INCLUDEmsCoName][!INCLUDEdnprdnshort] common language runtime (CLR), instead of in [!INCLUDEtsql].

An assembly in [!INCLUDEssNoVersion] is an object that references a managed application module (.dll file) that was created in the [!INCLUDEdnprdnshort] common language runtime. An assembly contains class metadata and managed code. Uploading an assembly to an instance of SQL Server is the first step toward creating any of the following database objects:

Assemblies perform the following functions in [!INCLUDEssNoVersion]:

  • Contain the managed code that runs the functionality of one or more of the CLR database objects previously listed.

  • Contain metadata that includes the version number and culture of the assembly, an optional public key that uniquely identifies the list of classes of the assembly, the methods that are defined in the assembly, and the processor architecture of the assembly.

  • Manage the degree to which managed code can access outside resources by regulating code access permissions.

  • Contain metadata about dependencies on other assemblies that are referenced by the assembly.

In This Section

Topic Description
Designing Assemblies Explains what you have to consider before creating an assembly. This includes packaging assemblies, code access permissions, and other restrictions.
Implementing Assemblies Explains how to create and drop assemblies, how and when to modify assemblies, and how to retrieve metadata about assemblies.
Getting Information About Assemblies Lists the catalog views and functions that can be queried for metadata about assemblies.

See Also

Common Language Runtime (CLR) Integration Programming Concepts