SqlAssembly.Create Method (String)

Creates an assembly on the instance of Microsoft SQL Server as defined by the SqlAssembly object.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
Public Sub Create ( _
    primaryAssemblyServerPath As String _
)
'Usage
Dim instance As SqlAssembly
Dim primaryAssemblyServerPath As String

instance.Create(primaryAssemblyServerPath)
public void Create(
    string primaryAssemblyServerPath
)
public:
void Create(
    String^ primaryAssemblyServerPath
)
member Create : 
        primaryAssemblyServerPath:string -> unit 
public function Create(
    primaryAssemblyServerPath : String
)

Parameters

  • primaryAssemblyServerPath
    Type: System.String
    A String value that specifies the server path (which can be a network share) of a single module assembly that contains a manifest.

Remarks

SQL Server searches in the path for assemblies the referenced assembly depends on and that have not yet been installed. SQL Server accesses the indicated files directly and therefore needs to have sufficient access rights in order to complete this operation successfully.

Examples

Calling Methods